@charset "UTF-8";

/* =========================================================
   チームマサエル ワンカラムLP  -  style.css
   Aesthetic : 和の上質 / 自然 / 落ち着き（動きを抑えた静的な品格）
   Palette   : 和紙クリーム × 杉/苔の緑 × 落款の金   ※グレー不使用
   Type      : Shippori Mincho（見出し） / Zen Kaku Gothic New（本文）
   Motif     : 落款「氣」の印・金の細罫・縦組みの和文ラベル
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* 背景（暖色の和紙トーン） */
  --bg:        #f4eee1;
  --bg-soft:   #faf6ec;
  --bg-panel:  #fffdf7;
  --bg-deep:   #354730; /* 苔・杉の濃緑 */
  --bg-deeper: #2b3a27;

  /* 緑 */
  --sage:      #7d9968;
  --sage-dark: #5b7548;
  --forest:    #3c4f34;

  /* 砂・トープ（グレーの代替） */
  --sand:      #d8c9a8;
  --sand-soft: #e9dfc8;
  --line-rule: #ddceae;

  /* 金（落款・差し色） */
  --gold:      #b08a4f;
  --gold-soft: #c9a96a;

  /* 文字（暖色の濃茶） */
  --ink:       #3c3729;
  --ink-soft:  #6a6150;
  --ink-mute:  #8a8068;

  --line-green: #06c755;
  --white: #ffffff;

  --maxw: 1120px;
  --maxw-narrow: 760px;
  --radius: 4px;       /* 角を抑え、和の端正さを出す */
  --radius-lg: 8px;
  --shadow:      0 18px 48px -24px rgba(53, 71, 48, 0.42);
  --shadow-soft: 0 10px 30px -20px rgba(53, 71, 48, 0.40);

  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--bg);
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.55; margin: 0; letter-spacing: 0.04em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--sage-dark); outline-offset: 3px; border-radius: 2px; }

/* ---------- 和紙テクスチャ（極薄・静的） ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(255, 253, 247, 0.7), transparent 55%),
    radial-gradient(120% 90% at 90% 100%, rgba(216, 201, 168, 0.28), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ---------- スキップリンク ---------- */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  z-index: 3000; background: var(--forest); color: #fff;
  padding: 0.6rem 1.4rem; border-radius: 999px; font-size: 0.85rem;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- レイアウト ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.75rem); }
.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section--soft  { background: var(--bg-soft); }
.section--sand  { background: var(--sand-soft); }
.section--deep  { background: var(--bg-deep); color: #eef0e6; }
.section--deep h2, .section--deep h3 { color: #fbfaf3; }

/* 落款の印（ブランドモチーフ） */
.seal {
  display: inline-grid; place-content: center;
  width: 3.2rem; height: 3.2rem;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-family: var(--serif); font-weight: 700;
  font-size: 1.5rem; line-height: 1;
  background: rgba(255, 253, 247, 0.4);
}
.section--deep .seal { background: rgba(255,255,255,0.05); }

/* セクション見出し */
.section-head { text-align: center; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head .seal { margin-bottom: 1.1rem; }
.section-head__sub {
  display: block;
  font-family: var(--serif);
  font-size: 0.7rem; letter-spacing: 0.46em;
  color: var(--gold); text-indent: 0.46em;
  margin-bottom: 1rem; text-transform: uppercase;
}
.section-head__title { font-size: clamp(1.6rem, 4.4vw, 2.5rem); letter-spacing: 0.08em; }
.section-head__title small {
  display: block; font-family: var(--sans);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.12em;
  color: var(--ink-soft); margin-top: 1rem;
}
.section--deep .section-head__sub { color: var(--gold-soft); }
.section--deep .section-head__title small { color: var(--sand); }

/* 金の細罫リード */
.lead-text {
  max-width: var(--maxw-narrow); margin: 0 auto;
  text-align: center; color: var(--ink-soft);
  font-size: clamp(0.98rem, 2.4vw, 1.1rem);
}

/* ---------- ロゴ画像 ---------- */
.logo-img { display: block; width: auto; object-fit: contain; }
.logo-link { display: inline-flex; align-items: center; }
.logo-img--header { height: 50px; }
.logo-img--footer { height: 88px; margin-inline: auto; }
.logo-img--loader { height: 116px; }

/* ---------- ローダー ---------- */
.loader {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  background: var(--bg);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__name { font-family: var(--serif); letter-spacing: 0.34em; color: var(--ink-soft); font-size: 0.82rem; text-indent: 0.34em; }
.loader__bar { width: 130px; height: 1.5px; background: var(--sand); overflow: hidden; }
.loader__bar::before { content: ""; display: block; width: 40%; height: 100%; background: var(--gold); animation: loaderSlide 1.15s var(--ease) infinite; }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(330%); } }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(244, 238, 225, 0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 138, 79, 0.22);
  transition: background 0.3s var(--ease);
}
.header__inner { max-width: var(--maxw); height: 100%; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.75rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header__nav ul { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 1.8rem); }
.header__nav a { font-size: 0.84rem; letter-spacing: 0.08em; color: var(--ink); position: relative; padding-block: 0.4rem; transition: color 0.25s var(--ease); }
.header__nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease); }
.header__nav a:hover { color: var(--sage-dark); }
.header__nav a:hover::after { width: 100%; }

