/* ============================================================
   CSS カスタムプロパティ（変数）
   ============================================================ */
:root {
  /* カラー */
  --color-navy:        #0C2753;
  --color-red:         #990000;
  --color-gold:        #E1C300;
  --color-gold-dark:   #9A870C;
  --color-lightblue:   #83A7CE;
  --color-price-blue:  #0342A6;
  --color-cream:       #F7F3DF;
  --color-cream-dark:  #EDE7CB;
  --color-section-bg:  #8797ad;
  --color-section-light-bg: #F3F3F3;
  --color-white:       #FFFFFF;
  --color-text:        #333333;
  --color-text-light:  #555555;

  /* フォント */
  --font-base: -apple-system, BlinkMacSystemFont,
    "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;

  /* 最大幅 */
  --max-width: 1200px;

  /* セクション縦余白 */
  --section-py: 120px;

  /* 左右余白（SP） */
  --sp-px: 16px;

  /* PC左右余白（テキスト用） */
  --pc-gutter: 40px;
}


/* ============================================================
   リセット・ベーススタイル
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-base);
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================================
   レイアウト共通
   ============================================================ */
.inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

/* テキスト余白専用：.inner の padding に依存しない要素に付与 */
.inner-gutter {
  padding-inline: var(--pc-gutter);
}

@media (max-width: 768px) {
  .inner {
    padding-inline: var(--sp-px);
  }
  .inner-gutter {
    padding-inline: 0; /* SP は .inner の 16px に任せる */
  }
  /* 筆記体見出し（Reason, Process 等）の下の空き：全セクション共通 */
  .section-heading {
    margin-bottom: 40px;
  }
}

.u-break-sp {
  display: inline;
}

@media (max-width: 768px) {
  .u-break-sp {
    display: block;
  }
}


/* ============================================================
   セクション見出し共通（"Reason" "Process" などの装飾見出し）
   ============================================================ */
.section-heading {
  display: inline-flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 0;
  border-bottom: 4px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 64px;
  opacity: 0.8;
}

.section-heading-en {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(50px, 7.3vw, 94px);
  font-style: normal;
  font-weight: 400;
  color: #BBBBBB;
  line-height: 0.85;
  letter-spacing: 0.02em;
}

