/* ========================================
   style.css
   ======================================== */
/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  /* ==============================================
     カラー
     ============================================== */
  /* ブランドカラー */
  --color-navy:      #002877;   /* メインネイビー（見出し・強調） */
  --color-blue:      #217DD8;   /* メインブルー（CTAボタン・リンク） */
  --color-blue-dark: #114272;   /* ブルーグラデ終端 */
  --color-green:     #04B813;   /* LINEボタン */

  /* ニュートラル */
  --color-white:     #ffffff;
  --color-black:     #000000;
  --color-text:      #000000;   /* 本文テキスト */
  --color-text-sub:  #555555;   /* 補足テキスト */

  /* 背景 */
  --color-bg-light:  #E4F2F9;   /* 薄い水色（VOICEセクション等） */
  --color-bg-gray:   #f3f3f3;   /* 薄いグレー */
  --color-bg-white:  #ffffff;

  /* ボーダー・ライン */
  --color-border:    #e0e0e0;   /* 標準ボーダー */
  --color-border-lt: #cccccc;   /* 薄めボーダー */

  /* ==============================================
     フォント
     ============================================== */
  --font-jp:  'Noto Sans JP', sans-serif;
  --font-en:  'Cabin', sans-serif;        /* 英語見出し */
  --font-num: 'Bahnschrift', 'Noto Sans JP', sans-serif; /* 電話番号等 */

  /* ==============================================
     タイポグラフィスケール（Figma準拠）
     ============================================== */
  --text-xs:   12px;   /* 注釈・補足 */
  --text-sm:   14px;   /* 小さめ本文 */
  --text-base: 16px;   /* 本文（Figma: 本文16px） */
  --text-md:   20px;   /* ちょい本文（Figma: ちょい本文20px） */
  --text-lg:   24px;   /* 小見出し（Figma: 小見出し24px） */
  --text-xl:   32px;   /* セクションタイトル（Figma: 32px） */
  --text-2xl:  48px;   /* 大見出し */
  --text-3xl:  64px;   /* 英語大見出し（Cabin） */
  --text-4xl:  96px;   /* ヒーロータイトル */

  /* フォントウェイト */
  --fw-medium: 500;
  --fw-bold:   700;

  /* 行間・文字間（Figma: lineHeight=2, letterSpacing=0.08em） */
  --lh-none:   1;       /* アイキャッチ・大見出し */
  --lh-tight:  1.5;     /* ボタン・コンパクトな見出し */
  --lh-base:   2;       /* 本文・リスト（Figma標準） */
  --ls-base:   0.08em;  /* 全テキスト共通（Figma標準） */

  /* ==============================================
     スペーシングスケール（8px基準）
     ============================================== */
  --space-1:   8px;
  --space-2:   16px;
  --space-3:   24px;
  --space-4:   32px;
  --space-5:   40px;
  --space-6:   48px;
  --space-8:   64px;
  --space-10:  80px;
  --space-12:  96px;

  /* セクション用 */
  --section-gap:    100px;  /* セクション上下余白 */
  --section-gap-sm:  60px;  /* 小さめセクション余白 */
  --inner-pad:       20px;  /* コンテナ左右パディング */

  /* ==============================================
     レイアウト
     ============================================== */
  --header-h:  80px;
  --inner-w:   1100px;   /* コンテナ最大幅 */

  /* ブレークポイント参照値（メディアクエリ用・変数はそのまま使えないが記録） */
  /* タブレット: 1050px  スマホ: 767px */

  /* ==============================================
     角丸（border-radius）
     ============================================== */
  --radius-sm:   4px;    /* 小さな要素 */
  --radius-md:   10px;   /* カード・ボックス */
  --radius-pill: 50px;   /* ボタン（ピル型） */

  /* ==============================================
     z-index スタック
     ============================================== */
  --z-base:    0;
  --z-above:   1;
  --z-header:  100;
  --z-modal:   200;
  --z-toast:   300;

  /* ==============================================
     トランジション
     ============================================== */
  --transition-fast:   0.2s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.4s ease;
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  background: var(--color-white);
  line-height: var(--lh-base);      /* 2 — Figma標準 */
  letter-spacing: var(--ls-base);   /* 0.08em — Figma標準 */
}

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

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

ul { list-style: none; }

address { font-style: normal; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--color-white);
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0 0 36px;
}

.header__logo {
  flex-shrink: 0;
  height: 52px;
}

.header__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.2s;
}

.header__nav-link:hover { color: var(--color-blue); }

/* 右側：電話エリア＋CTAボタンを横並びに */
.header__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

.header__tel-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  padding: 0 20px;
  line-height: 1;
}

.header__tel-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__tel-icon { width: 24px; height: 24px; }

.header__tel-num {
  font-family: 'Bahnschrift', var(--font-jp);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  line-height: 1;
}

