:root {

  /* ボーダー・角丸 */
  --radius-small:  4px;
  --radius-medium: 6px;
}


:root {
  /* =========================================================
     古いヘッダー・フッター以外の残り変数
  ========================================================= */


  /* ヒーローセクション */
  --hero-height:            100vh;
  --hero-overlay-color:     rgba(0,0,0,0.05);
  --hero-bg-color:          #ffffff;
  --hero-content-max-width: 900px;
  --hero-font-size:         calc(var(--font-base) * 2.6);
  --hero-font-size-sm:      calc(var(--font-base) * 2.1);
  --hero-font-weight:       600;
  --hero-letter-spacing:    0.5px;
  --hero-line-height:       1.4;
  --hero-bg-transition:     background-image 2s ease-in-out, background-color 1s ease-in-out;
    /* 見出し・本文サイズ */


  --sub-font-lg:  calc(var(--font-base) * 1.2);
  --sub-font-md:  calc(var(--font-base) * 1.05);
  --sub-font-sm:  calc(var(--font-base) * 0.95);
  --sub-line-height: 1.8;
}


/* ==============================
   HERO SECTION 01（フルスクリーン版 完全版）
============================== */
.hero-section-01 {
    position: relative;
    width: 100%;
    height: var(--hero-height); /* フルスクリーン */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--hero-bg-color);
    transition: var(--hero-bg-transition);
    z-index: 0;
}

/* 背景画像 */
.hero-section-01__image,
.hero-section-01__image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section-01__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ */
.hero-section-01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0,0,0,0.4);
}

/* テキストコンテンツ */
.hero-section-01__text {
    position: relative;
     color: white; /* 追加した変数を使用 */
    z-index: 2;
    padding: 2rem 3rem; /* 内側余白 */
    max-width: var(--hero-content-max-width);
    background-color: rgba(0,0,0,0.5);
    border-radius: var(--radius-medium);
    margin-top: 60px; /* ヘッダー文との余白 */
    margin-left: auto;
    margin-right: auto; /* 中央寄せ */
}

/* タイトル */
.hero-section-01__title {
    font-size: var(--hero-font-size);
    font-weight: var(--hero-font-weight);
    letter-spacing: var(--hero-letter-spacing);
    line-height: var(--hero-line-height);
    margin-bottom: 1rem;
    font-family: var(--font-main);
     color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* サブコピー・本文 */
.hero-section-01__subcopy,
.hero-section-01__body {
    font-size: var(--sub-font-lg);
    line-height: var(--sub-line-height);
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
    color: var(--color-text-inverse);
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* CTAボタン */
.hero-section-01 .cta-section {
    margin-top: 1rem;
}

/* ==============================
   レスポンシブ調整
============================== */
@media (max-width: 1024px) {
    .hero-section-01__text {
        padding: 1.8rem 2.5rem;
        margin-top: 50px;
    }

    .hero-section-01__title {
        font-size: calc(var(--hero-font-size) * 0.9);
    }

    .hero-section-01__subcopy,
    .hero-section-01__body {
        font-size: calc(var(--sub-font-lg) * 0.9);
    }
}

@media (max-width: 768px) {
    .hero-section-01__text {
        padding: 1.5rem 2rem;
        margin-top: 40px;
    }

    .hero-section-01__title {
        font-size: var(--hero-font-size-sm);
    }

    .hero-section-01__subcopy,
    .hero-section-01__body {
        font-size: var(--sub-font-md);
    }
}

@media (max-width: 480px) {
    .hero-section-01__text {
        max-width: 80%;       /* 画面幅の80%までに制限 */
        margin-left: auto;    /* 中央寄せ */
        margin-right: auto;
        padding: 1rem 5%;     /* 内側余白を % で確保 */
        margin-top: 30px;
    }

    .hero-section-01__title {
        font-size: calc(var(--hero-font-size-sm) * 0.9);
    }

    .hero-section-01__subcopy,
    .hero-section-01__body {
        font-size: calc(var(--sub-font-md) * 0.9);
    }
}



/* ==============================
   HERO SECTION 02（01基準 見た目統一）
============================== */
.hero-section-02 {
  position: relative;
    width: 100%;
    height: var(--hero-height); /* フルスクリーン */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--hero-bg-color);
    transition: var(--hero-bg-transition);
    z-index: 0;
}

/* ギャラリー背景（アニメーション機能はそのまま） */
.hero-section-02__gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.hero-section-02__gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* 独自アニメーション保持 */
}

