/* =============================================================================
 * トップページ — ページ固有スタイル (home.css)
 * ============================================================================= */


/* ── セクション共通ラッパー ──────────────────────────────────────────────── */

.home-section {
  /* py-24 */
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .home-section {
    padding: 0;
  }
}


.home-section--muted {
  background-color: #f8fafc;
}

/* bg-slate-50 */

/* ── コンテナ（最大幅バリアント） ─────────────────────────────────────────── */

.home-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.home-container--narrow {
  max-width: 56rem;
}

/* max-w-4xl */
.home-container--wide {
  max-width: 64rem;
}

/* max-w-5xl */
.home-container--center {
  text-align: center;
}

@media (min-width: 1024px) {
  .home-container {
    padding: 0 2.5rem;
  }
}

/* ── セクション下部 CTA（「詳しく見る」など） ─────────────────────────────── */

.section-cta {
  margin-top: 2rem;
  text-align: center;
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  .section-cta {
    display: none;
  }

  .news-section {
    margin: 0 !important;
  }
}

/* =============================================================================
 * Unified Button Styles (Sync with Contact Submit Button)
 * ============================================================================= */
.section-cta__btn,
.gallery-instagram-btn,
.philosophy-cta,
.channel-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: transparent;
  color: #000000;
  border: 2px solid var(--color-brand);
  font-family: var(--font-serif);
  font-size: 21px;
  width: 320px;
  padding: 1rem 0;
  border-radius: 9999px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 700;
}

.gallery-instagram-btn svg {
  width: 20px;
  height: 20px;
  transition: color 0.3s;
  color: var(--color-brand);
  fill: none;
}


.section-cta__btn:hover,
.gallery-instagram-btn:hover,
.philosophy-cta:hover,
.channel-card__btn:hover {
  background-color: var(--color-brand);
  color: #fff;
  transform: translateY(-3px);

}

.gallery-instagram-btn:hover svg {
  fill: none;
  color: #fff;
}

.section-cta__btn:active,
.gallery-instagram-btn:active,
.philosophy-cta:active,
.channel-card__btn:active {
  transform: translateY(-1px);
}

@media (max-width: 767px) {

  .section-cta__btn,
  .gallery-instagram-btn,
  .philosophy-cta,
  .channel-card__btn {
    font-size: 16px;
    width: 260px;
    padding: 0.75rem 0;
  }
}

/* ── ギャラリーセクション ──────────────────────────────────────────────────── */

.gallery-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  font-family: var(--font-serif);
}

.gallery-cta-note {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}

/* Unified in chunk 1 */

@media (min-width: 1024px) {
  .gallery-subtitle {
    font-size: 33px;
  }
}


/* =============================================================================
 * 10. セクションタイトル XL バリアント
 *     Channel・Philosophy など大きいタイトルを使うセクション向け
 * ============================================================================= */

.section-title--xl .section-title__eyebrow {
  font-size: 1.2rem;
}

/* text-xl */

.section-title--xl .section-title__heading {
  font-size: 1.5rem;
}

.section-title--xl .section-title__divider {
  width: 85vw;
  height: 3px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title--xl .section-title__heading {
    margin-top: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-title--xl .section-title__heading {
    font-size: 48px;
    margin-top: 1.5rem;
    /* Tăng thêm chút cho màn hình lớn nếu cần */
  }

  .section-title--xl .section-title__divider {
    width: 16rem;
    margin-bottom: 4rem;
  }
}


/* =============================================================================
 * 11. 経営理念（Philosophy）
 * ============================================================================= */

.philosophy-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 68rem;
  margin: 0 auto;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 15%;
}

.philosophy-content {
  text-align: left;
}

.philosophy-headline {
  margin-bottom: 3rem;
}

.philosophy-headline h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.philosophy-body {
  color: #475569;
  font-size: 16px;
  font-family: var(--font-serif);
  margin-bottom: 2rem;
}

.philosophy-body p {
  margin: 0;
}

.philosophy-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.philosophy-ceo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.philosophy-ceo span {
  color: #475569;
  font-size: 18px;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}

/* Unified in chunk 1 */