.header__hours {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  white-space: nowrap;
  line-height: 1;
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 243px;
  height: 100%;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.header__cta:hover { opacity: 0.85; }
.header__cta-icon { width: 22px; height: 22px; }

.header__mobile-actions,
.mobile-menu {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

/* コピー（左上） */
.hero__copy {
  position: absolute;
  top: clamp(120px, 15vh, 170px);
  left: clamp(40px, 4.5vw, 86px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__catch {
  font-size: clamp(14px, 1.875vw, 36px);
  font-weight: 700;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  letter-spacing: 0.08em;
  margin-top: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero__title-bar {
  display: inline-block;
  background: var(--color-white);
  padding: clamp(14px, 2vh, 24px) clamp(56px, 6vw, 120px) clamp(14px, 2vh, 24px) clamp(48px, 4vw, 80px);
}

.hero__title-text {
  font-size: clamp(48px, 4.2vw, 80px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* コンタクトボックス（右下） */
.hero__contact {
  position: absolute;
  bottom: clamp(56px, 7.5vh, 88px);
  right: 0;
  width: clamp(560px, 40vw, 760px);
  background: var(--color-white);
  padding: clamp(16px, 2vw, 36px) clamp(20px, 2.5vw, 48px) clamp(20px, 2.2vw, 36px);
  overflow: hidden;
}

/* CONTACT US ウォーターマーク */
.hero__contact-watermark {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: clamp(40px, 4.5vw, 80px);
  font-weight: 700;
  color: var(--color-blue);
  opacity: 0.12;
  white-space: nowrap;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.hero__contact-lead {
  font-size: clamp(14px, 1.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: clamp(10px, 1.2vw, 20px);
  position: relative;
}

.hero__contact-body { display: flex; flex-direction: column; gap: 12px; }

/* 受付時間 ＋ 電話番号 横並び */
.hero__info-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 32px);
}

.hero__hours-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.hero__hours-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.hero__hours-label {
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-right: 1px solid #ccc;
  padding-right: 12px;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.hero__hours-list { display: flex; flex-direction: column; gap: 2px; }

.hero__hours-list li {
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  white-space: nowrap;
}

.hero__hours-note {
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 500;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero__tel-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.hero__tel-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.hero__tel-icon { width: 28px; height: 28px; flex-shrink: 0; }

.hero__tel-num {
  font-family: 'Bahnschrift', var(--font-jp);
  font-size: clamp(24px, 2.1vw, 40px);
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: clamp(52px, 5vh, 64px);
  border-radius: 999px;
  font-size: clamp(13px, 1.1vw, 20px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.hero__btn:hover { opacity: 0.85; transform: translateY(-2px); }
.hero__btn img { width: 26px; height: 26px; flex-shrink: 0; }
.hero__btn--line    { background: var(--color-green); }

/* ==========================================================================
   Section Header（共通）
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 60px;
}

.section-header__label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-left: 3px solid var(--color-navy);
  padding-left: 12px;
  flex-shrink: 0;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.section-header__content { display: flex; flex-direction: column; gap: 16px; }

.section-header__en {
  font-family: var(--font-en);
  font-size: clamp(36px, 3.3vw, 64px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  line-height: 1;
}

.section-header__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Intro
   ========================================================================== */
.intro {
  max-width: var(--inner-w);
  margin: 80px auto 0;
  padding: 0 20px;
}

.intro__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.intro__text { flex: 1; }

.intro__practice {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.intro__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.intro__media { flex: 1; }

.intro__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #919191;
  position: relative;
}

.intro__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro__logo {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px var(--section-gap);
}

.intro__logo img {
  width: 100%;
  height: auto;
}

.intro__youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.intro__youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   OUR SERVICE
   ========================================================================== */
.service {
  padding: var(--section-gap) 0;
  background: linear-gradient(to bottom, var(--color-bg-light) 0%, var(--color-white) 100%);
}

.service__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.service__grid {display: flex;flex-direction: column;gap: 15px;}

/* カード共通 */
.service__card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.service__card:hover .service__card-img { transform: scale(1.05); }

.service__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: var(--color-white);
}

.service__card-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 8px;
}

.service__card-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* フルwidth */
.service__card--full {
  height: 370px;
}

.service__card--full .service__card-img {
  width: 100%;
  height: 100%;
}

/* 2カラム */
.service__row {display: flex;gap: 15px;}

.service__row--2col .service__card {
  flex: 1;
  height: 370px;
}

/* 3カラム */
.service__row--3col .service__card {
  flex: 1;
  height: 370px;
}

/* ==========================================================================
   OUR STRENGTHS
   ========================================================================== */
.strength {
  padding: var(--section-gap) 0;
}

.strength__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.strength__list { display: flex; flex-direction: column; gap: 60px; }

.strength__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.strength__item--reverse {
  direction: rtl;
}

.strength__item--reverse > * { direction: ltr; }

.strength__item-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.strength__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strength__item-body { display: flex; flex-direction: column; gap: 24px; position: relative; }

.strength__num {
  font-family: var(--font-en);
  font-size: 128px;
  font-weight: 700;
  color: var(--color-bg-light);
  letter-spacing: 0.08em;
  line-height: 1;
  position: absolute;
  top: -32px;
  right: -20px;
  pointer-events: none;
  z-index: 0;
}

.strength__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}

.strength__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Nav Cards（ご相談の流れ・料金・弁護士紹介）
   ========================================================================== */
.nav-cards {
  padding: var(--section-gap) 0 var(--section-gap);
}

.nav-cards__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.nav-card:hover .nav-card__img { transform: scale(1.04); }

.nav-card__img-wrap {
  height: 370px;
  overflow: hidden;
}

.nav-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nav-card__label-wrap {
  position: absolute;
  top: 0;
  left: 0;
}

.nav-card__label-box {
  background: var(--color-white);
  border-radius: 0 0 10px 0;
  padding: 14px 20px 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.nav-card__sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-card__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-card__arrow {
  display: none;
}

.nav-card__title::after {
  content: '';
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002877' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center / 14px no-repeat;
  flex-shrink: 0;
}

.nav-cards__sub-group {
  display: flex;
  gap: 15px;
}

.nav-card--half .nav-card__img-wrap { height: 470px; }

/* ==========================================================================
   VOICE
   ========================================================================== */
.voice {
  background: var(--color-bg-light);
  padding: var(--section-gap) 0;
}

.voice__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
  /* overflow:hidden はJSが設定 */
}

.voice__slider {
  position: relative;
  /* JSがoverflow:visible / paddingTop:60px / marginTop:-60px を設定 */
}

.voice__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice__card {
  background: var(--color-white);
  padding: 72px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.voice__avatar {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-light);
}

.voice__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__body { width: 100%; }

.voice__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 12px;
}

.voice__category {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: right;
  margin-bottom: 8px;
  line-height: 2;
}

.voice__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 2;
}

.voice__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.voice__controls {
  position: absolute;
  top: calc(50% + 30px); /* JSのpaddingTop:60px分を補正 */
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.voice__btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  flex-shrink: 0;
}

.voice__btn:hover { background: var(--color-navy); color: var(--color-white); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/faq-bg.jpg') center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.faq__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.faq__list { display: flex; flex-direction: column; gap: 20px; }

.faq__item {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
  background: #fafafa;
}

.faq__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.faq__marker--q { background: var(--color-blue); }
.faq__marker--a { background: var(--color-navy); }

.faq__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  flex: 1;
}

.faq__answer .faq__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.faq__toggle {
  margin-left: auto;
  font-size: 24px;
  color: var(--color-navy);
  flex-shrink: 0;
}

.faq__more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.faq__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 85px;
  border: 2px solid var(--color-navy);
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}

.faq__more-btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ==========================================================================
   Contact CTA
   ========================================================================== */
.contact-cta {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
}

.contact-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 119, 0.85);
}

.contact-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-cta__en {
  font-family: var(--font-en);
  font-size: 128px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: -20px;
}

.contact-cta__title {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.contact-cta__tel-block {
  margin-bottom: 32px;
}

.contact-cta__tel-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.contact-cta__tel-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-cta__tel-icon { width: 32px; height: 32px; }

.contact-cta__tel-num {
  font-family: 'Bahnschrift', var(--font-jp);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.contact-cta__btn-group {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.contact-cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  height: 80px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0 48px;
}

.contact-cta__btn:hover { opacity: 0.85; transform: translateY(-2px); }
.contact-cta__btn img { width: 30px !important; height: 30px !important; flex-shrink: 0; object-fit: contain; max-width: 30px; max-height: 30px; }
.contact-cta__btn--reserve { background: var(--color-blue); }
.contact-cta__btn--line    { background: var(--color-green); }

.contact-cta__btn-arrow {
  position: absolute;
  right: 24px;
  font-size: 22px;
  font-weight: 400;
  opacity: 0.8;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-bg-gray);
  padding: 60px 0 0;
}

.footer__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  border-bottom: 1px solid var(--color-border);
}

/* 左：ロゴ＋住所 */
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.footer__logo-wrap { display: inline-block; }
.footer__logo { height: 56px; width: auto; object-fit: contain; }

.footer__address {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-base);
  line-height: var(--lh-base);
}

/* 右：ナビ2列 */
.footer__nav {
  display: flex;
  gap: 48px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__nav-link {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-base);
  line-height: var(--lh-base);
  transition: color var(--transition-fast);
}

.footer__nav-link:hover { color: var(--color-blue); }

/* ボトム */
.footer__bottom {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-base);
}

.footer__pagetop {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: var(--color-navy);
  transition: opacity var(--transition-fast);
}

.footer__pagetop:hover { opacity: 0.7; }

/* ==========================================================================
   Responsive — Tablet (〜1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  :root { --inner-w: 100%; }

  .header__nav-list { gap: 20px; }
  .header__nav-link { font-size: 13px; }

  .strength__item { gap: 40px; }
  .strength__num { font-size: 80px; }

  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__nav { gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  :root {
    --header-h: 60px;
    --section-gap: 60px;
  }

  /* Header */
  .header__nav,
  .header__contact { display: none; }

  .header__inner { padding: 0 14px; justify-content: space-between; }
  .header__logo { height: 36px; }

  .header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header__mobile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .header__mobile-icon--tel { background: var(--color-navy); }
  .header__mobile-icon--mail { background: var(--color-blue); }

  .header__mobile-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
  }

  .header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .header__menu-toggle span {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--color-black);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: block;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, calc(100vw - 44px));
    height: 100dvh;
    overflow-y: auto;
    background: var(--color-white);
    padding: 72px 18px 28px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

  .mobile-menu__close {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu__close::before,
  .mobile-menu__close::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 2px;
    width: 28px;
    height: 1px;
    background: var(--color-black);
  }

  .mobile-menu__close::before { transform: rotate(45deg); }
  .mobile-menu__close::after { transform: rotate(-45deg); }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 36px;
    border-bottom: 1px solid #707070;
    padding: 0 28px 0 2px;
    color: var(--color-black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .mobile-menu__link::after {
    content: '›';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-blue);
    font-size: 28px;
    line-height: 1;
  }

  .mobile-menu__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }

  .mobile-menu__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-black);
    font-family: 'Bahnschrift', var(--font-jp);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .mobile-menu__tel img {
    width: 28px;
    height: 28px;
  }

  .mobile-menu__hours {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .mobile-menu__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 46px;
    margin-top: 12px;
    border-radius: 999px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-menu__btn::after {
    content: '›';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-menu__btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
  }

  .mobile-menu__btn--line { background: var(--color-green); }
  .mobile-menu__btn--mail { background: var(--color-blue); }

  body.mobile-menu-open { overflow: hidden; }

  /* Hero */
  .hero {
    height: calc(100svh - var(--header-h));
    min-height: 560px;
    padding-top: 0;
    margin-top: var(--header-h);
  }

  .hero__bg-img {
    object-position: 58% top;
  }

  .hero__inner {
    height: 100%;
    min-height: 0;
    display: block;
  }

  .hero__copy {
    position: absolute;
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 200px;
    padding: 0;
  }

  .hero__title {
    gap: 8px;
  }

  .hero__title-bar {
    padding: 8px 16px;
  }

  .hero__title-text {
    font-size: clamp(28px, 8.5vw, 36px);
    letter-spacing: 0.08em;
  }

  .hero__catch {
    margin-top: 8px;
    padding-left: 3px;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  }

  .hero__contact {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    width: auto;
    padding: 10px 12px 8px;
  }

  .hero__contact-lead {
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .hero__contact-body { gap: 0; }
  .hero__info-row { align-items: center; gap: 8px; }
  .hero__hours-panel { gap: 2px; width: 42%; }
  .hero__tel-panel { gap: 6px; width: 58%; }
  .hero__hours-block { gap: 6px; }
  .hero__hours-label { font-size: 10px; min-height: 48px; padding-right: 6px; }
  .hero__hours-list li { font-size: 10px; line-height: 1.5; letter-spacing: 0.02em; }
  .hero__hours-note { font-size: 10px; letter-spacing: 0.02em; }
  .hero__tel-block { justify-content: center; gap: 4px; }
  .hero__tel-icon { width: 20px; height: 20px; }
  .hero__tel-num { font-size: 18px; letter-spacing: 0.08em; }
  .hero__btn { height: 30px; gap: 6px; font-size: 10px; letter-spacing: 0.04em; }
  .hero__btn img { width: 18px; height: 18px; }
  .hero__contact-watermark { display: none; }

  /* Section Header */
  .section-header { flex-direction: column; gap: 16px; margin-bottom: 32px; }
  .section-header__label { writing-mode: horizontal-tb; min-height: auto; padding: 0 0 0 12px; }
  .section-header__en { font-size: clamp(28px, 8vw, 48px); }
  .section-header__desc { font-size: 14px; }

  /* Intro */
  .intro { margin-top: 40px; }
  .intro__inner { flex-direction: column; }
  .intro__desc { font-size: 16px; }

  /* Service */
  .service__card--full,
  .service__row--2col .service__card,
  .service__row--3col .service__card { height: 240px; }
  .service__row--2col,
  .service__row--3col { flex-direction: column; }
  .service__card-title { font-size: 22px; }
  .service__card-desc { display: none; }

  /* Strength */
  .strength__item { grid-template-columns: 1fr; gap: 24px; }
  .strength__item--reverse { direction: ltr; }
  .strength__num { font-size: 60px; }
  .strength__title { font-size: 22px; }
  .strength__desc { font-size: 14px; }

  /* Nav Cards */
  .nav-card__img-wrap,
  .nav-card--half .nav-card__img-wrap { height: 220px; }
  .nav-cards__sub-group { flex-direction: column; }
  .nav-card__label-box { padding: 10px 14px; }
  .nav-card__title { font-size: 16px; gap: 8px; }
  .nav-card__title::after { width: 20px; height: 20px; }
  .nav-card__sub { font-size: 11px; }

  /* Voice */
  .voice__track { grid-template-columns: 1fr; }
  .voice__avatar { margin-top: 0; }

  /* FAQ */
  .faq__text { font-size: 15px; }
  .faq__more-btn { width: 100%; font-size: 18px; height: 64px; }

  /* Contact CTA */
  .contact-cta__en { font-size: 56px; }
  .contact-cta__title { font-size: 36px; }
  .contact-cta__tel-num { font-size: 32px; }
  .contact-cta__btn-group { flex-direction: column; align-items: center; }
  .contact-cta__btn {
    box-sizing: border-box;
    width: 100%;
    max-width: 340px;
    height: 72px;
    min-height: 72px;
    padding: 0 48px 0 28px;
    font-size: 18px;
    line-height: 1.4;
  }

  /* Footer */
  .footer__inner { padding: 0 16px 32px; }
  .footer__logo { height: 40px; }
}


/* ========================================
   service.css
   ======================================== */
/* ==========================================================================
   service.css — 業務についてページ固有スタイル
   共通スタイル（style.css）を前提とする
   ========================================================================== */

/* ==========================================================================
   Header active state
   ========================================================================== */
.header__nav-link--active {
  color: var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: 2px;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
  position: relative;
  height: 650px;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.page-hero__en {
  font-family: var(--font-en);
  font-size: clamp(64px, 6.7vw, 128px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
  line-height: 1;
}

.page-hero__title {
  font-size: clamp(24px, 1.67vw, 32px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1;
}

.page-hero__lead {
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* パンくず */
.page-hero__breadcrumb {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 0;
}

.breadcrumb {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb__item {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '>';
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__link {
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.breadcrumb__link:hover { opacity: 1; }

.breadcrumb__item--current { opacity: 0.8; }

/* ==========================================================================
   Service Nav（ページ内ナビ）
   ========================================================================== */
.service-nav {
  background: var(--color-white);
  padding: 40px 0 60px;
  border-bottom: 1px solid #e0e0e0;
}

.service-nav__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-nav__row {
  display: flex;
  gap: 16px;
}

.service-nav__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  padding: 0 24px;
  white-space: nowrap;
}

.service-nav__btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* ==========================================================================
   Service Section（各業務セクション）
   ========================================================================== */
.service-main {
  background: var(--color-white);
}

.service-section {
  padding: 80px 0;
}

.service-section--alt {
  background: var(--color-bg-light);
}

.service-section__head {
  text-align: center;
  margin-bottom: 56px;
}

.service-section__title {
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 20px;
}

.service-section__deco {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-navy) 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   Worry Block（お悩みセクション）
   ========================================================================== */
.worry-block {
  position: relative;
  padding: 64px 20px;
  margin-bottom: 60px;
  overflow: hidden;
}

.worry-block__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.worry-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worry-block__overlay {
  position: absolute;
  inset: 0;
  background: rgba(194, 237, 255, 0.75);
}

.worry-block__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner-w);
  margin: 0 auto;
}

.worry-block__heading {
  font-size: clamp(22px, 1.875vw, 36px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 20px;
}

.worry-block__divider {
  width: 609px;
  max-width: 100%;
  height: 2px;
  background: var(--color-black);
  margin: 0 auto 40px;
}

.worry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
}

.worry-list__item {
  background: var(--color-white);
  padding: 20px 24px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: var(--lh-base);
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 73px;
}

/* チェックボックスアイコン（CSSで生成） */
.worry-list__item::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 2px solid var(--color-blue);
  border-radius: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23217DD8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 20px no-repeat;
}

.worry-list__icon {
  display: none; /* SVGファイルが空のため非表示 */
}

/* ==========================================================================
   Service Content（本文エリア）
   ========================================================================== */
.service-content {
  padding: 0 20px;
}

.service-content__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
}

.service-content__lead {
  font-size: clamp(20px, 1.875vw, 36px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-content__sub-lead {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 2;
  margin-bottom: 60px;
}

/* ==========================================================================
   Service Detail（テキスト＋画像）
   ========================================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * { direction: ltr; }

.service-detail__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%); /* 画像が右側：左上カット */
}

/* 画像が左側の場合：右上カット（テキスト方向に向ける） */
.service-detail--reverse .service-detail__img-wrap {
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%);
}

.service-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__subtitle {
  font-size: clamp(22px, 1.875vw, 36px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 24px;
}

.service-detail__body {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Responsive — Tablet (〜1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  .service-detail {
    gap: 40px;
  }

  .service-nav__btn {
    font-size: 16px;
    height: 54px;
  }
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  /* Page Hero */
  .page-hero {
    height: auto;
    min-height: 340px;
    padding-top: var(--header-h);
  }

  .page-hero__en { font-size: 48px; }
  .page-hero__title { font-size: 20px; }
  .page-hero__lead { font-size: 13px; }

  /* Service Nav */
  .service-nav { padding: 24px 0 32px; }
  .service-nav__row { flex-wrap: wrap; gap: 10px; }
  .service-nav__btn { flex: 0 1 calc(50% - 5px); font-size: 14px; height: 52px; }

  /* Section */
  .service-section { padding: 48px 0; }
  .service-section__title { font-size: 28px; }

  /* Worry Block */
  .worry-block { padding: 40px 16px; }
  .worry-block__heading { font-size: 18px; }
  .worry-block__divider { width: 100%; }
  .worry-list { grid-template-columns: 1fr; gap: 10px; }
  .worry-list__item { font-size: 15px; min-height: 56px; padding: 12px 16px; }

  /* Service Content */
  .service-content__lead { font-size: 18px; }
  .service-content__sub-lead { font-size: 14px; margin-bottom: 32px; }

  /* Service Detail */
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail--reverse { direction: ltr; }
  .service-detail__subtitle { font-size: 20px; }
  .service-detail__body { font-size: 15px; }
  .service-detail__img-wrap { clip-path: none; aspect-ratio: 16/9; }
}


/* ========================================
   price.css
   ======================================== */
/* ==========================================================================
   price.css — 料金ページ固有スタイル
   style.css + service.css を前提とする
   ========================================================================== */

/* ==========================================================================
   Price Main
   ========================================================================== */
.price-main {
  background: var(--color-white);
}

/* ==========================================================================
   Price Section
   ========================================================================== */
.price-section {
  padding: 80px 0;
}

.price-section--alt {
  background: var(--color-bg-light);
}

.price-section__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.price-section__title {
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 20px;
  position: relative;
}

.price-section__title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-navy) 100%);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ==========================================================================
   Fee Block（各費用ブロック）
   ========================================================================== */
.fee-block {
  margin-top: 48px;
}

.fee-block__title {
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background: var(--color-blue);
  padding: 12px 24px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Fee Table（料金テーブル）
   ========================================================================== */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

.fee-table__row {
  border-bottom: 1px solid #e0e0e0;
}

.fee-table__row:last-child {
  border-bottom: none;
}

.fee-table__label {
  width: 220px;
  min-width: 160px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  background: #f0f6fd;
  vertical-align: top;
  border-right: 2px solid var(--color-blue);
  line-height: 2;
  text-align: left;
}

.fee-table__value {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-black);
  line-height: 2;
  vertical-align: top;
}

/* 初回無料などのハイライト */
.fee-table__note {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue);
}

.fee-table__note--small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-top: 4px;
}

/* 複数報酬行 */
.fee-table__multi {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fee-table__multi-item {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  flex-wrap: wrap;
}

.fee-table__multi-item:last-child {
  border-bottom: none;
}

.fee-table__outcome {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-navy);
  min-width: 180px;
}

.fee-table__amount {
  color: var(--color-black);
}

/* 結果型テーブル（刑事事件）*/
.fee-table--result .fee-table__result-head {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background: var(--color-navy);
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.fee-table--result .fee-table__result-head:last-child {
  border-right: none;
}

.fee-table--result .fee-table__result-label {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #f0f6fd;
  border-right: 2px solid var(--color-blue);
  width: 50%;
}

.fee-table--result .fee-table__result-value {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-black);
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  .price-section { padding: 48px 0; }
  .price-section__title { font-size: 24px; }

  .fee-block { margin-top: 32px; }
  .fee-block__title { font-size: 14px; padding: 10px 16px; }

  .fee-table__label {
    width: 120px;
    min-width: 100px;
    padding: 14px 12px;
    font-size: 14px;
  }

  .fee-table__value {
    padding: 14px 12px;
    font-size: 14px;
  }

  .fee-table__note { font-size: 15px; }

  .fee-table__multi-item {
    flex-direction: column;
    gap: 4px;
  }

  .fee-table__outcome { min-width: auto; }

  .fee-table--result .fee-table__result-label { font-size: 13px; padding: 12px; width: 45%; }
  .fee-table--result .fee-table__result-value { font-size: 13px; padding: 12px; }
  .fee-table--result .fee-table__result-head  { font-size: 13px; padding: 10px 12px; }
}


/* ========================================
   flow.css
   ======================================== */
/* ==========================================================================
   flow.css — ご相談の流れページ固有スタイル
   style.css + service.css を前提とする
   ========================================================================== */

/* ==========================================================================
   Flow Main
   ========================================================================== */
.flow-main {
  padding: 80px 0 60px;
  background: var(--color-white);
}

.flow-main__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ==========================================================================
   Flow Step
   ========================================================================== */
.flow-step {
  position: relative;
}

/* ステップバッジ（円形） */
.flow-step__badge {
  position: relative;
  width: 135px;
  height: 135px;
  margin: 0 auto -67px;
  z-index: 2;
  background: var(--color-navy);
  border-radius: 50%;
}

.flow-step__badge-img {
  display: none;
}

.flow-step__badge-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.flow-step__step-label {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1;
}

.flow-step__step-num {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

/* カード本体 */
.flow-step__card {
  border: 20px solid var(--color-bg-light);
  background: var(--color-white);
  padding: 80px 48px 48px;
}

.flow-step__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* テキスト部分 */
.flow-step__title {
  font-size: clamp(24px, 1.875vw, 36px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.flow-step__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* STEP01 コンタクトエリア */
.flow-step__contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.flow-step__contact-label {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.flow-step__tel-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.flow-step__tel-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.flow-step__tel-num {
  font-family: 'Bahnschrift', var(--font-jp);
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 0.08em;
  line-height: 1;
}

.flow-step__contact-hours {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* ボタングループ */
.flow-step__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-step__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 70px;
  border-radius: 50px;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  transition: opacity 0.2s, transform 0.2s;
}

.flow-step__btn:hover { opacity: 0.85; transform: translateY(-2px); }
.flow-step__btn img { width: 30px; height: 30px; flex-shrink: 0; }
.flow-step__btn--reserve { background: var(--color-blue); }
.flow-step__btn--line    { background: var(--color-green); }

/* 画像部分 */
.flow-step__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

.flow-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Responsive — Tablet (〜1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  .flow-step__card { padding: 80px 32px 32px; }
  .flow-step__content { gap: 32px; }
  .flow-step__title { font-size: 28px; }
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  .flow-main { padding: 48px 0 32px; }
  .flow-main__inner { gap: 48px; }

  .flow-step__badge { width: 96px; height: 96px; margin-bottom: -48px; }
  .flow-step__step-label { font-size: 14px; }
  .flow-step__step-num  { font-size: 38px; }

  .flow-step__card { border-width: 12px; padding: 64px 20px 28px; }
  .flow-step__content { grid-template-columns: 1fr; gap: 20px; }

  .flow-step__title { font-size: 22px; }
  .flow-step__desc  { font-size: 14px; }

  .flow-step__tel-num { font-size: 28px; }
  .flow-step__btn { height: 56px; font-size: 15px; }
  .flow-step__img-wrap { clip-path: none; aspect-ratio: 16/9; }
}


/* ========================================
   faq.css
   ======================================== */
/* ==========================================================================
   faq.css — よくある質問ページ固有スタイル
   style.css + service.css を前提とする
   ========================================================================== */

/* ==========================================================================
   FAQ Main
   ========================================================================== */
.faq-main {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.faq-main__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   FAQ List
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================================================
   FAQ Item（<details> アコーディオン）
   ========================================================================== */
.faq-item {
  border: 1px solid #e0e0e0;
  background: var(--color-white);
}

/* Q 部分 */
.faq-item__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}

.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::marker { content: ''; display: none; }

.faq-item[open] .faq-item__question {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item__question:hover {
  background: #f5f8ff;
}

/* Q/A マーカー */
.faq-item__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
  letter-spacing: 0;
}

.faq-item__marker--q { background: var(--color-blue); }
.faq-item__marker--a { background: var(--color-navy); }

/* Q テキスト */
.faq-item__q-text {
  flex: 1;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* 開閉トグルアイコン */
.faq-item__toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  margin-left: 8px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 水平線 */
.faq-item__toggle::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

/* 垂直線（開いた時は非表示） */
.faq-item__toggle::after {
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-item__toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* A 部分 */
.faq-item__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: #fafafa;
}

.faq-item__a-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  .faq-main { padding: 48px 0 64px; }

  .faq-item__question { padding: 16px 16px; gap: 12px; }
  .faq-item__answer   { padding: 16px 16px; gap: 12px; }

  .faq-item__marker { width: 36px; height: 36px; font-size: 17px; }
  .faq-item__q-text { font-size: 14px; }
  .faq-item__a-text { font-size: 14px; }

  .faq-item__toggle { width: 24px; height: 24px; }
}


/* ========================================
   about.css
   ======================================== */
/* ==========================================================================
   about.css — 事務所案内ページ固有スタイル
   ========================================================================== */

/* ==========================================================================
   Tab Nav（丸ボタン形式）
   ========================================================================== */
.about-tab {
  padding: 40px 0;
  background: var(--color-white);
}

.about-tab__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 20px;
}

.about-tab__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 65px;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  background: var(--color-white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  padding: 0 24px;
  white-space: nowrap;
}

.about-tab__btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.about-tab__arrow {
  font-size: 12px;
  opacity: 0.6;
}

/* ==========================================================================
   About Main
   ========================================================================== */
.about-main {
  background: var(--color-white);
}

/* ==========================================================================
   Introduction Section
   ========================================================================== */
.intro-section {
  padding: 60px 0 80px;
}

.intro-section__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* セクション英語タイトル */
.intro-heading {
  margin-bottom: 48px;
}

.intro-heading__en {
  font-family: var(--font-en);
  font-size: clamp(36px, 3.3vw, 64px);
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}

.intro-heading__ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-black);
}

/* ==========================================================================
   プロフィールブロック（テーブル左＋写真右）
   ========================================================================== */
.profile-block {
  margin-bottom: 56px;
}

.profile-block__title,
.career-block__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 16px;
  border-left: 4px solid var(--color-blue);
  margin-bottom: 24px;
  line-height: 1;
}

.profile-block__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* 弁護士写真 */
.attorney-photo-wrap {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.attorney-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* ==========================================================================
   共通テーブル
   ========================================================================== */
.about-table {
  width: 100%;
  border-collapse: collapse;
}

.about-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.about-table tr:first-child {
  border-top: 1px solid #e0e0e0;
}

.about-table__label {
  width: 160px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  background: var(--color-bg-light);
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
}

.about-table__value {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  vertical-align: top;
}

.about-table__value a {
  color: var(--color-blue);
}

.about-table__list {
  list-style: disc;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-table__list li {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
}

/* フル幅テーブル */
.about-table--full .about-table__label {
  width: 180px;
}

/* ==========================================================================
   経歴ブロック
   ========================================================================== */
.career-block {
  margin-bottom: 56px;
}

.career-list {
  list-style: none;
  border-top: 1px solid #e0e0e0;
}

.career-list__item {
  display: flex;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  align-items: flex-start;
}

.career-list__year {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}

.career-list__desc {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* ==========================================================================
   挨拶ブロック
   ========================================================================== */
.greeting-block {
  padding: 48px 0 0;
  border-top: 1px solid #e0e0e0;
}

.greeting-block__title {
  font-size: clamp(18px, 1.67vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.5;
}

.greeting-block__body {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.greeting-block__quote {
  border-left: 4px solid var(--color-blue);
  padding: 16px 24px;
  background: var(--color-bg-light);
  margin: 20px 0;
  font-style: normal;
}

.greeting-block__quote p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--color-navy);
}

/* ==========================================================================
   Office Section
   ========================================================================== */
.office-section {
  padding: 80px 0 100px;
  background: var(--color-bg-light);
}

.office-section__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.office-heading {
  text-align: center;
  margin-bottom: 48px;
}

.office-heading__en {
  font-family: var(--font-en);
  font-size: clamp(48px, 5vw, 96px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}

.office-heading__ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-black);
}

/* テーブル（白背景） */
.about-table--full {
  background: var(--color-white);
  margin-bottom: 40px;
}

/* 地図 */
.office-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ddd;
  aspect-ratio: 586 / 440;
  background: #f2f2f2;
}

.office-map__img,
.office-map__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ==========================================================================
   Responsive — Tablet (〜900px)
   ========================================================================== */
@media (max-width: 900px) {
  .profile-block__layout {
    grid-template-columns: 1fr 220px;
    gap: 32px;
  }
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  .about-tab { padding: 24px 0; }
  .about-tab__btn { font-size: 15px; height: 52px; }

  .intro-section { padding: 40px 0 60px; }
  .intro-heading__en { font-size: 32px; }

  .profile-block__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .attorney-photo-wrap { position: static; }
  .attorney-photo { max-width: 200px; margin: 0 auto; }

  .about-table__label { width: 110px; font-size: 13px; padding: 14px 12px; }
  .about-table__value { font-size: 13px; padding: 14px 12px; }
  .about-table__list li { font-size: 13px; }

  .career-list__year { min-width: 72px; font-size: 12px; }
  .career-list__desc { font-size: 14px; }

  .office-section { padding: 48px 0 64px; }
  .office-heading__en { font-size: 48px; }
  .about-table--full .about-table__label { width: 110px; }
}


/* ========================================
   contact.css
   ======================================== */
/* ==========================================================================
   contact.css — お問い合わせページ固有スタイル
   ========================================================================== */

/* ==========================================================================
   Contact Main
   ========================================================================== */
.contact-main {
  background: var(--color-white);
}

/* ==========================================================================
   セクションタイトル（共通）
   ========================================================================== */
.contact-section-title {
  text-align: center;
  margin-bottom: 32px;
}

.contact-section-title__text {
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 12px;
}

.contact-section-title__deco {
  width: 80px;
  height: 3px;
  background: var(--color-navy);
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.contact-intro {
  padding: 80px 0 60px;
}

.contact-intro__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.contact-intro__body {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-black);
}

/* ==========================================================================
   Phone CTA
   ========================================================================== */
.phone-cta {
  padding: 0 0 80px;
}

.phone-cta__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.phone-cta__box {
  border: 3px solid var(--color-navy);
  background: var(--color-white);
}

.phone-cta__header {
  background: var(--color-navy);
  padding: 20px;
  text-align: center;
}

.phone-cta__header-text {
  font-size: clamp(22px, 1.875vw, 36px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.phone-cta__body {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phone-cta__tel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-cta__tel-icon {
  width: 36px;
  height: 36px;
}

.phone-cta__tel-num {
  font-family: 'Bahnschrift', var(--font-jp);
  font-size: clamp(40px, 3.3vw, 64px);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  line-height: 1;
}

.phone-cta__hours {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
}

/* ==========================================================================
   Form Section
   ========================================================================== */
.contact-form-section {
  padding: 0 0 100px;
  background: var(--color-white);
}

.contact-form-section--standalone {
  padding-top: 80px;
}

.contact-form-section__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-section__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 60px;
}

/* ==========================================================================
   Form Fields
   ========================================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-field {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 0;
}

.form-field--vertical {
  align-items: flex-start;
}

.form-field--textarea {
  align-items: flex-start;
}

/* ラベル */
.form-field__label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.form-field__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-field--vertical .form-field__fieldset {
  display: contents;
}

.form-field--vertical .form-field__checkboxes {
  grid-column: 2;
}

.form-field__fieldset legend {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  width: 380px;
  float: left;
}

/* 必須バッジ */
.form-field__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 入力欄コンテナ */
.form-field__input-wrap {
  width: 100%;
}

/* テキスト入力 */
.form-field__input {
  width: 100%;
  height: 65px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-jp);
  color: var(--color-black);
  background: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
  outline: none;
}

.form-field__input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(33, 125, 216, 0.15);
}

.form-field__input::placeholder {
  color: rgba(0,0,0,0.4);
  font-weight: 700;
}

/* テキストエリア */
.form-field__textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-jp);
  color: var(--color-black);
  background: var(--color-white);
  resize: vertical;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.8;
}