.hero-section-02__gallery-item.active {
    opacity: 1;
}

.hero-section-02__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ギャラリー表示切替：PC/モバイル */
.hero-section-02__gallery--desktop { display: block; }
.hero-section-02__gallery--mobile { display: none; }

@media (max-width: 768px) {
    .hero-section-02__gallery--desktop { display: none; }
    .hero-section-02__gallery--mobile { display: block; }
}

/* オーバーレイ（01と揃えた見た目） */
.hero-section-02__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* テキストコンテンツ（01基準） */
.hero-section-02__text {
    position: relative;
       color: white; /* 追加した変数を使用 */
    z-index: 2;
    padding: 2rem 3rem;
    max-width: var(--hero-content-max-width);
    background-color: rgba(0,0,0,0.5);
    border-radius: var(--radius-medium);
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-text-inverse);
    font-family: var(--font-main);
}

/* タイトル */
.hero-section-02__title {
    font-size: var(--hero-font-size);
    font-weight: var(--hero-font-weight);
    letter-spacing: var(--hero-letter-spacing);
    line-height: var(--hero-line-height);
    margin-bottom: 1rem;
    font-family: var(--font-main);
    color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* サブコピー・本文 */
.hero-section-02__subcopy,
.hero-section-02__body {
    font-size: var(--sub-font-lg);
       color: white; /* 追加した変数を使用 */
    line-height: var(--sub-line-height);
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
      color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* CTAボタン（01基準） */
.hero-section-02__cta-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.hero-section-02__cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-small);
    transition: background-color 0.3s ease;
}

.hero-section-02__cta-button:hover {
    background-color: var(--color-primary-dark);
}

/* ==============================
   レスポンシブ調整（01基準）
============================== */
@media (max-width: 1024px) {
    .hero-section-02__text {
        padding: 1.8rem 2.5rem;
        margin-top: 50px;
    }

    .hero-section-02__title {
        font-size: calc(var(--hero-font-size) * 0.9);
    }

    .hero-section-02__subcopy,
    .hero-section-02__body {
        font-size: calc(var(--sub-font-lg) * 0.9);
    }
}

@media (max-width: 768px) {
    .hero-section-02__text {
        padding: 1.5rem 2rem;
        margin-top: 40px;
    }

    .hero-section-02__title {
        font-size: var(--hero-font-size-sm);
    }

    .hero-section-02__subcopy,
    .hero-section-02__body {
        font-size: var(--sub-font-md);
    }
}

@media (max-width: 480px) {
    .hero-section-02__text {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem 5%;
        margin-top: 30px;
    }

    .hero-section-02__title {
        font-size: calc(var(--hero-font-size-sm) * 0.9);
    }

    .hero-section-02__subcopy,
    .hero-section-02__body {
        font-size: calc(var(--sub-font-md) * 0.9);
    }
}

/* ==============================
   HERO SECTION 03（01/02基準 見た目統一版）
============================== */
.hero-section-03 {
   position: relative;
    width: 100%;
    height: var(--hero-height); /* フルスクリーン */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--hero-bg-color);
    transition: var(--hero-bg-transition);
    z-index: 0;
}

/* ギャラリー横スライド（アニメーション保持） */
.hero-section-03__gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

/* 1スライド */
.hero-section-03__slide {
    flex: 0 0 100%;
    height: 100%;
}

.hero-section-03__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（01/02と統一） */
.hero-section-03__overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* 固定テキスト（01/02基準） */
.hero-section-03__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 2rem 3rem;
    max-width: var(--hero-content-max-width);
    background-color: rgba(0,0,0,0.5);
    border-radius: var(--radius-medium);
    text-align: center;
    color: var(--color-text-inverse);
    font-family: var(--font-main);
    margin-left: auto;
    margin-right: auto;
}