.section-heading-ja {
  font-size: clamp(16px, 2vw, 22px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}


/* ============================================================
   CTAボタン共通
   ============================================================ */
.btn-cta {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  text-align: center;
  padding: 18px 48px;
  border-radius: 4px;
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.05em;
  line-height: 1.5;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .btn-cta {
    display: block;
    width: 100%;
    padding: 18px 16px;
  }
}



/* ============================================================
   HERO TOP BAR（黒帯）
   ============================================================ */
.hero-topbar {
  background-color: rgb(50, 52, 54);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid #717171;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-topbar-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.hero-topbar-text {
  font-size: clamp(14px, 1.8vw, 22px);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .hero-topbar {
    justify-content: center;
  }
  .hero-topbar-logo {
    max-width: 120px;
  }
}

.topbar-yellow {
  color: var(--color-gold);
}


/* ============================================================
   SECTION 01: HERO
   ============================================================ */

/* セクション全体：背景画像を約70%の明るさに */
.hero {
  background-color: var(--color-navy);
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(images/hero-pamphlet.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ---- タイトルブロック（全幅・中央・紺90%背景） ---- */
.hero-titleblock {
  background-color: rgba(0, 18, 49, 0.85);
  padding: 44px 40px 36px;
  text-align: center;
}

.hero-titleblock-inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.hero-title {
  font-size: clamp(40px, 6.3vw, 83px);
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: clamp(20px, 2.6vw, 30px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.hero-catch {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.6;
}

.catch-gold {
  color: var(--color-gold);
  text-decoration: underline wavy var(--color-gold);
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  letter-spacing: 0.08em;
}

.mincho-bold {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  letter-spacing: 0.08em;
}

/* ---- 2カラムエリア ---- */
.hero-body {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 36px 40px 52px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* 左カラム */
.hero-content {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* テキスト幅を基準に価格ボックスを追従させるラッパー */
.hero-text-price {
  display: inline-block;
  max-width: 100%;
}

/* 右カラム：人物画像 */
.hero-image {
  flex: 0 0 390px;
  width: 390px;
}

.hero-person {
  width: 390px;
  height: auto;
}

/* ターゲットエリア */
.hero-target {
  margin-bottom: 20px;
}

.hero-target-area {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #000000;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-decoration: underline solid #000000;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.hero-target-copy {
  font-size: clamp(18px, 2vw, 23px);
  color: #000000;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 20px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

/* 赤文字＋白縁：文章作成・デ・印 */
.red-stroke {
  color: var(--color-red);
  font-size: 1.2em;
  font-weight: bold;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

/* 価格行：ラッパー幅（＝テキスト幅）に追従 */
.hero-price-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-price-box,
.hero-spec-box {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-navy);
  padding: 8px 12px;
  border-radius: 3px;
}

.hero-price-box {
  gap: 3px;
  align-items: baseline;
}

.hero-price-num {
  font-size: clamp(30px, 2.8vw, 34px);
  font-weight: bold;
  color: #EE6700;
  line-height: 1;
}

.hero-price-unit {
  font-size: 13px;
  color: #EE6700;
}

.hero-price-tax {
  color: var(--color-text);
}

.hero-spec-box {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.5;
  text-align: center;
  align-items: center; /* spanを1つのflex要素として垂直センター */
}

.hero-spec-box strong {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}

/* HERO CTAの上の全国対応テキスト */
.hero-nationwide-text {
  text-align: center;
  margin-bottom: 12px;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

/* メインCTA（HERO / PRICING 共通） */
.btn-cta-primary {
  font-size: clamp(21px, 2.6vw, 26px);
  padding: 23px 62px;
  border-radius: 8px;
  transition: background-color 0.4s ease;
}

.btn-cta-primary:hover {
  opacity: 1;
  background-color: #D42020;
}

/* バッジ */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-badge {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background:
    linear-gradient(-45deg, #A3942D 0%, #E2D164 38%, #8A803E 100%) padding-box,
    linear-gradient(-45deg, #8F8231 0%, #D6C766 100%) border-box;
  border: 7px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  gap: 1px;
}

.badge-label {
  font-size: 17px;
  font-weight: bold;
  color: #000000;
  line-height: 1.3;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.badge-num {
  font-size: 37px;
  font-weight: bold;
  color: var(--color-red);
  line-height: 1.1;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.badge-unit {
  font-size: 20px;
  font-weight: bold;
}


.badge-unit2 {
  font-size: 41px;
  font-weight: bold;
}


/* ============================================================
   SECTION 02: SOCIAL PROOF
   ============================================================ */

.social-proof {
  padding: var(--section-py) 0;
  background-color: var(--color-section-light-bg);
}

/* 見出し＋サブをテキスト幅で囲むラッパー */
.section-header-block {
  display: table;
  margin: 0 auto;
  border-top: 8px solid #AAAAAA;
  border-bottom: 2px solid #CCCCCC;
  padding: 24px 0 20px;
  margin-bottom: 50px;
}

/* メイン見出し */
.section-title-main {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 14px;
}

.accent-num {
  color: var(--color-text);
}

.section-sub {
  font-size: clamp(16px, 2vw, 23px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  color: var(--color-gold-dark);
  text-align: center;
  line-height: 1.5;
}

.section-desc-lead {
  font-size: clamp(22px, 2.5vw, 28px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text);
  text-align: center;
  line-height: 1.9;
  margin-bottom: 48px;
}

/* 3つの特徴ポイント */
.proof-points {
  display: flex;
  gap: 35px;
  margin-bottom: 60px;
}

.proof-point {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-navy);
  padding: 28px 24px 32px;
  border-top: 7px solid #C0C0C0;
  border-bottom: 7px solid #C0C0C0;
}

.proof-point-title {
  color: var(--color-gold);
  font-size: clamp(24px, 2vw, 24px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  width: 100%;
}

.proof-icon {
  width: auto;
  height: 130px;
  object-fit: contain;
  margin-bottom: 20px;
}

.proof-point-text {
  color: var(--color-white);
  line-height: 1.8;
}

/* 制作実績ギャラリー */
.works-gallery {
  background-color: #414141;
  padding: 48px 40px 40px;
  text-align: center;
  margin-bottom: 64px;
}

.works-gallery-lead {
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 0;
  line-height: 1.7;
  margin-bottom: 10px;
}

.works-gallery-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 28px;
}

.works-visible,
.works-hidden {
  margin-bottom: 0;
}

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

.works-hidden {
  display: none;
}

.works-hidden.visible {
  display: block;
}

.btn-works-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 36px;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-works-more:hover {
  background-color: var(--color-white);
  color: #414141;
}

.works-toggle-icon {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

/* お客様からの反響 */
.voices {
  background-color: var(--color-section-bg);
  padding: 25px;
  margin-bottom: 64px;
}

.voices-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: clamp(20px, 2vw, 24px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 24px;
}

.voices-label::before,
.voices-label::after {
  content: '';
  flex: 1;
  max-width: 220px;
  height: 1px;
  background-color: var(--color-white);
}

.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.voice-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 4px;
}

.voice-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.voice-case {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: bold;
  padding: 0 14px 0 10px;
  border-radius: 0 20px 20px 0;
  border-top: 4px solid #7B7B7B;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.voice-industry {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: bold;
  color: var(--color-navy);
  line-height: 1.3;
}

.voice-text {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  color: var(--color-text);
  line-height: 1.8;
}

.voice-attr {
  font-family: var(--font-base);
  font-size: 0.9em;
}

/* 会わずに作るノウハウ */
.online-knowhow {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.online-knowhow-image {
  flex: 0 0 395px;
  order: -1;
}

.online-knowhow-image img {
  width: 100%;
  height: auto;
}

.online-knowhow-text {
  flex: 1;
}

.online-knowhow-label {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 10px;
}

.online-knowhow-sub {
  font-size: clamp(20px, 2vw, 23px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}

.online-knowhow-body {
  color: var(--color-text);
  line-height: 1.9;
}

/* Social Proof：レスポンシブ（SP） */
@media (max-width: 768px) {
  .section-header-block {
    display: block;
    width: 100%;
  }

  .proof-icon {
    height: 108px;
  }

  .proof-points {
    flex-direction: column;
    gap: 32px;
  }

  .proof-point {
    padding: 16px 28px;
  }

  .section-desc {
    text-align: left;
  }

  .works-gallery-sub {
    text-align: left;
  }

  .works-gallery {
    margin-inline: calc(-1 * var(--sp-px));
    padding: 36px var(--sp-px) 32px;
  }

  .voices {
    margin-inline: calc(-1 * var(--sp-px));
    padding: 36px var(--sp-px);
  }

  .voices-grid {
    grid-template-columns: 1fr;
  }

  .online-knowhow {
    flex-direction: column;
    gap: 24px;
  }

  .online-knowhow-label,
  .online-knowhow-sub {
    text-align: center;
  }

  .online-knowhow-image {
    flex: none;
    width: 100%;
    order: -1;
  }

  .online-knowhow-image img {
    width: 75%;
    margin-inline: auto;
  }
}


/* ============================================================
   HERO：レスポンシブ（SP）
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    background-size: cover;
  }

  .hero-titleblock {
    padding: 28px var(--sp-px) 24px;
  }

  .hero-body {
    flex-direction: column;
    padding: 24px var(--sp-px) 36px;
    gap: 24px;
  }

  .hero-image {
    flex: none;
    width: 100%;
    order: -1; /* 画像を先に表示 */
  }

  .hero-person {
    width: 75%;
    margin: 0 auto;
  }

  .hero-target {
    margin-bottom: 5px;
  }

  .hero-price-row {
    flex-direction: column;
  }

  .hero-price-box,
  .hero-spec-box {
    width: 100%;
  }

  .hero-badges {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .catch-gold {
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
  }

  .hero-catch {
    line-height: 1.9;
  }

}


/* ============================================================
   SECTION 04: REASONS
   ============================================================ */

.reasons {
  background-color: #F5F2E0;
  padding: var(--section-py) 0;
}


.reasons-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: center;
}

.reasons-desc {
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 48px;
  text-align: center;
}

.reasons-cards {
  display: flex;
  gap: 20px;
}

.reason-card {
  flex: 1;
  background-color: #4D4830;
  padding: 30px 40px;
  color: var(--color-white);
}

.reason-num-label {
  display: flex;
  align-items: stretch;
  margin-bottom: 24px;
}

.reason-num {
  display: flex;
  align-items: center;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: bold;
  padding: 2px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.reason-label-text {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-weight: bold;
  padding: 2px 12px;
  flex: 1;
}

.reason-title-jp {
  color: var(--color-white);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.45em;
  margin-bottom: 6px;
  text-align: center;
}

.reason-keyword {
  color: var(--color-gold);
  font-size: clamp(30px, 4.5vw, 56px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 22px;
  text-align: center;
}

.reason-body {
  color: var(--color-white);
  line-height: 1.9;
}

/* REASONS：レスポンシブ（SP） */
@media (max-width: 768px) {
  .reasons-cards {
    flex-direction: column;
    gap: 24px;
  }

  .reasons-title,
  .reasons-desc {
    text-align: left;
  }

  .reason-card {
    padding: 24px 20px;
  }

  .reason-title-jp {
    font-size: 22px;
  }

  .reason-keyword {
    font-size: 48px;
  }
}


/* ============================================================
   SECTION 03: TARGET
   ============================================================ */

.target {
  background-color: var(--color-navy);
  padding: var(--section-py) 0;
}

/* 問題提示 */
.target-problem {
  text-align: center;
  margin-bottom: 52px;
}

.target-problem-title {
  display: table;
  margin: 0 auto 28px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: bold;
  color: var(--color-gold);
  line-height: 1.5;
  padding: 22px 1em 18px;
  border-top: 5px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  white-space: nowrap;
}

.target-problem-desc {
  color: var(--color-white);
  line-height: 1.9;
}

/* チェックリスト＋画像 */
.target-checklist {
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: var(--color-white);
  border: 7px solid var(--color-red);
  padding: 36px 36px 36px 32px;
  margin-bottom: 0;
}

.checklist {
  flex: 1;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  line-height: 1.7;
}

.checklist-item:last-child {
  margin-bottom: 0;
}

.checklist-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-color: transparent;
  border: 3px solid #AAAAAA;
  margin-top: 3px;
}

.checklist-icon::after {
  content: '✓';
  color: var(--color-red);
  font-size: 26px;
  font-weight: bold;
}

.checklist-item em {
  color: var(--color-red);
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-decoration-thickness: 5px;
  text-underline-offset: 4px;
}

.checklist-image {
  flex: 0 0 336px;
}

.checklist-image img {
  width: 100%;
  height: auto;
}

/* 解決ブロック */
.target-solution {
  text-align: center;
  padding-top: 0;
}

.target-solution::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 44px solid transparent;
  border-right: 44px solid transparent;
  border-top: 44px solid var(--color-red);
  margin: 0 auto 28px;
}

.target-solution-lead {
  color: var(--color-white);
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: bold;
  margin-bottom: 10px;
}

.target-solution-main {
  color: var(--color-white);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 40px;
  text-decoration: underline wavy var(--color-white);
  text-underline-offset: 16px;
  text-decoration-thickness: 3px;
}

.target-solution-main strong {
  font-weight: bold;
}

.solution-gold {
  color: var(--color-gold);
}

.target-solution-sub {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
}

/* TARGET：レスポンシブ（SP） */
@media (max-width: 768px) {
  .target-problem-title {
    display: block;
    white-space: normal;
    padding: 16px var(--sp-px) 14px;
  }

  .target-problem-desc,
  .target-solution-sub {
    text-align: left;
  }

  .target-checklist {
    flex-direction: column;
    gap: 24px;
    padding: 20px 16px;
  }

  .checklist-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .checklist-icon::after {
    font-size: 21px;
  }

  .checklist-item em {
    text-decoration: none;
    /* 文字高さの下半分を塗るマーカー風 */
    background-image: linear-gradient(transparent 52%, rgba(225, 195, 0, 0.4) 52%);
    background-repeat: no-repeat;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding-inline: 0.04em;
  }

  .checklist-image {
    flex: none;
    width: 80%;
    margin: 0 auto;
  }

  .target-solution-main {
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    line-height: 1.8;
  }
}


/* ============================================================
   SECTION 05: PROCESS（制作の流れ）
   ============================================================ */

.process {
  background-color: var(--color-section-bg);
  padding: var(--section-py) 0;
}

/* セクション見出し：色をオーバーライド */
.process .section-heading {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
}

.process .section-heading-en {
  color: rgba(255, 255, 255, 0.5);
}

.process .section-heading-ja {
  color: rgba(255, 255, 255, 0.8);
}

/* 2チェック確認ブロック */
.process-two-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
}

.process-check-item {
  position: relative;
  background-color: var(--color-navy);
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--color-white);
  text-align: center;
  border-radius: 10px;
}

.process-checkmark {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.process-check-label {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
  white-space: nowrap;
}

.process-check-num {
  font-size: clamp(30px, 4.5vw, 45px);
  color: var(--color-white);
}

.process-check-name {
  font-size: clamp(18px, 3vw, 27px);
  font-weight: bold;
  color: var(--color-white);
}

.process-check-icon-wrap img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.process-check-arrow {
  font-size: 70px;
  color: var(--color-white);
  font-weight: bold;
  line-height: 1;
}

/* メインタイトル・説明 */
.process-title {
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
}

.process-title-main {
  font-size: clamp(26px, 3vw, 32px);
}

.process-title-sub {
  font-size: clamp(20px, 2.4vw, 24px);
}

.process-title-emphasis {
  font-size: clamp(28px, 3.5vw, 35px);
}

.process-desc {
  color: var(--color-white);
  text-align: center;
  line-height: 1.9;
  margin-bottom: 52px;
}

/* STEPカード群 */
.process-steps {
  max-width: 800px;
  margin-inline: auto;
}

.process-step {
  position: relative;
  background-color: var(--color-white);
  padding: 30px 40px;
  margin-bottom: 44px;
  border-radius: 4px;
}

/* ステップ間の下向き三角矢印 */
.process-step::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 24px solid var(--color-white);
}

.process-step:last-of-type::after {
  display: none;
}

.process-step:last-of-type {
  margin-bottom: 0;
}

/* お客様確認バッジ */
.process-step-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
  background-color: #E07800;
  color: var(--color-white);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1;
  padding: 8px 28px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.process-step-confirm-num {
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1;
}

/* STEPラベル（STEP 1, 2...） */
.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 12px;
}

.step-label {
  font-size: clamp(22px, 3vw, 36px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  color: #9e9e9e;
  line-height: 1;
}

/* ステップタイトルバー */
.step-title {
  background-color: var(--color-navy);
  border-top: 4px solid #BBBBBB;
  border-bottom: 4px solid #BBBBBB;
  color: var(--color-white);
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 0;
}

/* ステップ本文リスト */
.step-list {
  padding: 16px 0 0 24px;
}

.step-list li {
  list-style: disc;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 6px;
}

.step-list li:last-child {
  margin-bottom: 0;
}

/* 注記 */
.process-note {
  color: var(--color-white);
  line-height: 1.8;
  margin-top: 20px;
}

/* PROCESS：レスポンシブ（SP） */
@media (max-width: 768px) {
  .process-two-check {
    gap: 8px;
  }

  .process-title,
  .process-desc {
    text-align: left;
  }

  .process-check-item {
    width: 42vw;
    height: auto;
    aspect-ratio: 1;
    padding: 8px;
    gap: 0;
  }

  .process-checkmark {
    width: 28px;
    height: 28px;
  }

  .process-check-num {
    font-size: 25px;
  }

  .process-check-name {
    font-size: 18px;
  }

  .process-check-icon-wrap img {
    width: 84px;
  }

  .process-check-arrow {
    font-size: 36px;
  }

  .process-step {
    padding: 14px;
  }

  .process-step-confirm {
    font-size: clamp(14px, 4vw, 16px);
    padding: 4px 12px;
  }

  .step-list {
    padding: 12px 16px 16px 28px;
  }

  .step-list li {
    font-size: 16px;
  }
}


/* ============================================================
   SECTION 06: PRICING
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
  background-color: #EEEEEE;
}

.pricing .section-heading {
  margin-bottom: 56px;
}

.pricing-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
}

.pricing-formula-item {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background-color: var(--color-gold);
  border: 10px solid #dadada;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-navy);
}

.pricing-formula-plus {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  font-size: 0;
  color: transparent;
}

.pricing-formula-plus::before,
.pricing-formula-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #767676;
  transform: translate(-50%, -50%);
}

.pricing-formula-plus::before {
  width: 42px;
  height: 2px;
}

.pricing-formula-plus::after {
  width: 2px;
  height: 42px;
}

.pricing-formula-eq {
  display: none;
}

.pricing-formula-total {
  width: 100%;
  margin-top: 25px;
  text-align: center;
  color: #111111;
  font-size: clamp(18px, 2.9vw, 34px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  line-height: 1.35;
}

.pricing-formula-total strong {
  font-size: clamp(30px, 4.2vw, 45px);
  color: var(--color-price-blue);
  font-weight: 700;
}

.pricing-formula-yen {
  font-size: clamp(22px, 2.9vw, 34px);
}

.pricing-formula-total::after {
  content: "";
  display: block;
  width: min(520px, 90%);
  border-bottom: 2px solid var(--color-text);
  margin: 2px auto 0;
}

.pricing-formula-tax {
  font-size: clamp(12px, 1.5vw, 20px);
  color: #222222;
  margin-left: 6px;
}

.pricing-intro {
  text-align: center;
  line-height: 2;
  margin-bottom: 44px;
}

.pricing-compare {
  background-color: #5B5C5F;
  border-radius: 8px;
  padding: 36px 74px 38px;
  margin-bottom: 0;
}

.pricing-compare-title {
  text-align: center;
  color: var(--color-white);
  font-size: clamp(16px, 1.9vw, 22px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  border: 1px solid #C8C8C8;
  padding: 13px 16px;
  line-height: 1.55;
}

.compare-table th {
  background-color: #333333;
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
}

.compare-table td {
  font-size: 16px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 65%;
}

.compare-table th:last-child,
.compare-table td:last-child {
  width: 35%;
  text-align: center;
}

.compare-red {
  color: var(--color-red);
  font-weight: bold;
}

.compare-highlight td {
  background-color: #D9E9F8;
}

.compare-highlight strong {
  color: var(--color-price-blue);
  font-size: 16px;
}

.compare-tax {
  font-size: 11px;
  color: #333333;
}

.pricing-arrow {
  position: relative;
  width: 102px;
  height: 40px;
  margin: 0 auto 68px;
  background-color: #5B5C5F;
}

.pricing-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 48px solid #5B5C5F;
}

.pricing-arrow-copy {
  text-align: center;
  font-size: clamp(25px, 4vw, 40px);
  font-weight: bold;
  line-height: 1.65;
  margin-bottom: 56px;
}

.pricing-arrow-red {
  color: var(--color-red);
}

.pricing-detail {
  background-color: #EEEBD4;
  border: 18px solid #afa241;
  padding: 52px 54px 42px;
  margin-bottom: 56px;
}

.pricing-detail-lead {
  display: table;
  margin: 0 auto 30px;
  padding: 8px 18px;
  background-color: var(--color-white);
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  font-size: clamp(16px, 3vw, 27px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}

.pricing-detail-spec {
  text-align: center;
  font-size: clamp(16px, 2.7vw, 20px);
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 50px;
}

.pricing-detail-price {
  display: table;
  margin: 0 auto 60px;
  text-align: left;
  line-height: 1.15;
  color: var(--color-price-blue);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.pricing-detail-price strong {
  font-size: clamp(30px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-detail-yen {
  font-size: clamp(25px, 4.3vw, 52px);
  font-weight: bold;
  margin-left: 6px;
}

.pricing-detail-tax {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(14px, 2vw, 18px);
  color: #333333;
  vertical-align: baseline;
  line-height: 1.45;
}

.pricing-detail-price small {
  display: block;
  text-align: right;
  margin-top: 4px;
  font-size: 18px;
  color: #333333;
  line-height: 1.35;
}

.pricing-detail-label {
  display: table;
  margin: 0 auto 24px;
  padding: 6px 20px;
  border-radius: 999px;
  background-color: var(--color-price-blue);
  color: var(--color-white);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: bold;
  line-height: 1.2;
}

.pricing-includes {
  background-color: #DDD9C5;
  border-radius: 8px;
  padding: 28px 34px;
}

.pricing-includes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 42px;
}

.pricing-includes-list li {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2.25;
  position: relative;
  padding-left: 1em;
}

.pricing-includes-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.pricing-includes-list .u-break-sp {
  font-size: 18px;
}

.pricing-option {
  border: 4px solid #87A7CB;
  border-radius: 8px;
  padding: 30px 38px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.55);
  margin-bottom: 56px;
}

.pricing-option-main {
  min-width: 0;
}

.pricing-option-label {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #80A5CD;
  color: var(--color-white);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
}

.pricing-option-sub {
  font-size: clamp(16px, 2.5vw, 25px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pricing-option-list {
  background-color: #D7E2EE;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
  margin-bottom: 12px;
}

.pricing-option-list li {
  position: relative;
  padding-left: 1em;
  line-height: 2.25;
}

.pricing-option-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.pricing-option-note {
  line-height: 1.6;
}

.pricing-web {
  background-color: #3E577E;
  padding: 36px 56px 44px;
  text-align: center;
  color: var(--color-white);
}

.pricing-web-label {
  display: inline-block;
  background-color: #E0C400;
  color: #1A1A1A;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
  line-height: 1;
  padding: 11px 18px;
  margin-bottom: 20px;
}

.pricing-web-title {
  font-size: clamp(22px, 3vw, 25px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-web-lead {
  font-size: clamp(20px, 2vw, 20px);
  line-height: 1.95;
  margin: 0 auto 20px;
  max-width: 920px;
}

.pricing-web-lead::before,
.pricing-web-lead::after {
  content: "";
  display: block;
  width: min(620px, 100%);
  border-bottom: 4px solid #DDC200;
  margin: 0 auto 35px;
}

.pricing-web-lead::after {
  margin: 35px auto;
}

.pricing-web-body {
  line-height: 2.05;
  margin: 0 auto;
  max-width: 1100px;
}

.pricing-web-accent {
  color: #E2CB59;
  font-weight: bold;
  font-size: clamp(20px, 2vw, 25px);
}

.pricing-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .pricing {
    padding: calc(var(--section-py) * 0.8) 0;
  }

  .pricing .section-heading {
    margin-bottom: 40px;
  }

  .pricing-formula {
    gap: 8px 0;
    margin-bottom: 16px;
  }

  .pricing-formula-item {
    width: 85px;
    height: 85px;
    border-width: 3px;
  }

  .pricing-formula-plus {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .pricing-formula-plus::before {
    width: 18px;
    height: 2px;
  }

  .pricing-formula-plus::after {
    width: 2px;
    height: 18px;
  }

  .pricing-formula-total {
    margin-top: 8px;
  }

  .pricing-formula-total::after {
    border-bottom-width: 2px;
    margin-top: 2px;
  }

  .pricing-intro {
    line-height: 1.85;
    margin-top: 26px;
    margin-bottom: 26px;
    text-align: left;
  }

  .pricing-compare {
    padding: 14px 12px 16px;
    border-radius: 4px;
    margin-bottom: 0;
  }

  .pricing-compare-title {
    margin-bottom: 10px;
    text-align: left;
  }

  .compare-table th,
  .compare-table td {
    padding: 8px 6px;
    line-height: 1.45;
  }

  .pricing-arrow {
    width: 62px;
    height: 22px;
    margin-bottom: 44px;
  }

  .pricing-arrow::after {
    bottom: -28px;
    border-left-width: 55px;
    border-right-width: 55px;
    border-top-width: 28px;
  }

  .pricing-arrow-copy {
    line-height: 1.9;
    margin-bottom: 26px;
  }

  .pricing-detail {
    border-width: 6px;
    padding: 16px 10px 14px;
    margin-bottom: 24px;
  }

  .pricing-detail-lead {
    padding: 6px 8px;
    margin-bottom: 14px;
  }

  .pricing-detail-spec {
    margin-bottom: 20px;
  }

  .pricing-detail-price {
    margin-bottom: 30px;
  }

  .pricing-detail-tax {
    margin-left: 6px;
    line-height: 1.4;
  }

  .pricing-detail-price small {
    font-size: 14px;
  }

  .pricing-detail-label {
    margin-bottom: 16px;
  }

  .pricing-includes {
    padding: 18px;
    border-radius: 4px;
  }

  .pricing-includes-list {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .pricing-includes-list li {
    line-height: 1.6;
  }

  .pricing-includes-list .u-break-sp {
    font-size: inherit;
  }

  .pricing-option {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 10px;
    border-width: 2px;
    margin-bottom: 24px;
  }

  .pricing-option-label {
    width: 140px;
    height: 40px;
    margin-inline: auto;
  }

  .pricing-option-sub {
    text-align: center;
    margin-bottom: 8px;
  }

  .pricing-option-list {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 2px;
    margin-bottom: 6px;
  }

  .pricing-option-list li {
    line-height: 1.6;
  }

  .pricing-web {
    padding: 18px 12px 20px;
  }

  .pricing-web-label {
    padding: 8px 12px;
    margin-bottom: 10px;
  }

  .pricing-web-title {
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
  }

  .pricing-web-lead {
    line-height: 1.85;
    margin-bottom: 10px;
    text-align: left;
  }

  .pricing-web-lead::before,
  .pricing-web-lead::after {
    border-bottom-width: 2px;
    margin: 0 auto 24px;
  }

  .pricing-web-lead::after {
    margin: 24px auto;
  }

  .pricing-web-body {
    line-height: 1.85;
    text-align: left;
  }

  .pricing-cta-wrap {
    margin-top: 24px;
  }

}


/* ============================================================
   SECTION 07: FAQ
   ============================================================ */
.faq {
  background-color: var(--color-section-bg);
  padding: var(--section-py) 0;
}

.faq .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin-bottom: 52px;
}

.faq .section-heading-en {
  color: #C7D2E0;
}

.faq .section-heading-ja {
  color: #DFE5EE;
}

.faq-title {
  text-align: center;
  color: var(--color-white);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: bold;
  line-height: 1.55;
  margin-bottom: 20px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.faq-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
}

.faq-list {
  max-width: 980px;
  margin: 56px auto 0;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background-color: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 4px 8px rgba(58, 69, 92, 0.3);
  padding: 14px 28px 14px 24px;
}

.faq-q-icon {
  flex: 0 0 auto;
  color: #2059A3;
  font-size: clamp(26px, 2.3vw, 42px);
  line-height: 1;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.faq-q-text {
  flex: 1 1 auto;
  color: var(--color-text);
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.5;
}

.faq-toggle-icon {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1;
  font-weight: 400;
}

.faq-item.is-open {
  background-color: #FFFFFF;
  border-radius: 34px;
  box-shadow: 0 4px 8px rgba(58, 69, 92, 0.3);
  padding: 0 20px 16px;
}

.faq-item.is-open .faq-question {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 14px 0 12px;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #F3EFD6;
  border-radius: 10px;
  padding: 24px 28px;
}

.faq-answer[hidden] {
  display: none;
}

.faq-a-icon {
  flex: 0 0 auto;
  color: #E19F00;
  font-size: clamp(26px, 2.3vw, 42px);
  line-height: 1;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.faq-a-text {
  color: #1A1A1A;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .faq {
    padding: calc(var(--section-py) * 0.8) 0;
  }

  .faq .section-heading {
    margin-bottom: 40px;
  }

  .faq-title {
    margin-bottom: 14px;
    text-align: left;
  }

  .faq-sub {
    line-height: 1.8;
    text-align: left;
  }

  .faq-list {
    margin-top: 28px;
  }

  .faq-question {
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .faq-q-text {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.45;
  }

  .faq-toggle-icon {
    font-size: clamp(28px, 8vw, 38px);
  }

  .faq-item.is-open {
    border-radius: 10px;
    padding: 0 10px 10px;
  }

  .faq-answer {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 8px;
  }

  .faq-a-text {
    font-size: 16px;
    line-height: 1.75;
  }
}


/* ============================================================
   SECTION 08: CONTACT
   ============================================================ */
.contact {
  background-color: var(--color-section-light-bg);
  padding: var(--section-py) 0;
}

.contact .section-heading {
  margin-bottom: 54px;
}

.contact-title {
  text-align: center;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-catch {
  text-align: center;
  color: #8C8122;
  font-size: clamp(20px, 3vw, 35px);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-desc {
  text-align: center;
  line-height: 2;
  margin-bottom: 60px;
}

.form-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.form-title {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: bold;
  line-height: 1.4;
  padding: 12px 0;
  border-top: 1px solid #5C5C5C;
  border-bottom: 1px solid #5C5C5C;
}

.form-note {
  max-width: 460px;
  margin: 26px auto 38px;
  text-align: center;
  line-height: 2;
  background-color: #C4CCD9;
  border-radius: 10px;
  padding: 18px 24px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 32% minmax(0, 1fr);
  gap: 12px 36px;
  padding: 42px 48px;
}

.form-row:nth-child(odd) {
  background-color: #EFEBD6;
}

.form-row:nth-child(even) {
  background-color: #E5E0C5;
}

.form-label {
  align-self: start;
  line-height: 1.6;
}

.required {
  margin-left: 8px;
  font-size: 16px;
  color: #8A7D1A;
}

.optional {
  margin-left: 8px;
  font-size: 16px;
  color: #666666;
  font-weight: normal;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #8F96A2;
  background-color: #FFFFFF;
  color: #222222;
  font-family: var(--font-base);
  font-size: 18px;
}

.form-input {
  height: 48px;
  padding: 0 14px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8A8A8A;
}

.form-input-note {
  grid-column: 1 / -1;
  line-height: 1.7;
}

.form-radio-group {
  display: grid;
  gap: 10px;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
}

.form-radio-label input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #222222;
  border-radius: 50%;
  position: relative;
  flex: 0 0 16px;
}

.form-radio-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #222222;
  transform: translate(-50%, -50%);
}

.form-textarea {
  min-height: 178px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.8;
}

.form-submit-wrap {
  text-align: center;
  margin-top: 52px;
}

.form-privacy-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.form-privacy-link {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.form-consent-label {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 auto 28px;
  border: 1px solid #303030;
  padding: 24px 38px;
  cursor: pointer;
  background-color: #FFFFFF;
}

.form-consent-label input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: #111111;
  cursor: pointer;
  flex: 0 0 auto;
}

.form-consent-label input[type="checkbox"]:checked::after {
  content: none;
}

.btn-submit {
  min-width: 380px;
}

.btn-submit:disabled {
  opacity: 0.42;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-submit-sub {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.form-submit-note {
  margin-top: 18px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact {
    padding: calc(var(--section-py) * 0.8) 0;
  }

  .contact .section-heading {
    margin-bottom: 40px;
  }

  .contact-title {
    margin-bottom: 16px;
    text-align: left;
  }

  .contact-catch {
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: left;
  }

  .contact-desc {
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
  }

  .form-title {
    padding: 8px 0;
  }

  .form-note {
    margin: 14px auto 22px;
    padding: 16px 20px;
    line-height: 1.8;
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 14px;
  }

  .required,
  .optional {
    font-size: 13px;
  }

  .form-input {
    height: 44px;
    padding-inline: 10px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
  }

  .form-input-note {
    font-size: 14px;
    line-height: 1.6;
  }

  .form-radio-group {
    gap: 8px;
  }

  .form-radio-label {
    font-size: 16px;
  }

  .form-textarea {
    min-height: 140px;
  }

  .form-submit-wrap {
    margin-top: 26px;
  }

  .form-privacy-text {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: left;
  }

  .form-consent-label {
    width: 100%;
    font-size: 16px;
    gap: 10px;
    padding: 14px 10px;
    border-width: 1px;
    margin: 0 auto 18px;
    justify-content: center;
  }

  .form-consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }

  .form-consent-label span {
    display: inline-block;
    text-align: left;
  }

  .btn-submit {
    min-width: 0;
    width: 100%;
  }

  .form-submit-note {
    margin-top: 12px;
    font-size: 14px;
    text-align: left;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: clamp(68px, 6vw, 106px) 0 clamp(46px, 4vw, 72px);
}

.footer .inner {
  max-width: 1200px;
  padding-inline: 40px;
}

.footer-tagline {
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: clamp(10px, 3vw, 40px);
}

.footer-company {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(34px, 3vw, 58px);
  margin-bottom: clamp(34px, 3vw, 58px);
}

.footer-logo {
  width: clamp(40px, 5vw, 80px);
  flex: 0 0 auto;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
}

.footer-company-name {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 7px;
}

.footer-address,
.footer-tel {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}
.footer-tel {
  margin-bottom: 0;
}

.footer-profile {
  width: min(100%, 600px);
  margin: 0 auto clamp(25px, 3vw, 40px);
}

.footer-profile-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-profile-table th,
.footer-profile-table td {
  padding: 14px 18px;
  font-size: 16px;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}

.footer-profile-table th {
  width: 150px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-profile-table td {
  width: 450px;
}

.footer-profile-table tr + tr th,
.footer-profile-table tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-nav {
  margin-bottom: clamp(28px, 3vw, 52px);
}

.footer-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}

.footer-nav-item {
  display: flex;
  align-items: center;
}

.footer-nav-item:not(:last-child)::after {
  content: "｜";
  margin: 0 14px;
  font-size: 16px;
  line-height: 1;
}

.footer-nav-link {
  font-size: 16px;
  line-height: 1.45;
  transition: opacity 0.2s;
}

.footer-nav-link:hover {
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer {
    padding: 52px 0 36px;
  }

  .footer .inner {
    padding-inline: var(--sp-px);
  }

  .footer-tagline {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 26px;
    letter-spacing: 0.04em;
  }

  .footer-company {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .footer-logo {
    width: 75px;
    margin-inline: auto;
  }

  .footer-company-info {
    text-align: center;
    align-items: center;
  }

  .footer-company-name {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .footer-address,
  .footer-tel {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 3px;
  }

  .footer-tel {
    margin-bottom: 0;
  }

  .footer-profile {
    margin-bottom: 28px;
  }

  .footer-profile-table th,
  .footer-profile-table td {
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-profile-table th {
    width: 25%;
  }

  .footer-profile-table td {
    width: auto;
  }

  .footer-nav {
    margin-bottom: 20px;
  }

  .footer-nav-list {
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav-item:not(:last-child)::after {
    content: none;
  }

  .footer-nav-link {
    font-size: 14px;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.7;
  }
}


/* ============================================================
   PRIVACY MODAL
   ============================================================ */
body.is-modal-open {
  overflow: hidden;
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-modal {
  --modal-side-gap: 24px;
  --modal-top-gap: 24px;
  --modal-bottom-gap: 24px;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    calc(var(--modal-top-gap) + env(safe-area-inset-top))
    var(--modal-side-gap)
    calc(var(--modal-bottom-gap) + env(safe-area-inset-bottom));
  background-color: rgba(0, 0, 0, 0.6);
}

.privacy-modal-dialog {
  width: min(800px, 90vw);
  max-height: calc(
    100vh - var(--modal-top-gap) - var(--modal-bottom-gap) -
    env(safe-area-inset-top) - env(safe-area-inset-bottom)
  );
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

@supports (height: 100dvh) {
  .privacy-modal-dialog {
    max-height: calc(
      100dvh - var(--modal-top-gap) - var(--modal-bottom-gap) -
      env(safe-area-inset-top) - env(safe-area-inset-bottom)
    );
  }
}

.privacy-modal-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid #DCDCDC;
}

.privacy-modal-title {
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.4;
}

.privacy-modal-close {
  flex: 0 0 auto;
  font-size: 36px;
  line-height: 1;
  color: #4A4A4A;
  padding: 0;
  cursor: pointer;
}

.privacy-modal-content {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 22px 24px;
  color: #222222;
  font-size: 18px;
  line-height: 1.5;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.privacy-modal-content h3 {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
  margin-top: 18px;
  margin-bottom: 4px;
}

.privacy-modal-content p + p {
  margin-top: 20px;
}

.privacy-modal-contact-block {
  margin-top: 18px;
}

.privacy-modal-footer {
  flex: 0 0 auto;
  padding: 16px 24px calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid #DCDCDC;
  text-align: center;
}

.privacy-modal-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 12px 24px;
  border-radius: 6px;
  background-color: #2C6CB0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: opacity 0.2s;
}

.privacy-modal-confirm:hover,
.privacy-modal-close:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .privacy-modal {
    --modal-side-gap: 16px;
    --modal-top-gap: 12px;
    --modal-bottom-gap: 12px;
  }

  .privacy-modal-dialog {
    width: 90vw;
  }

  .privacy-modal-header {
    padding: 14px 16px;
    gap: 10px;
  }

  .privacy-modal-close {
    font-size: 32px;
  }

  .privacy-modal-content {
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .privacy-modal-content h3 {
    font-size: 16px;
    margin-top: 14px;
  }

  .privacy-modal-contact-block {
    margin-top: 14px;
  }

  .privacy-modal-footer {
    padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
  }

  .privacy-modal-confirm {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
}

/* ============================================================
   SP Typography Adjustment（16px -> 18px, footer除く）
   ============================================================ */
@media (max-width: 768px) {
  .section-heading-ja,
  .hero-spec-box,
  .works-gallery-sub,
  .btn-works-more,
  .reason-label-text,
  .checklist-item,
  .step-title,
  .step-list li,
  .process-step-confirm,
  .pricing-formula-item,
  .pricing-compare-title,
  .compare-table th,
  .compare-table td,
  .compare-highlight strong,
  .pricing-detail-lead,
  .pricing-includes-list li,
  .pricing-option-sub,
  .pricing-web-label,
  .faq-q-text,
  .faq-a-text,
  .form-title,
  .form-input,
  .form-textarea,
  .form-radio-label,
  .form-privacy-text,
  .form-consent-label,
  .privacy-modal-content,
  .privacy-modal-content h3,
  .privacy-modal-confirm {
    font-size: 18px;
  }

  .section-sub {
    font-size: 20px;
  }
}