.form-field__textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(33, 125, 216, 0.15);
}

.form-field__textarea::placeholder {
  color: rgba(0,0,0,0.4);
  font-weight: 700;
}

/* チェックボックスグループ */
.form-field__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

.form-field__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.form-field__checkbox {
  width: 24px;
  height: 24px;
  accent-color: var(--color-blue);
  cursor: pointer;
  flex-shrink: 0;
}

/* ==========================================================================
   Privacy
   ========================================================================== */
.form-privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}

.form-privacy__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.form-privacy__checkbox {
  width: 24px;
  height: 24px;
  accent-color: var(--color-navy);
  cursor: pointer;
  flex-shrink: 0;
}

.form-privacy__link-wrap {
  font-size: 16px;
}

.form-privacy__link {
  color: var(--color-blue);
  text-decoration: underline;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Submit Button
   ========================================================================== */
.form-submit {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.form-submit__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-jp);
  transition: opacity 0.2s, transform 0.2s;
}

.form-submit__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.form-submit__btn--back {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
}

/* ==========================================================================
   Contact Confirm
   ========================================================================== */
.contact-confirm {
  border-top: 1px solid #d8d8d8;
  margin-bottom: 48px;
}

.contact-confirm__row {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-bottom: 1px solid #d8d8d8;
}