/* タイトル */
.hero-section-03__title {
    font-size: var(--hero-font-size);
    font-weight: var(--hero-font-weight);
    letter-spacing: var(--hero-letter-spacing);
    line-height: var(--hero-line-height);
    margin-bottom: 1rem;
    color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* サブコピー・本文 */
.hero-section-03__subcopy,
.hero-section-03__body {
    font-size: var(--sub-font-lg);
    line-height: var(--sub-line-height);
    margin-bottom: 0.5rem;
   color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* CTAボタン（01/02基準） */
.hero-section-03__cta {
    margin-top: 1rem;
}

.hero-section-03__cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-small);
    transition: background-color 0.3s ease;
}

.hero-section-03__cta-button:hover {
    background-color: var(--color-primary-dark);
}

/* PC / モバイル切替 */
.hero-section-03__gallery--desktop { display: block; }
.hero-section-03__gallery--mobile { display: none; }

/* ==============================
   レスポンシブ調整（01/02基準）
============================== */
@media (max-width: 1024px) {
    .hero-section-03__text {
        padding: 1.8rem 2.5rem;
    }

    .hero-section-03__title {
        font-size: calc(var(--hero-font-size) * 0.9);
    }

    .hero-section-03__subcopy,
    .hero-section-03__body {
        font-size: calc(var(--sub-font-lg) * 0.9);
    }
}

@media (max-width: 768px) {
    .hero-section-03__gallery--desktop { display: none; }
    .hero-section-03__gallery--mobile { display: block; }

    .hero-section-03__text {
        padding: 1.5rem 2rem;
        max-width: 90%;
    }

    .hero-section-03__title {
        font-size: var(--hero-font-size-sm);
    }

    .hero-section-03__subcopy,
    .hero-section-03__body {
        font-size: var(--sub-font-md);
    }
}

@media (max-width: 480px) {
    .hero-section-03__text {
        max-width: 80%;
        padding: 1rem 5%;
        margin-top: 30px;
    }

    .hero-section-03__title {
        font-size: calc(var(--hero-font-size-sm) * 0.9);
    }

    .hero-section-03__subcopy,
    .hero-section-03__body {
        font-size: calc(var(--sub-font-md) * 0.9);
    }
}

/* ==============================
   HERO SECTION 04（01基準 見た目統一版）
============================== */
.hero-section-04 {
    position: relative;
    width: 100%;
    height: var(--hero-height); /* フルスクリーン */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--hero-bg-color);
    transition: var(--hero-bg-transition);
    z-index: 0;
}

/* ギャラリー */
.hero-section-04__gallery {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 1スライド */
.hero-section-04__slide {
    flex: 0 0 100%;
    height: 100%;
}

.hero-section-04__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（01/02基準） */
.hero-section-04__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* テキストボックス（01基準） */
.hero-section-04__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 2rem 3rem; /* 内側余白 */
    max-width: var(--hero-content-max-width);
    background-color: rgba(0,0,0,0.5);
    border-radius: var(--radius-medium);
    text-align: center;
    color: var(--color-text-inverse);
    font-family: var(--font-main);
}

/* タイトル */
.hero-section-04__title {
    font-size: var(--hero-font-size);
    font-weight: var(--hero-font-weight);
    letter-spacing: var(--hero-letter-spacing);
    line-height: var(--hero-line-height);
    margin-bottom: 1rem;
    color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* サブコピー・本文 */
.hero-section-04__subcopy,
.hero-section-04__body {
    font-size: var(--sub-font-lg);
    line-height: var(--sub-line-height);
    margin-bottom: 0.5rem;
    color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* CTAボタン（01基準） */
.hero-section-04__cta {
    margin-top: 1rem;
}

.hero-section-04__cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-small);
    transition: background-color 0.3s ease;
}

.hero-section-04__cta-button:hover {
    background-color: var(--color-primary-dark);
}

/* PC / モバイル切替 */
.hero-section-04__gallery--desktop { display: block; }
.hero-section-04__gallery--mobile { display: none; }