@media (min-width: 1024px) {
  .philosophy-layout {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .philosophy-ceo {
    align-self: flex-end;
  }

  .philosophy-image {
    flex: 1;
    width: 50%;
    position: relative;
  }

  .philosophy-image img {
    display: block;
    margin: 0 auto;
    width: 60%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 15%;
  }

  .philosophy-content {
    flex: 1;
    width: 50%;
  }

  .philosophy-headline h3 {
    font-size: 36px;
  }


}


/* =============================================================================
 * 12. 販売チャネル（Channel）
 * ============================================================================= */

.channel-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.channel-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.channel-card__circle {
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  background-color: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: box-shadow 500ms, transform 500ms;
  position: relative;
}


.channel-card__circle:hover {
  box-shadow: 0 30px 70px rgba(201, 23, 30, 0.15);
  transform: translateY(-8px);
}

/* 装飾リング */
.channel-card__glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 6px solid #fbdec2;
  opacity: 0.5;
}

.channel-card__circle svg,
.channel-card__circle img {
  width: 3rem;
  height: 3rem;
  color: var(--color-brand);
  object-fit: contain;
}

/* 最初の2つのアイコン（BtoC・BtoB）のサイズを大きくして3つ目と揃える */
.channel-card:nth-child(1) .channel-card__circle img,
.channel-card:nth-child(2) .channel-card__circle img {
  transform: scale(1.4);
}

.channel-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.channel-card__desc {
  color: #64748b;
  font-size: 14px;
  font-family: var(--font-serif);
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

/* Unified in chunk 1 */

/* 右側の浮いている画像エリア */
.channel-images {
  display: none;
  width: 30%;
  position: relative;
  height: 450px;
  margin-left: -5rem;
  flex-shrink: 0;
}

.channel-images__img {
  position: absolute;
  width: 320px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 700ms;
}

.channel-images__img img {
  width: 100%;
  height: auto;
  display: block;
}

.channel-images__img--bottom {
  bottom: 2.5rem;
  right: 0;
  transform: rotate(12deg);
}

.channel-images__img--bottom:hover {
  transform: rotate(-3deg) scale(1.05);
}

.channel-images__img--top {
  top: -2.5rem;
  right: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  transform: rotate(-15deg);
}

.channel-images__img--top:hover {
  transform: rotate(6deg) scale(1.05);
}

@media (min-width: 768px) {
  .channel-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .channel-layout {
    flex-direction: row;
  }

  .channel-cards {
    width: 75%;
  }

  .channel-images {
    display: block;
  }

  .channel-card__circle svg,
  .channel-card__circle img {
    width: 3.6rem;
    height: 3.6rem;
  }

  .channel-card__title {
    font-size: 1rem;
  }
}


/* =============================================================================
 * 13. お取引の流れ（Flow）
 * ============================================================================= */

.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  max-width: 75rem;
  margin: 1.5rem auto 0;
}

.flow-step {
  flex: 1;
  position: relative;
  height: 160px;
  transition: transform 300ms ease;
}

.flow-step__shape {
  position: absolute;
  inset: 0;
}

.flow-step__bg {
  position: absolute;
  inset: 0;
  transition: filter 300ms;
}

.flow-step:hover {
  transform: scale(1.05);
  z-index: 45 !important;
}

.flow-step:hover .flow-step__bg {
  filter: brightness(1.15);
}

/* デスクトップ用クリップパス（1024px〜） */
@media (min-width: 1024px) {
  .flow-step:first-child .flow-step__shape {
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  }

  .flow-step:not(:first-child) .flow-step__shape {
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
  }
}

.flow-step__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 1.5rem;
  gap: 0.75rem;
}

.flow-step__content--indent {
  padding-right: 1rem;
}

.flow-step__badge {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step__num {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: #fff;
}

.flow-step__label {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: #fff;
  text-align: center;
  margin: 0;
}

/* ホバーで表示されるツールチップ */
.flow-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: .4rem;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 300ms;
  pointer-events: none;
}

.flow-step:hover .flow-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flow-tooltip__box {
  background-color: #fff;
  border: 2px solid var(--color-brand);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(201, 23, 30, 0.15);
  padding: 1.5rem;
  position: relative;
  width: 320px;
  text-align: left;
}

.flow-tooltip__arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-top: 1.5px solid var(--color-brand);
  border-left: 1.5px solid var(--color-brand);
}

.flow-tooltip__text {
  color: #475569;
  font-size: 14px;
  font-family: var(--font-serif);
  position: relative;
  z-index: 10;
}