.contact-confirm__label,
.contact-confirm__value {
  padding: 24px 28px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.contact-confirm__label {
  background: var(--color-bg-light);
  font-weight: 700;
}

.contact-confirm__value {
  font-weight: 500;
  white-space: normal;
  overflow-wrap: anywhere;
}

.contact-confirm__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.contact-thanks {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 40px;
  text-align: center;
  background: var(--color-white);
  border-top: 4px solid var(--color-blue);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.contact-thanks__en {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.contact-thanks__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.contact-thanks__body {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.contact-thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 64px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.2s, transform 0.2s;
}

.contact-thanks__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  .contact-intro { padding: 48px 0 32px; }
  .contact-intro__body { font-size: 14px; text-align: left; }

  .phone-cta { padding: 0 0 48px; }
  .phone-cta__header-text { font-size: 18px; }
  .phone-cta__tel-num { font-size: 36px; }
  .phone-cta__hours { font-size: 14px; }

  .contact-form-section { padding: 0 0 60px; }
  .contact-form-section--standalone { padding-top: 48px; }
  .contact-form-section__desc { font-size: 14px; text-align: left; margin-bottom: 32px; }

  .contact-form { gap: 28px; }

  /* モバイル: 縦並びレイアウト */
  .form-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-field__fieldset legend {
    width: 100%;
    float: none;
    padding: 0 0 8px;
  }

  .form-field__label { padding: 0; font-size: 16px; }

  .form-field__input { height: 52px; font-size: 16px; }
  .form-field__textarea { font-size: 16px; }

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

  .form-privacy__label { font-size: 16px; }
  .form-privacy__text { font-size: 15px; }

  .form-submit__btn { width: 100%; max-width: 320px; height: 64px; font-size: 20px; }

  .contact-confirm {
    margin-bottom: 32px;
  }

  .contact-confirm__row {
    grid-template-columns: 1fr;
  }

  .contact-confirm__label,
  .contact-confirm__value {
    padding: 16px;
    font-size: 14px;
  }

  .contact-confirm__actions {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .contact-thanks {
    padding: 48px 20px;
  }

  .contact-thanks__title {
    font-size: 22px;
  }

  .contact-thanks__body {
    font-size: 14px;
    text-align: left;
  }

  .contact-thanks__btn {
    width: 100%;
    max-width: 280px;
  }
}


/* ========================================
   policy.css
   ======================================== */
/* ==========================================================================
   policy.css — プライバシーポリシーページ固有スタイル
   ========================================================================== */

.policy-main {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.policy-main__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* 前文 */
.policy-body__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

/* 各条項 */
.policy-section {
  margin-bottom: 40px;
}

.policy-section__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--color-black);
}

.policy-section__body {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.policy-section__list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-section__list li {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-left: 1em;
  position: relative;
}

.policy-section__list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.policy-section__address {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

/* Mobile */
@media (max-width: 767px) {
  .policy-main { padding: 48px 0 64px; }
  .policy-body__lead { font-size: 14px; }
  .policy-section__title { font-size: 16px; }
  .policy-section__body,
  .policy-section__list li,
  .policy-section__address { font-size: 14px; }
}


/* ========================================
   blog.css
   ======================================== */
/* ==========================================================================
   blog.css — ブログ一覧ページ固有スタイル
   ========================================================================== */

/* ==========================================================================
   Blog Main
   ========================================================================== */
.blog-main {
  padding: 60px 0 100px;
  background: var(--color-white);
}

.blog-main__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Category Filter
   ========================================================================== */
.blog-filter {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-filter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  min-width: 345px;
  padding: 0 32px;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  background: var(--color-white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-filter__btn:hover,
.blog-filter__btn--active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* ==========================================================================
   Blog Grid（2カラム）
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  margin-bottom: 60px;
}

/* ==========================================================================
   Blog Card
   ========================================================================== */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.blog-card:hover { opacity: 0.85; }
.blog-card:hover .blog-card__img { transform: scale(1.04); }

.blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* カテゴリタグ */
.blog-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 155px;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.blog-card__tag--news { background: var(--color-blue); }
.blog-card__tag--blog { background: var(--color-navy); }

.blog-card__date {
  font-size: 16px;
  font-weight: 700;
  color: #d9d9d9;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.blog-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--color-black);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-pagination__page,
.blog-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background: var(--color-white);
  transition: background 0.2s, color 0.2s;
}

.blog-pagination__page:hover,
.blog-pagination__btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.blog-pagination__page--active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.blog-pagination__dots {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  padding: 0 4px;
}

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  .blog-main { padding: 40px 0 64px; }

  .blog-filter { gap: 10px; }
  .blog-filter__btn { min-width: 0; flex: 1; height: 52px; font-size: 15px; padding: 0 16px; }

  .blog-grid { grid-template-columns: 1fr; gap: 32px; }

  .blog-card__tag { font-size: 14px; height: 28px; min-width: 100px; }
  .blog-card__date { font-size: 13px; }
  .blog-card__title { font-size: 16px; }

  .blog-pagination__page,
  .blog-pagination__btn { width: 36px; height: 36px; font-size: 16px; }
}


/* ========================================
   blog-detail.css
   ======================================== */
/* ==========================================================================
   blog-detail.css — ブログ記事詳細ページ固有スタイル
   ========================================================================== */

/* ==========================================================================
   Article Main
   ========================================================================== */
.article-main {
  padding: 60px 0 100px;
  background: var(--color-white);
}

.article-main__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ==========================================================================
   Article Header
   ========================================================================== */
.article-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-header__meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-header__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--color-black);
}

/* ==========================================================================
   Article Image
   ========================================================================== */
.article-img-wrap {
  width: 100%;
  overflow: hidden;
}

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

/* ==========================================================================
   Article Body
   ========================================================================== */
.article-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-black);
  margin-bottom: 0;
  padding-bottom: 0;
}