@media (max-width: 768px) {
    .hero-section-04__gallery--desktop { display: none; }
    .hero-section-04__gallery--mobile { display: block; }
    .hero-section-04__text {
        padding: 1.5rem 2rem;
        max-width: 90%;
    }
    .hero-section-04__title {
        font-size: var(--hero-font-size-sm);
    }
    .hero-section-04__subcopy,
    .hero-section-04__body {
        font-size: var(--sub-font-md);
    }
}

@media (max-width: 480px) {
    .hero-section-04__text {
        padding: 1rem 5%;
        max-width: 80%;
    }
    .hero-section-04__title {
        font-size: calc(var(--hero-font-size-sm) * 0.9);
    }
    .hero-section-04__subcopy,
    .hero-section-04__body {
        font-size: calc(var(--sub-font-md) * 0.9);
    }
}

/* ==============================
   HERO SECTION 05（01完全版基準） 
============================== */
.hero-section-05 {
    position: relative;
    width: 100%;
    height: var(--hero-height); /* フルスクリーン */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--hero-bg-color);
    transition: var(--hero-bg-transition);
    z-index: 0;
}

/* ギャラリー横並び（スライダー用） */
.hero-section-05__gallery {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-section-05__slide {
    flex: 0 0 100%;
    height: 100%;
}

.hero-section-05__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（01/02基準） */
.hero-section-05__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* 固定テキスト（01基準） */
.hero-section-05__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 2rem 3rem;
    max-width: var(--hero-content-max-width);
    background-color: rgba(0,0,0,0.5);
    border-radius: var(--radius-medium);
    text-align: center;
    color: var(--color-text-inverse);
    font-family: var(--font-main);
}

/* タイトル（01基準） */
.hero-section-05__title {
    font-size: var(--hero-font-size);
    font-weight: var(--hero-font-weight);
    letter-spacing: var(--hero-letter-spacing);
    line-height: var(--hero-line-height);
    margin-bottom: 1rem;
  color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* サブコピー・本文（01基準） */
.hero-section-05__subcopy,
.hero-section-05__body {
    font-size: var(--sub-font-lg);
    line-height: var(--sub-line-height);
    margin-bottom: 0.5rem;
   color: white; /* 追加した変数を使用 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* CTAボタン（01基準） */
.hero-section-05__cta {
    margin-top: 1rem;
}

.hero-section-05__cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-small);
    transition: background-color 0.3s ease;
}

.hero-section-05__cta-button:hover {
    background-color: var(--color-primary-dark);
}

/* ナビボタン（丸に統一） */
.hero-section-05__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;        /* 幅 */
    height: 50px;       /* 高さ */
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 50%;  /* 完全な円形 */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-section-05__nav:hover {
    background-color: rgba(0,0,0,0.8);
}

.hero-section-05__nav--prev { left: 1rem; }
.hero-section-05__nav--next { right: 1rem; }

/* PC / モバイル切替 */
.hero-section-05__gallery--desktop { display: block; }
.hero-section-05__gallery--mobile { display: none; }

@media (max-width: 768px) {
    .hero-section-05__gallery--desktop { display: none; }
    .hero-section-05__gallery--mobile { display: block; }

    .hero-section-05__text {
        padding: 1.5rem 2rem; /* 01レスポンシブに合わせる */
    }

    .hero-section-05__nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section-05__text {
        max-width: 80%;
        padding: 1rem 5%;
        margin-top: 30px;
    }
    .hero-section-05__title {
        font-size: calc(var(--hero-font-size-sm) * 0.9);
    }
    .hero-section-05__subcopy,
    .hero-section-05__body {
        font-size: calc(var(--sub-font-md) * 0.9);
    }
}

/* ==================================================
   hero-section-06（共通ルール準拠版）
================================================== */
.hero-section-06 {
  width: 100%;
  height: 100vh; /* フルスクリーン */
  display: flex;
  flex-direction: column;
}

.hero-section-06__image {
  flex: 1; /* 上半分 */
  width: 100%;
  overflow: hidden;
}

.hero-section-06__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-section-06__text {
  flex: 1; /* 下半分 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--spacing-lg);
}

.hero-section-06__title {
  font-size: var(--font-xl); /* タイトル PC */
  color: var(--color-text-main);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-main);
}