.header__line {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--line-green); color: var(--white);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.6rem 1.2rem; border-radius: 999px; white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.header__line:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -6px rgba(6, 199, 85, 0.5); }

.header__form {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--forest); color: var(--white) !important;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.6rem 1.2rem; border-radius: 999px; white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.header__form::after { display: none; }
.header__form:hover { color: var(--white) !important; background: var(--bg-deeper, #2b3a27); transform: translateY(-1px); box-shadow: 0 8px 18px -6px rgba(60, 79, 52, 0.55); }

.hamburger { display: none; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; padding: 0; position: relative; z-index: 1100; }
.hamburger span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 700; letter-spacing: 0.06em;
  padding: 1rem 2.4rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  line-height: 1.4;
}
.btn--line { background: var(--line-green); color: var(--white); box-shadow: 0 14px 30px -14px rgba(6, 199, 85, 0.6); }
.btn--line:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -14px rgba(6, 199, 85, 0.7); }
.btn--sage { background: var(--forest); color: #f4eee1; box-shadow: var(--shadow-soft); }
.btn--sage:hover { background: var(--bg-deeper); transform: translateY(-3px); }
.btn--outline { background: transparent; border: 1.5px solid var(--gold); color: var(--ink); }
.btn--outline:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn__icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn__note { display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.04em; opacity: 0.92; margin-top: 0.1rem; }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: url("../images/480_F_468172126_G4V6tMF7usUtMdEFCkO98souaqhhp5Va.jpg") center 30%/cover no-repeat; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(244, 238, 225, 0.97) 0%, rgba(244, 238, 225, 0.9) 38%, rgba(244, 238, 225, 0.5) 62%, rgba(53, 71, 48, 0.34) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.75rem); }
.hero__content { max-width: 640px; }
.hero__eyebrow { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero__eyebrow .seal { width: 2.6rem; height: 2.6rem; font-size: 1.2rem; }
.hero__eyebrow span { font-family: var(--serif); letter-spacing: 0.24em; color: var(--sage-dark); font-size: 0.82rem; }
.hero__title { font-size: clamp(2.1rem, 6.4vw, 3.7rem); line-height: 1.5; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 1.7rem; font-weight: 700; }
.hero__title .accent { color: var(--sage-dark); }
.hero__title .lg { display: block; margin-top: 0.35rem; }
.hero__lead { font-size: clamp(0.96rem, 2.4vw, 1.08rem); color: var(--ink-soft); margin-bottom: 2.4rem; max-width: 32em; line-height: 2.1; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero__badge {
  position: absolute; top: calc(var(--header-h) + 28px); right: clamp(1.25rem, 5vw, 2.75rem); z-index: 2;
  width: clamp(98px, 13vw, 138px); aspect-ratio: 1; border-radius: 50%;
  background: var(--bg-panel); border: 1px solid var(--gold);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); font-family: var(--serif); color: var(--forest); line-height: 1.5; padding: 0.5rem;
}
.hero__badge::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(176, 138, 79, 0.4); border-radius: 50%; }
.hero__badge small { display: block; font-size: 0.6rem; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.15rem; }
.hero__badge strong { display: block; font-size: clamp(0.92rem, 2.4vw, 1.18rem); letter-spacing: 0.06em; }
.hero__scroll { position: absolute; left: clamp(1.25rem, 5vw, 2.75rem); bottom: 1.6rem; z-index: 2; font-size: 0.62rem; letter-spacing: 0.32em; color: var(--ink-soft); writing-mode: vertical-rl; }
.hero__scroll::after { content: ""; display: block; width: 1px; height: 44px; margin: 0.7rem auto 0; background: linear-gradient(var(--gold), transparent); }