.article-body p + p {
  margin-top: 1em;
}

/* ==========================================================================
   Divider
   ========================================================================== */
.article-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

/* ==========================================================================
   Article Navigation
   ========================================================================== */
.article-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.article-nav__prev,
.article-nav__next {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  transition: opacity 0.2s;
}

.article-nav__prev:hover,
.article-nav__next:hover { opacity: 0.6; }

.article-nav__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 90px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.article-nav__back:hover { opacity: 0.75; }

/* ==========================================================================
   Responsive — Mobile (〜767px)
   ========================================================================== */
@media (max-width: 767px) {
  .article-main { padding: 40px 0 64px; }
  .article-main__inner { gap: 32px; }

  .article-header__title { font-size: 18px; }
  .article-body p { font-size: 14px; }

  .article-nav { gap: 16px; }
  .article-nav__prev,
  .article-nav__next { font-size: 14px; }
  .article-nav__back { width: 220px; height: 64px; font-size: 18px; }
}

/* ==========================================================================
   PATCH — 追加修正・整合性改善
   ========================================================================== */

/* ヘッダー：スクロール時に影 */
.header {
  transition: box-shadow 0.3s;
}
.header--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

/* TOPページもPDFデザインに合わせて白背景ヘッダーを維持 */
.home .header {
  background: var(--color-white);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.home .header__nav-link,
.home .header__tel-num,
.home .header__hours {
  color: var(--color-black);
  transition: color 0.3s ease;
}
.home .header__tel-icon,
.home .header__cta-icon {
  filter: none;
  transition: filter 0.3s ease;
}

/* スクロール後：白背景に戻す */
.home .header--scrolled {
  background: var(--color-white);
}
.home .header--scrolled .header__nav-link,
.home .header--scrolled .header__tel-num,
.home .header--scrolled .header__hours {
  color: var(--color-black);
}
.home .header--scrolled .header__tel-icon,
.home .header--scrolled .header__cta-icon {
  filter: none;
}

/* イントロセクション：動画プレースホルダーを改善 */
.intro__video {
  background: #909090;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__video::before {
  content: '';
}

/* イントロの大ロゴ画像：センタリング */
.intro__logo {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.intro__logo img {
  max-width: 800px;
  width: 100%;
  height: auto;
}

/* VOICEスライダー：JSロード前のフォールバック */
.voice__track {
  transition: transform 0.4s ease;
}
.voice__track:not([style]) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* FAQアイテム：アニメーション */
.faq-item {
  overflow: hidden;
}
.faq-item[open] .faq-item__question {
  border-bottom: 1px solid #e0e0e0;
}
.faq-item__answer {
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FAQ（トップページ版）：初期非表示 */
.faq__answer {
  display: none;
}

/* NAVカード：ラベルの縦並び整理 */
.nav-card__label-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* フッターリンク：色補正 */
.footer__nav-link:hover { color: var(--color-blue); }
.footer__pagetop:hover  { opacity: 0.7; }

/* ページトップボタン：カーソル */
.footer__pagetop { cursor: pointer; }

/* サービスカード：ホバー時の画像クリップ */
.service__card { overflow: hidden; }
.service__card:hover .service__card-img {
  transform: scale(1.05);
}

/* service-section の article-body にHTMLタグ許可 */
.service-detail__body br {
  display: block;
  content: '';
  margin: 0.5em 0;
}

/* 料金テーブル：ストライプ */
.fee-table__row:nth-child(even) .fee-table__value {
  background: #fafafa;
}

/* お問い合わせフォームエラー */
.form-errors {
  background: #fff3f3;
  border: 2px solid #e55;
  border-radius: 4px;
  padding: 16px 24px;
  margin-bottom: 32px;
}
.form-errors ul {
  list-style: disc;
  padding-left: 1.5em;
}
.form-errors li {
  font-size: 15px;
  font-weight: 700;
  color: #c33;
  line-height: 2;
}

/* ブログフィルターボタン：選択状態テキスト白 */
.blog-filter__btn--active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* アーカイブページネーション：WP標準の.nav-links対応 */
.blog-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.blog-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background: var(--color-white);
  transition: background 0.2s;
}
.blog-pagination .page-numbers.current {
  background: var(--color-black);
  color: var(--color-white);
}
.blog-pagination .page-numbers:hover:not(.current) {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* アクセシビリティ：フォーカスリング */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}

/* セクション間の区切り線を削除（重複対策） */
.service__grid > * + * { margin-top: 0; }

/* intro inner のメディア比率を正確に */
.intro__media .intro__video {
  aspect-ratio: 16/9;
}

/* モバイル追加修正 */
@media (max-width: 767px) {
  .voice__track:not([style]) {
    grid-template-columns: 1fr;
  }
  .intro__logo img { max-width: 100%; }
  .intro__inner { gap: 24px; }
}



/* ==========================================================================
   PATCH v2 — 全ページ視覚的修正
   ========================================================================== */


/* Section header：縦書きラベルの見た目改善 */
.section-header {
  align-items: flex-start;
}
.section-header__label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  min-height: 100px;
  padding-left: 12px;
}

/* Intro セクション：動画プレースホルダーを非表示にしてスペース確保 */
.intro__inner {
  align-items: center;
}
.intro__video {
  min-height: 200px;
}

/* Worry list：チェックアイコンなしでも見た目を整える */
.worry-list__item {
  position: relative;
  padding-left: 52px;
}
.worry-list__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

/* Service section：セクションタイトル装飾線を太く */
.service-section__deco {
  height: 4px;
  width: 80px;
}

/* FAQ item：summary のリスト記号を消す */
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; display: none; }

/* Contact form：フィールドのグリッドを改善 */
@media (max-width: 900px) {
  .form-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .form-field__label { padding: 0; }
  .form-field__fieldset legend { width: 100%; float: none; padding: 0 0 8px; }
}

/* Blog カード：タグとタイトルの間隔 */
.blog-card__meta {
  margin-top: 12px;
}
.blog-card__title {
  margin-top: 8px;
}

/* About page：タブボタン修正 */
.about-tab__btn--active,
.about-tab__btn:hover {
  background: var(--color-white);
  color: var(--color-blue);
  border-color: var(--color-blue);
}

/* Flow step：バッジの z-index */
.flow-step__badge {
  z-index: 2;
}

/* Price table：全幅の白背景 */
.price-section--alt .fee-table {
  background: var(--color-white);
}

/* Article body：p タグ間のスペース */
.article-body p + p {
  margin-top: 1.5em;
}

/* Footer nav：モバイルで2列表示維持 */
@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__nav-list {
    grid-template-columns: 1fr 1fr;
  }
  .voice__card {
    padding-top: 60px;
  }
  .voice__avatar {
    width: 90px;
    height: 90px;
    top: -45px;
  }
}