/* Step 04: ツールチップを右寄せ（モバイルのみ） */
.flow-step--last .flow-tooltip {
  right: 0;
  left: auto;
  transform: none;
}

.flow-step--last .flow-tooltip__arrow {
  right: 2.5rem;
  left: auto;
  transform: rotate(45deg);
}

/* ── フロー モバイルカードレイアウト（〜1023px） ─────────────────────────── */
@media (max-width: 1023px) {
  .flow-steps {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  /* カード形状をリセット → シンプルなrounded card */
  .flow-step {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    /* Shadow like image */
    height: auto;
    background-color: var(--step-bg);
    /* Use variable for mobile card bg */
  }

  /* クリップパスをリセット */
  .flow-step__shape {
    position: relative;
    inset: unset;
    clip-path: none !important;
    border-radius: 14px;
    overflow: hidden;
    padding: 1.5rem;
  }

  .flow-step__bg {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background-color: transparent !important;
    /* Hide clipped bg on mobile */
  }

  /* コンテンツ：ヘッダー行（badge + タイトル） */
  .flow-step__content {
    position: relative;
    inset: unset;
    flex-direction: row;
    /* Keep on same row */
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    color: #fff;
    background: transparent !important;
  }

  .flow-step__content--indent {
    padding-left: 0;
    padding-right: 0;
  }

  /* バッジ + ラベルを横並びに */
  .flow-step__badge {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    /* Circle like image */
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .flow-step__num {
    font-size: 1.2rem;
    color: #fff;
  }

  .flow-step__label {
    font-size: 1.2rem;
    font-weight: 700;

    flex: 1;
    margin: 0;
    color: #fff;
    text-align: left;
  }

  /* ツールチップ本文をカード内に常時表示 */
  .flow-tooltip {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    width: 100%;
    margin-top: 1rem;
    flex-basis: 100%;
  }

  .flow-step:hover .flow-tooltip {
    opacity: 1;
    visibility: visible;
  }

  .flow-tooltip__box {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    border-radius: 0;
  }

  .flow-tooltip__arrow {
    display: none;
  }

  .flow-tooltip__text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.7rem;

    padding-left: 33px;
    padding-right: 33px;
  }

  /* ラストステップのツールチップ位置をリセット */
  .flow-step--last .flow-tooltip {
    right: auto;
    left: auto;
    transform: none;
  }

  .flow-step--last .flow-tooltip__arrow {
    display: none;
  }
}

/* ── フロー デスクトップレイアウト（1024px〜） ─────────────────────────────── */
@media (min-width: 1024px) {
  .flow-step {
    height: 100%;
    background-color: transparent !important;
  }

  .flow-step:not(:first-child) {
    margin-left: -1.25rem;
  }

  .flow-steps {
    flex-direction: row;
    height: 230px;
    gap: 0;
  }

  .flow-step__badge {
    width: 5rem;
    height: 5rem;
  }

  .flow-step__num {
    font-size: 1.8rem;
  }

  .flow-step__label {
    font-size: 1.2rem;
  }

  .flow-step--last .flow-tooltip {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .flow-step--last .flow-tooltip__arrow {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
  }

  .intro-section .intro-content {
    padding: 0 11rem 0;
  }
}

.mt-flow-cta {
  margin-top: 70px;
}

@media (min-width: 1024px) {
  .mt-flow-cta {
    margin-top: 200px;
  }
}

/* =============================================================================
 * 14. ブランドイントロ（Intro）
 * ============================================================================= */

.intro-section {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
  padding: 3rem 0 7rem;
  margin-bottom: -10px;
}

@media (max-width: 768px) {
  .intro-section>.intro-content {
    padding: 0;
  }

  .intro-title,
  .intro-subtitle {
    text-align: center;
  }
}



/* 右下に敷く大きな画像 */
.intro-bg {
  position: absolute;
  bottom: 0%;
  right: 0;
  width: 75%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .intro-section {
    padding: 3rem 0;
  }

  .intro-bg {
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    opacity: 0.3;
  }

  .intro-bg__img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center bottom;
  }
}

.intro-bg__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.intro-bg__fades {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-bg__fade-left {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.4), transparent);
}

.intro-bg__fade-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 25%;
  background: linear-gradient(to bottom, #fff, transparent);
}

/* テキストエリア */
.intro-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0px 25px;
  padding: 0 2.5rem;
}

.intro-text {
  max-width: 36rem;
}