/* トラストバー */
.trust { background: var(--forest); color: #eef0e6; }
.trust__inner { max-width: var(--maxw); margin-inline: auto; padding: 1.1rem clamp(1.25rem, 5vw, 2.75rem); display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 2.6rem; }
.trust__item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.86rem; letter-spacing: 0.06em; }
.trust__item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); flex-shrink: 0; }

/* =========================================================
   悩み共感
   ========================================================= */
.worry__lead { text-align: center; font-size: clamp(1.15rem, 3.2vw, 1.5rem); font-family: var(--serif); color: var(--ink); margin-bottom: 2.8rem; line-height: 1.95; }
.worry__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 0.9rem; max-width: 840px; margin-inline: auto; }
.worry__item { background: var(--bg-panel); border: 1px solid var(--line-rule); border-radius: var(--radius); padding: 1.05rem 1.3rem; display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.94rem; box-shadow: var(--shadow-soft); }
.worry__item .check { color: var(--sage); font-family: var(--serif); font-weight: 700; flex-shrink: 0; line-height: 1.6; }
.worry__after { text-align: center; margin-top: 2.8rem; font-size: clamp(1.1rem, 3vw, 1.4rem); font-family: var(--serif); color: var(--sage-dark); line-height: 1.9; }
.worry__after .small { display: block; font-size: 0.92rem; color: var(--ink-soft); font-family: var(--sans); margin-top: 0.7rem; }

/* =========================================================
   気功とは / 事業内容
   ========================================================= */
.about__intro { margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.about__intro strong { color: var(--sage-dark); font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 1.3rem; counter-reset: step; }
.step { position: relative; background: var(--bg-panel); border-radius: var(--radius-lg); padding: 2.2rem 1.7rem 2rem; text-align: center; box-shadow: var(--shadow-soft); border-top: 2px solid var(--sage); }
.step__no { font-family: var(--serif); color: var(--gold); letter-spacing: 0.18em; font-size: 0.78rem; }
.step__no::before { counter-increment: step; content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.18rem; margin: 0.55rem 0 0.85rem; color: var(--forest); }
.step p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.95; }

.about__media { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; margin-top: clamp(2.6rem, 6vw, 4.2rem); }
.about__media .media-img { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.about__media .media-img::after { content: ""; position: absolute; inset: 12px -12px -12px 12px; border: 1px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.about__media h3 { font-size: clamp(1.25rem, 3vw, 1.7rem); color: var(--forest); margin-bottom: 1.1rem; }
.about__media p { color: var(--ink-soft); font-size: 0.97rem; line-height: 2.05; }

.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: clamp(2.4rem, 5vw, 3.4rem); }
.mode { background: var(--bg-soft); border: 1px solid var(--line-rule); border-radius: var(--radius-lg); padding: 1.9rem 1.7rem; }
.mode__tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.16em; color: var(--white); background: var(--sage); padding: 0.28rem 0.95rem; border-radius: 999px; margin-bottom: 1rem; }
.mode h3 { font-size: 1.18rem; color: var(--forest); margin-bottom: 0.55rem; }
.mode p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.95; }

/* =========================================================
   選ばれる理由
   ========================================================= */
.strength-list { display: grid; gap: 1.1rem; max-width: 900px; margin-inline: auto; }
.strength { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--bg-panel); border-radius: var(--radius-lg); padding: 1.7rem 1.9rem; box-shadow: var(--shadow-soft); border-left: 3px solid var(--gold); }
.strength__no { flex-shrink: 0; font-family: var(--serif); font-size: 1.7rem; color: var(--sage); width: 2.6rem; line-height: 1.1; }
.strength h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: 0.5rem; }
.strength p { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.95; }