.hero-section-06__subcopy {
  font-size: var(--font-lg); /* サブコピー PC */
  color: var(--color-text-sub);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-subheading);
  font-family: var(--font-family-main);
}

.cta-button {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-button-bg);
  color: var(--color-button-text);
  border: 1px solid var(--color-button-border);
  border-radius: var(--radius-panel);
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: var(--color-button-hover-bg);
  color: var(--color-button-hover-text);
}

/* -----------------------------
   MDサイズ以下（タブレット向け）
----------------------------- */
@media (max-width: 768px) {
  .hero-section-06__title { font-size: var(--font-xl-sm); }
  .hero-section-06__subcopy { font-size: var(--font-lg-sm); }
  .hero-section-06__text { padding: var(--spacing-md-sm); }
  .cta-button { padding: var(--spacing-sm-sm) var(--spacing-md-sm); }
}

/* -----------------------------
   SMサイズ以下（スマホ向け）
----------------------------- */
@media (max-width: 480px) {
  .hero-section-06__title { font-size: var(--font-sm); }
  .hero-section-06__subcopy { font-size: var(--font-sm-sm); }
  .hero-section-06__text { padding: var(--spacing-sm-sm); }
  .cta-button { padding: var(--spacing-sm-sm) var(--spacing-md-sm); }
}

/* -----------------------------
   XSサイズ以下（小型スマホ）
----------------------------- */
@media (max-width: 320px) {
  .hero-section-06__title { font-size: var(--font-sm); }
  .hero-section-06__subcopy { font-size: var(--font-sm-sm); }
  .hero-section-06__text { padding: var(--spacing-sm-sm); }
  .cta-button { padding: var(--spacing-sm-sm) var(--spacing-md-sm); }
}




/* ==================================================
   hero-section-07（左右ハーフ版）
================================================== */
.hero-section-07 {
  width: 100%;
  height: 100vh; /* フルスクリーン */
  display: flex;
  flex-direction: row; /* 左右に並べる */
}

.hero-section-07__image {
  flex: 1; /* 左半分 */
  width: 50%;
  overflow: hidden;
}

.hero-section-07__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-section-07__text {
  flex: 1; /* 右半分 */
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--spacing-lg);
}

.hero-section-07__title {
  font-size: var(--font-xl);
  color: var(--color-text-main);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-main);
}

.hero-section-07__subcopy {
  font-size: var(--font-lg);
  color: var(--color-text-sub);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-subheading);
  font-family: var(--font-family-main);
}

.cta-button {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-button-bg);
  color: var(--color-button-text);
  border: 1px solid var(--color-button-border);
  border-radius: var(--radius-panel);
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: var(--color-button-hover-bg);
  color: var(--color-button-hover-text);
}

/* -----------------------------
   MDサイズ以下（タブレット向け）
----------------------------- */
@media (max-width: 768px) {
  .hero-section-07 {
    flex-direction: column; /* スマホ・タブレットでは縦積みに戻す */
    height: auto;
  }
  .hero-section-07__image,
  .hero-section-07__text {
    width: 100%;
    flex: none;
  }
  .hero-section-07__title { font-size: var(--font-xl-sm); }
  .hero-section-07__subcopy { font-size: var(--font-lg-sm); }
  .cta-button { padding: var(--spacing-sm-sm) var(--spacing-md-sm); }
}

/* -----------------------------
   SMサイズ以下（スマホ向け）
----------------------------- */
@media (max-width: 480px) {
  .hero-section-07__title { font-size: var(--font-sm); }
  .hero-section-07__subcopy { font-size: var(--font-sm-sm); }
 
  .cta-button { padding: var(--spacing-sm-sm) var(--spacing-md-sm); }
}

/* -----------------------------
   XSサイズ以下（小型スマホ）
----------------------------- */
@media (max-width: 320px) {
  .hero-section-07__title { font-size: var(--font-sm); }
  .hero-section-07__subcopy { font-size: var(--font-sm-sm); }
  .cta-button { padding: var(--spacing-sm-sm) var(--spacing-md-sm); }
}