.intro-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.intro-subtitle {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.intro-body {
  color: #000000;
  font-size: 18px;
  font-family: var(--font-serif);
  max-width: 36rem;
  font-weight: 400;
}

.intro-body p+p {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .intro-bg {
    width: 59%;
  }

  .intro-title {
    font-size: 72px;
  }

  .intro-subtitle {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .intro-title {
    font-size: 27px;
  }

  .intro-subtitle {
    font-size: 21px;
  }
}


/* =============================================================================
 * 15. 鮮度を封じ込める会社（Freshness）
 * ============================================================================= */

.freshness-section {
  padding: 1rem 0;
  background-color: #98CCD7;
  position: relative;
  overflow: hidden;
}

/* Freshness Image Decoration */
.freshness-images {
  display: none;
  position: absolute;
  top: 4rem;
  right: 0;
  width: 25vw;
  max-width: 350px;
  min-width: 280px;
  z-index: 1;
  pointer-events: none;
}

.freshness-images__img {
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 700ms;
  transform: rotate(-14deg);
  pointer-events: auto;
}

.freshness-images__img img {
  width: 100%;
  height: auto;
  display: block;
}

.freshness-images__img:hover {
  transform: rotate(-12deg) scale(1.05);
}

.freshness-lead {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  color: #1e293b;
  font-size: 1.2rem;
  font-family: var(--font-serif);
}

.freshness-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

.freshness-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.freshness-card__img {
  width: 9rem;
  height: 9rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding: 2.2rem;
  box-sizing: border-box;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.freshness-card:nth-child(2) .freshness-card__img,
.freshness-card:nth-child(3) .freshness-card__img {
  padding: 1.5rem;
}

.freshness-card__label {
  width: 100%;
  background-color: #cce5ea;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #0f172a;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.freshness-card__body {
  background-color: #cce5ea;
  padding: 1.25rem;
  border-radius: 1rem;
  text-align: left;
  color: #1e293b;
  font-family: var(--font-serif);
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.freshness-cta {
  margin-top: 3rem;
  text-align: center;
}

.freshness-cta__btn {
  display: inline-block;
  padding: 1rem 3.5rem;
  border-radius: 9999px;
  border: 2.2px solid var(--color-brand);
  color: #0f172a;
  font-weight: 700;
  font-size: 21px;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background-color 300ms, color 300ms;
  text-decoration: none;
  background-color: #fff;
}

.freshness-cta__btn:hover {
  background-color: var(--color-brand);
  color: #fff;
}

@media (min-width: 768px) {
  .freshness-cards {
    grid-template-columns: repeat(3, minmax(0, 18rem));
    justify-content: center;
    gap: 1.5rem;
  }

}

@media (min-width: 1024px) {
  .freshness-images {
    display: block;
  }
}

/* ── モバイル（〜767px）専用 ──────────────────────────────────────── */
@media (max-width: 767px) {
  .freshness-section {
    padding: 2rem 0 3rem;
  }

  .freshness-lead {
    font-size: 1rem;

    margin-top: 0.5rem;
    padding: 0 1.25rem;
    text-align: center;
  }

  .freshness-cards {
    padding: 0 1.25rem;
    gap: 2.5rem;
    margin-top: 2rem !important;
  }

  .freshness-card {
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .freshness-card__img {
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 1.5rem;
    box-sizing: border-box;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
  }

  .freshness-card:nth-child(2) .freshness-card__img,
  .freshness-card:nth-child(3) .freshness-card__img {
    padding: 0.9rem;
  }

  .freshness-card__label {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
    flex: 1;
    min-width: 0;
  }

  .freshness-card__body {
    font-size: 1rem;
    padding: 1.25rem;
    width: 100%;
  }

  .freshness-cta {
    margin-top: 2.5rem;
    padding: 0 1.25rem;
  }

  .freshness-cta__btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
    width: 100%;
    display: block;
    text-align: center;
  }
}


/* =============================================================================
 * 16. 主力商品（Products）
 * ============================================================================= */

.products-section {
  padding: 3rem 0 0;
  background-color: #fff;
  position: relative;
}

.products-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-serif);
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.product-card {
  border-radius: 40px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 300ms;
}

@media (hover: hover) {
  .product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  .product-card {
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .product-card__img {
    border-radius: 50px;
  }

  .recommend-card {
    border: none !important;
    box-shadow: none;
  }
}

.product-card__img-wrap {
  width: 80%;
  margin-bottom: 1.5rem;
}

.product-card__img {
  width: 80%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-card__img-wrap {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .product-card__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
}


.product-card__title {
  font-family: var(--font-serif);
}

.product-card__body {
  color: #475569;
  font-size: 18px;
  font-family: var(--font-serif);
  text-align: left;
}

.product-card__body p {
  margin: 0;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    padding: 2.5rem;
  }

  .product-card__title {
    font-size: 1.8rem;
  }
}


/* =============================================================================
 * 17. 3つの強み（Strengths）
 * ============================================================================= */

.strengths-section {
  padding: 2.5rem 0;
  position: relative;
}

.strengths-container {
  max-width: 80rem;
  /* 1440px */
}

.strengths-cards {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 90rem;
  margin: 0 auto;
}

.strength-card {
  border-radius: 30px;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.strength-card__img {
  margin-bottom: 1.5rem;
  text-align: center;
}

.strength-card__img img {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
}

.strength-card__title {
  font-weight: 700;
  font-size: 21px;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  text-align: center;
}

.strength-card__desc {
  color: #475569;
  font-size: 16px;
  font-family: var(--font-serif);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .strengths-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =============================================================================
 * 18. 商品ラインナップ（Recommend Products）
 * ============================================================================= */

.recommend-section {
  padding: 2.5rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.recommend-container {
  max-width: 90rem;
}

.recommend-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 90rem;
  margin: 0 auto;
}

.recommend-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 0;
  transition: transform 300ms, box-shadow 300ms;
}

@media (hover: hover) {
  .recommend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
}

.recommend-card__img {
  width: 80%;
  margin: 1.25rem auto 0;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.recommend-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend-card__body {
  padding: 1.25rem;
}

.recommend-card__label {
  display: inline-block;
  background-color: var(--color-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.375rem 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.recommend-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.recommend-card__desc {
  color: #1e293b;
  font-size: 14px;
  font-family: var(--font-serif);
  padding: 0 1rem;
  text-align: left;
}

@media (max-width: 768px) {
  .recommend-card__desc {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .recommend-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =============================================================================
 * 19. 数字で見る実績（Trust）
 * ============================================================================= */

.trust-section {
  padding: 2.5rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.trust-card {
  background: linear-gradient(to bottom, #EFF6FF, #FFFFFF);
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 1.88px solid #DBEAFE;
  padding: 50px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 300ms, box-shadow 300ms;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.trust-card__label {
  font-size: 39px;
  font-weight: 700;
  color: #1e293b;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
}

.trust-card__number {
  color: #1e3a8a;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.trust-card__value {
  font-size: 64px;
  font-weight: 700;
}

.trust-card__unit {
  font-size: 50px;
  font-weight: 700;
}

.trust-card__desc {
  color: #64748b;
  font-size: 14px;
  font-family: var(--font-serif);
  margin: 0;
  text-align: left;
}

.trust-logos {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.trust-logos__title {
  font-size: 33px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3rem;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
  .trust-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-logos {
  overflow: hidden;
  width: 100%;
}

.trust-logos__marquee {
  display: flex;
  width: max-content;
}

.trust-logos__track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  animation: scrollMarquee 20s linear infinite;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.trust-logos__marquee:hover .trust-logos__track {
  animation-play-state: paused;
}

.trust-logo {
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 300ms, box-shadow 300ms;
}

.trust-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trust-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trust-logo svg {
  width: 66px;
  height: 66px;
  color: #ced4da;
}


/* =============================================================================
 * 20. 事業紹介（Business）
 * ============================================================================= */

.business-section {
  padding: 2.5rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.business-headline {
  max-width: 900px;
  margin: auto;
}

.business-headline h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  font-family: var(--font-serif);
  letter-spacing: 0.025em;
}

.business-headline__sub {
  color: #64748b;
  font-size: 14px;
  font-family: var(--font-serif);
}

.business-headline__sub p {
  margin: 0;
}

.business-diagram {
  max-width: 1050px;
  margin: 4rem auto;
  position: relative;
  width: 100%;
}

/* 背景矢印（md以上で表示） */
.business-arrows {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.business-arrows__line {
  position: absolute;
  object-fit: contain;
}

.business-arrows__line--left {
  top: 34%;
  left: 28%;
  width: 60px;
  transform: translate(-50%, -50%);
}

.business-arrows__line--right {
  top: 34%;
  right: 28%;
  width: 60px;
  transform: translate(50%, -50%);
}

.business-arrows__line--bottom {
  top: 75%;
  left: 50%;
  width: 220px;
  transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
  .business-arrows__line--left {
    width: 80px;
  }

  .business-arrows__line--right {
    width: 80px;
  }

  .business-arrows__line--bottom {
    top: 55%;
    width: 280px;
  }
}

/* 上部サークル */
.business-circle-top {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  z-index: 10;
}

.business-circle-top__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.business-circle-top__img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #C9171E;
  position: relative;
}

.business-circle-top__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 70%;
  transform: scale(1.3);
}

/* デスクトップ：右横テキスト */
.business-circle-top__text {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 1rem;
  width: 420px;
  text-align: left;
}

/* モバイル：テキストを下に配置 */
.business-circle-top__mobile {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 6rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

/* サークル内テキスト共通 */
.business-circle-top__text h4,
.business-circle-top__mobile h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  font-size: 27px;
}

.business-circle-top__sub {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #1e293b;
  font-size: 18px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.025em;
}

.business-circle-top__body {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #475569;
  text-align: left;
}

.business-circle__name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  font-size: 27px;
}

.business-circle__sub {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #1e293b;
  font-size: 18px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.025em;
}

.business-circle__body {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #475569;
  text-align: left;
}

/* 下部2サークル行（コンテナ） */
.business-circle-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* 下部各サークルアイテム */
.business-circle-bottom__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  margin-bottom: 5rem;
  max-width: 420px;
}

.business-circle-bottom__item:last-child {
  margin-bottom: 0;
}

.business-circle-bottom__item h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  margin-bottom: 1.5rem;
}

.business-circle-bottom__sub {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  text-align: left;
  margin-bottom: 1.5rem;
}

.business-circle-bottom__body {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #475569;
  text-align: left;
}

.business-circle-bottom__img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #C9171E;
}

.business-circle-bottom__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-circle-bottom__content {
  width: 450px;
  margin-top: 2rem;
  position: relative;
  left: 100px;
}

.business-circle-bottom__spacer {
  display: none;
}

@media (min-width: 768px) {
  .business-arrows {
    display: block;
  }

  .business-circle-bottom {
    flex-direction: row;
  }

  .business-circle-bottom__item {
    margin-bottom: 0;
  }

  .business-circle-bottom__spacer {
    display: block;
    width: 4rem;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .business-circle-top {
    margin-bottom: 5rem;
  }

  .business-circle-top__text {
    display: block;
  }

  .business-circle-top__mobile {
    display: none;
  }

  .business-circle-top__text .business-circle__name {
    font-size: 30px;
  }

  .business-circle-bottom__spacer {
    width: 8rem;
  }

  .business-headline h3 {
    font-size: 33px;
  }

  .business-headline__sub {
    font-size: 14px;
  }
}

/* =============================================================================
 * 20b. 事業紹介 モバイルカードリスト
 * ============================================================================= */

/* デフォルト（モバイル）：モバイルリスト表示、デスクトップ非表示 */
.business-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.business-circle-top,
.business-circle-top__mobile,
.business-circle-bottom {
  display: none;
}

/* デスクトップ（1024px以上）：逆転 */
@media (min-width: 1024px) {
  .business-mobile-list {
    display: none;
  }

  .business-circle-top,
  .business-circle-bottom {
    display: flex;
  }
}

/* モバイルカードスタイル */
.business-mobile-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.business-mobile-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.business-mobile-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-mobile-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.business-mobile-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.business-mobile-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-mobile-card__icon svg {
  width: 32px;
  height: 32px;
}

.business-mobile-card__title-row h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  /* Increased size like in image */
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.business-mobile-card__sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #334155;
  margin: 0;
  text-align: left;
}


/* =============================================================================
 * 21. ヒーロースライダー（Hero Slider）
 * ============================================================================= */

.hero-section {
  position: relative;
  min-height: 55vh;
  overflow: hidden;
  background-color: #0f172a;
  margin-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 55vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 4000ms ease-in-out;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

/* 背景画像レイヤー */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide__bg-3 {
  background-size: 120%;
  background-position: 50% 45%;
}

@media (max-width: 767px) {
  .hero-slide__bg-3 {
    background-size: cover;
    background-position: center;
  }
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

/* コンテンツ（テキスト＋ボタン） */
.hero-slide__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1656px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.hero-slide__text {
  max-width: 48rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

.hero-slide__heading {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: var(--font-serif);
}

.hero-slide__heading span {
  display: block;
  font-size: clamp(27px, 3.5vw, 50px);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-slide__heading--serif {
  font-family: var(--font-serif);
  font-size: clamp(21px, 3vw, 45px);
  letter-spacing: 0 !important;
  font-style: normal;
}

/* CTAボタン */
.hero-fixed-cta-container {
  display: none;
}

.hero-slide__cta-wrap {
  display: none;
}

.hero-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 2.2rem;
  background-color: var(--color-brand);
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 10px 40px rgba(201, 23, 30, 0.5);
  transition: background-color 300ms, transform 300ms;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
}

.hero-slide__cta:hover {
  background-color: #e31a22;
  transform: scale(1.05);
}

.hero-slide__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 1rem;
  font-weight: 300;
}

/* インジケーター */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.hero-indicator {
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 300ms;
}

.hero-indicator.is-active {
  width: 2.5rem;
  background-color: #fff;
}

@media (min-width: 1024px) {

  .hero-section,
  .hero-slider {
    min-height: 100vh;
  }

  .hero-slide__content {
    flex-direction: row;
    align-items: flex-end;
    padding: 0 2.5rem;
  }

  .hero-slide {
    padding-bottom: 3.5rem;
  }

  .hero-slide__text {
    margin-bottom: 0;
  }

  .hero-slide__cta-wrap {
    display: flex;
    margin-top: 3rem;
  }

  .hero-fixed-cta-container {
    display: flex;
    position: absolute;
    inset: 0;
    z-index: 15;
    width: 100%;
    margin: 0 auto;
    max-width: 1656px;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 2.5rem;
    padding-bottom: 3.5rem;
    pointer-events: none;
  }

  .hero-fixed-cta-container .hero-slide__cta-wrap {
    margin-top: 0;
    pointer-events: auto;
  }
}


/* =============================================================================
 * 22. ホームページ専用ヘッダー（2ステート切り替え）
 * ============================================================================= */

/* ── シンスクロールバー（サークルナビ用） ────────────────────────────────── */

.thin-scrollbar::-webkit-scrollbar {
  height: 4px;
}

.thin-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(200, 200, 200, 0.5);
  border-radius: 4px;
}

/* ── ホームヘッダー本体 ───────────────────────────────────────────────────── */

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background-color 500ms, box-shadow 500ms, height 500ms, padding 500ms;
  padding: clamp(0.5rem, 1vh, 1rem) 0;
}

.home-header.is-scrolled {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding-top: var(--pico-block-spacing-vertical);
  padding-bottom: var(--pico-block-spacing-vertical);
  height: calc(90px + calc(var(--pico-block-spacing-vertical) * 2));
}

@media (max-width: 767px) {
  .home-header.is-scrolled {
    padding-top: 0;
    padding-bottom: 0;
    height: 85px;
  }
}

/* ── 共通ナビ設定 ─────────────────────────────────────────────────────────── */

.home-header__nav {
  width: 100%;
  transition: opacity 500ms, transform 500ms;
}

/* ── トップ時ナビ（サークルナビ） ────────────────────────────────────────── */

.home-header__nav--top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.home-header.is-scrolled .home-header__nav--top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

/* ── スクロール後スティッキーナビ（リニアナビ） ──────────────────────────── */

.home-header__nav--scrolled {
  position: absolute;
  top: var(--pico-block-spacing-vertical);
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .home-header__nav--scrolled {
    top: 0;
  }
}

.home-header.is-scrolled .home-header__nav--scrolled {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



/* ── グラデーションCTAボタン（スクロール後） ─────────────────────────────── */

.header-btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: linear-gradient(to right, #fc9d2f, #c6894c, #255e71);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.1em;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 300ms;
}

.header-btn-gradient:hover {
  transform: scale(1.05);
}

/* ── レスポンシブ ────────────────────────────────────────────────────────── */

@media (min-width: 768px) {
  .home-header__nav--top {
    padding: 0 1.5rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .home-header__nav--top {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 1.5rem;
    gap: 1rem;
  }
}