/* =========================================================
   想い / 企業理念
   ========================================================= */
/* --- セクション背景の漢字（1文字・左右交互・極薄の装飾） --- */
.section[data-kanji] { overflow: hidden; }
.section[data-kanji]::after {
  content: attr(data-kanji);
  position: absolute; top: 50%; left: -0.16em; right: auto; transform: translateY(-50%);
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(10rem, 30vw, 26rem);
  color: rgba(60, 79, 52, 0.06);
  z-index: 0; pointer-events: none; user-select: none;
}
/* 右寄せにするセクション（交互配置） */
.section[data-kanji][data-side="right"]::after { left: auto; right: -0.16em; }
/* 濃色・写真背景のセクションは白の極薄に */
.section--deep[data-kanji]::after,
.cta[data-kanji]::after { color: rgba(255, 255, 255, 0.05); }
/* 本文を漢字より前面に */
.section > .container { position: relative; z-index: 1; }

.philosophy { position: relative; }
.philosophy__quote { text-align: center; font-family: var(--serif); font-size: clamp(1.4rem, 4vw, 2.1rem); line-height: 1.85; letter-spacing: 0.07em; margin-bottom: 2.6rem; }
.philosophy__quote .accent { color: var(--gold-soft); }
.philosophy__body { max-width: var(--maxw-narrow); margin-inline: auto; text-align: center; }
.philosophy__body p { margin-bottom: 1.3rem; font-size: 1rem; color: #e3e6d8; line-height: 2.1; }
.philosophy__sign { margin-top: 2.2rem; font-family: var(--serif); letter-spacing: 0.12em; font-size: 1.15rem; }
.philosophy__sign small { display: block; font-size: 0.74rem; color: var(--gold-soft); letter-spacing: 0.22em; margin-bottom: 0.4rem; }

/* =========================================================
   ご利用の流れ
   ========================================================= */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: flow; }
.flow__step { position: relative; background: var(--bg-panel); border-radius: var(--radius-lg); padding: 2rem 1.4rem 1.7rem; text-align: center; box-shadow: var(--shadow-soft); }
.flow__step .num { display: inline-grid; place-content: center; width: 2.7rem; height: 2.7rem; border-radius: 50%; background: var(--forest); color: #f4eee1; font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.9rem; }
.flow__step .num::before { counter-increment: flow; content: counter(flow); }
.flow__step h3 { font-size: 1.02rem; color: var(--forest); margin-bottom: 0.5rem; }
.flow__step p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.85; }
.flow__step:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -0.7rem; width: 0.8rem; height: 1px; background: var(--gold); z-index: 2; }

/* =========================================================
   施術実績 / お客様の声
   ========================================================= */
.results__stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; margin-bottom: clamp(2.6rem, 6vw, 3.8rem); }
.stat { background: var(--bg-deep); color: #eef0e6; border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2rem); color: #fff; margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.stat span { font-size: 0.85rem; color: var(--sand); }

.voice-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.3rem; margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.quote { background: var(--bg-panel); border-radius: var(--radius-lg); padding: 2rem 1.9rem 1.6rem; box-shadow: var(--shadow-soft); border-top: 2px solid var(--sage); position: relative; }
.quote::before { content: "“"; position: absolute; top: 0.4rem; left: 1.1rem; font-family: var(--serif); font-size: 3.2rem; color: var(--sand); line-height: 1; }
.quote__body { position: relative; font-size: 0.97rem; color: var(--ink); line-height: 2.05; margin: 0.4rem 0 1.1rem; }
.quote__by { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.08em; font-family: var(--serif); }

.voice-gallery__label { text-align: center; font-size: 0.85rem; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 1.4rem; }
.voice-gallery { columns: 3 230px; column-gap: 1rem; }
.voice { break-inside: avoid; margin-bottom: 1rem; background: var(--bg-panel); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid var(--line-rule); padding: 6px; }
.voice img { width: 100%; display: block; border-radius: 2px; background: var(--bg-soft); }
.results__note { text-align: center; font-size: 0.8rem; color: var(--ink-mute); margin-top: 2.2rem; line-height: 1.9; }

/* =========================================================
   料金 / メニュー
   ========================================================= */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; max-width: 900px; margin-inline: auto; }
.price-card { background: var(--bg-panel); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 2.4rem 1.9rem; text-align: center; position: relative; border: 1px solid var(--line-rule); }
.price-card--feature { border: 1.5px solid var(--sage); }
.price-card__ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--forest); color: #f4eee1; font-size: 0.72rem; letter-spacing: 0.14em; padding: 0.32rem 1.3rem; border-radius: 999px; white-space: nowrap; }
.price-card__name { font-family: var(--serif); font-size: 1.25rem; color: var(--forest); margin-bottom: 0.3rem; }
.price-card__min { font-size: 0.8rem; color: var(--ink-soft); }
.price-card__price { font-family: var(--serif); font-size: clamp(2.1rem, 6vw, 2.7rem); color: var(--sage-dark); margin: 0.7rem 0; letter-spacing: 0.02em; }
.price-card__price small { font-size: 0.86rem; }
.price-card__desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.95; }

.price-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; max-width: 900px; margin: 1.3rem auto 0; }
.price-extra__item { background: var(--sand-soft); border-radius: var(--radius-lg); padding: 1.7rem 1.7rem; display: flex; flex-direction: column; gap: 0.4rem; }
.price-extra__item .tag { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--sage-dark); font-weight: 700; }
.price-extra__item h3 { font-size: 1.06rem; color: var(--forest); }
.price-extra__item .amount { font-family: var(--serif); font-size: 1.45rem; color: var(--sage-dark); }
.price-extra__item p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.9; }

.price-disclaimer { max-width: var(--maxw-narrow); margin: clamp(2.2rem, 5vw, 3rem) auto 0; background: var(--bg-soft); border: 1px solid var(--line-rule); border-radius: var(--radius-lg); padding: 1.5rem 1.7rem; font-size: 0.84rem; color: var(--ink-soft); line-height: 2; }
.price-disclaimer strong { display: block; color: var(--forest); font-family: var(--serif); margin-bottom: 0.5rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: var(--maxw-narrow); margin-inline: auto; display: grid; gap: 0.9rem; }
.faq { background: var(--bg-panel); border: 1px solid var(--line-rule); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-soft); }
.faq dt { font-family: var(--serif); font-size: 1.02rem; color: var(--forest); display: flex; gap: 0.7rem; align-items: baseline; margin-bottom: 0.6rem; }
.faq dt::before { content: "Q"; font-size: 0.9rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.faq dd { margin: 0; padding-left: 1.6rem; font-size: 0.92rem; color: var(--ink-soft); line-height: 2; position: relative; }
.faq dd::before { content: "A"; position: absolute; left: 0; top: 0; font-family: var(--serif); font-size: 0.9rem; color: var(--sage); font-weight: 700; }

/* =========================================================
   会社概要
   ========================================================= */
.company-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.8rem, 5vw, 3.6rem); align-items: center; }
.company-photo { text-align: center; }
.company-photo .media-img { position: relative; display: inline-block; }
.company-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; max-width: 320px; object-fit: cover; }
.company-photo .media-img::after { content: ""; position: absolute; inset: 10px -10px -10px 10px; border: 1px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.company-photo figcaption { margin-top: 1.1rem; font-family: var(--serif); font-size: 1.05rem; }
.company-photo figcaption small { display: block; font-size: 0.72rem; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 0.25rem; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td { text-align: left; padding: 1rem 0.4rem; border-bottom: 1px solid var(--line-rule); font-size: 0.93rem; vertical-align: top; }
.company-table th { width: 8.5em; font-family: var(--serif); font-weight: 600; color: var(--forest); white-space: nowrap; }
.company-table td { color: var(--ink-soft); line-height: 1.9; }

/* =========================================================
   LINE CTA
   ========================================================= */
.cta { background: linear-gradient(rgba(43, 58, 39, 0.9), rgba(43, 58, 39, 0.94)), url("../images/480_F_468172126_G4V6tMF7usUtMdEFCkO98souaqhhp5Va.jpg") center/cover no-repeat; background-attachment: scroll; color: #eef0e6; text-align: center; }
.cta .seal { color: var(--gold-soft); border-color: var(--gold-soft); margin-bottom: 1.2rem; }
.cta__title { font-size: clamp(1.55rem, 4.4vw, 2.3rem); letter-spacing: 0.06em; margin-bottom: 1.1rem; color: #fff; line-height: 1.7; }
.cta__lead { max-width: 36em; margin: 0 auto 2.4rem; color: #d8ddca; font-size: 0.98rem; line-height: 2.05; }
.cta__steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 2.4rem; margin-top: 2.4rem; font-size: 0.84rem; color: var(--sand); }
.cta__steps span { display: flex; align-items: center; gap: 0.5rem; }
.cta__steps span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft); }

/* お問い合わせフォーム（最優先導線） */
.cta__form { max-width: 40em; margin: 0 auto; background: var(--white, #fff); border-radius: 16px; padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.55); text-align: left; color: var(--ink); }
.cta__form-label { font-family: var(--serif, inherit); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 1.1rem; color: var(--forest, #354730); text-align: center; }
.cta__form .formrun-embed { width: 100%; }
.cta__or { margin: 2rem auto 1rem; font-size: 0.86rem; color: #cdd2c1; }
.btn--line-sub { transform: scale(0.94); }
.btn--line-sub:hover { transform: translateY(-3px) scale(0.94); }

/* スティッキー LINE（モバイル） */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; padding: 0.7rem clamp(1rem, 4vw, 1.5rem) calc(0.7rem + env(safe-area-inset-bottom)); background: rgba(244, 238, 225, 0.94); backdrop-filter: blur(8px); border-top: 1px solid var(--line-rule); transform: translateY(110%); transition: transform 0.4s var(--ease); display: none; }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; padding: 0.85rem; }

/* =========================================================
   フッター
   ========================================================= */
.footer { background: var(--bg-deeper); color: #cfd3c2; padding-block: clamp(2.8rem, 6vw, 3.8rem) 1.8rem; text-align: center; }
.footer__logo { margin-bottom: 1.6rem; }
.footer__name { font-family: var(--serif); letter-spacing: 0.22em; font-size: 1.15rem; color: #fff; margin-bottom: 0.45rem; text-indent: 0.22em; }
.footer__addr { font-size: 0.84rem; color: var(--sand); line-height: 1.9; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.7rem; margin: 1.9rem 0; }
.footer__nav a { font-size: 0.83rem; color: #cfd3c2; transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: #fff; }
.footer__copy { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--sand); margin-top: 1.6rem; opacity: 0.8; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 980px) {
  .about__media { grid-template-columns: 1fr; }
  .about__media .media-img::after { inset: 10px -10px -10px 10px; }
  .company-wrap { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__step:not(:last-child)::after { display: none; }
  .voice-gallery { columns: 2 220px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* backdrop-filter は fixed 子要素の包含ブロックになり、
     ドロワーがヘッダー高に制限されるためモバイルでは無効化する */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(244, 238, 225, 0.97); }

  .header__nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 330px);
    background: var(--bg-soft); transform: translateX(100%);
    transition: transform 0.4s var(--ease); padding: 5.2rem 2rem 2rem;
    box-shadow: -10px 0 40px -20px rgba(53, 71, 48, 0.5);
  }
  .header__nav.is-open { transform: translateX(0); }
  .header__nav ul { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .header__nav a { display: block; width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line-rule); font-size: 0.96rem; }
  .header__nav .header__form { display: block; text-align: center; color: var(--white) !important; border-bottom: 0; padding: 0.95rem 1rem; margin-top: 1.3rem; border-radius: 999px; }
  .header__nav .header__line { display: block; text-align: center; color: var(--white); border-bottom: 0; padding: 0.95rem 1rem; margin-top: 0.7rem; border-radius: 999px; }
  .hamburger { display: block; }

  .nav-overlay { position: fixed; inset: 0; background: rgba(43, 58, 39, 0.42); opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease); z-index: 900; }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }

  .price-grid, .price-extra, .modes { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 0; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .voice-gallery { columns: 1; }
  .flow { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .strength { flex-direction: column; gap: 0.6rem; }
  .company-table th { width: 6.5em; font-size: 0.86rem; }
  .hero__badge { width: 92px; top: calc(var(--header-h) + 18px); }
}

/* 動きを減らす設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .loader__bar::before { animation: none; }
}
