@charset "utf-8";

/* ==========================================================================
   ITCharm 共通スタイル

   ■ 配色は元サイト（itcharm.jp）のトンマナを踏襲する
     深緑 #005c1a ／ 緑 #00cc33 ／ ライム #7ddb5a ／ 黄 #ffe234 ／ クリーム #fffdf5
     セクションの地色は 深緑 → 淡緑 → 白 → 深緑 → クリーム → 緑グラデ の順で回す

   ■ 画像の差し替えかた
     下の --img-* の URL を差し替えるだけで全ページに反映される。
     assets/images/ に同名で置くか、ファイル名ごと書き換えてよい。
     現在は顔の写らない実写調 WebP を使用している。
   ========================================================================== */

:root {
  /* ---- ブランド色（元サイト準拠） ---- */
  --green-deep: #005c1a;
  --green-dark: #00a028;
  --green:      #00cc33;
  --lime:       #7ddb5a;
  --yellow:     #ffe234;
  --green-pale: #f0faf3;
  --green-light:#e8fff0;
  --cream:      #fffdf5;

  /* ---- 無彩色 ---- */
  --ink:      #1a1a1a;
  --ink-sub:  #5a5f63;
  --rule:     #dcdedd;
  --rule-dark:rgba(255, 255, 255, 0.18);
  --paper:    #ffffff;

  /* ---- 画像（ここを差し替える） ---- */
  --img-hero:    url("images/hero.webp");
  --img-about:   url("images/about.webp");
  --img-service: url("images/service.webp");
  --img-band:    url("images/band.webp");
  --img-hp-hero: url("images/hp-hero.webp");
  --img-works-1: url("images/works-1.webp");
  --img-works-2: url("images/works-2.webp");
  --img-works-3: url("images/works-3.webp");

  /* ---- 余白のリズム（グループ内 < グループ間） ---- */
  --gap-xs: 8px;
  --gap-s:  16px;
  --gap-m:  32px;
  --gap-l:  64px;
  --gap-xl: 112px;

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --col:  880px;
  --wide: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-deep); }

/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: var(--gap-m);
}

.logo { display: block; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.site-nav a {
  color: var(--ink-sub);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--green-deep); border-bottom-color: var(--green); }
.site-nav a.is-current { color: var(--ink); border-bottom-color: var(--green); }

/* --------------------------------------------------------------------------
   レイアウト共通
   -------------------------------------------------------------------------- */
.wrap { max-width: var(--col); margin: 0 auto; padding: 0 24px; }
.wrap--wide { max-width: var(--wide); }

.section { padding: var(--gap-xl) 0; position: relative; }
.section--pale  { background: var(--green-pale); }
.section--cream { background: var(--cream); }
.section--white { background: var(--paper); }

.section__head { margin-bottom: var(--gap-l); }

.section__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.55;
  margin: 0;
  padding-bottom: var(--gap-s);
  border-bottom: 3px solid var(--green);
  display: inline-block;
}

.section__lead { margin: var(--gap-m) 0 0; max-width: 46em; color: var(--ink-sub); }
.section__note { margin: var(--gap-m) 0 0; font-size: 14px; color: var(--ink-sub); }

/* --------------------------------------------------------------------------
   深緑セクション（白抜き）
   背景画像をマスクで上下にフェードさせ、深緑のオーバーレイを重ねる
   -------------------------------------------------------------------------- */
.section--dark {
  background: var(--green-deep);
  color: #fff;
  overflow: hidden;
}
.section--dark .section__title { border-bottom-color: var(--lime); }
.section--dark .section__lead,
.section--dark .section__note { color: rgba(255, 255, 255, 0.72); }
.section--dark a { color: var(--lime); }

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img-service);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;          /* パララックス */
  opacity: 0.34;
  /* マスキング：上下を溶かして地の深緑になじませる */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  pointer-events: none;
}
.section--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 46, 14, 0.72) 0%, rgba(0, 92, 26, 0.55) 55%, rgba(0, 120, 32, 0.42) 100%);
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   ヒーロー（画像＋オーバーレイ＋パララックス）
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 128px 0 var(--gap-xl);
  background: var(--green-deep);
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -12% 0 -12% 0;                  /* JS パララックスの逃げ代 */
  background-image: var(--img-hero);
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero--hp .hero__media { background-image: var(--img-hp-hero); }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(125, 219, 90, 0.20) 0%, transparent 60%),
    linear-gradient(120deg, rgba(0, 36, 11, 0.90) 0%, rgba(0, 74, 21, 0.80) 45%, rgba(0, 110, 30, 0.58) 100%);
}
/* マスキングの帯：右上から斜めに光を入れる */
.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(255, 255, 255, 0.07) 78%, transparent 100%);
}

.hero .wrap { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  padding: 7px 18px;
  border-radius: 100px;
  margin: 0 0 var(--gap-m);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 5.6vw, 56px);
  line-height: 1.45;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero__title em { font-style: normal; color: var(--yellow); }

.hero__body {
  margin: var(--gap-m) 0 0;
  max-width: 34em;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  margin-top: var(--gap-l);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-s);
  align-items: center;
}

/* --------------------------------------------------------------------------
   ボタン
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 18px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s;
}
.btn--solid { background: var(--green); color: #fff; border-color: var(--green); }
.btn--solid:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn--ghost:hover { background: #fff; color: var(--green-deep); border-color: #fff; }
.btn--line { background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.btn--line:hover { background: var(--green-deep); color: #fff; }

/* --------------------------------------------------------------------------
   全幅パララックス帯（オーバーレイ＋中央のコピー）
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--green-deep);
}
.band__media {
  position: absolute;
  inset: -14% 0 -14% 0;
  background-image: var(--img-band);
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 40, 12, 0.86) 0%, rgba(0, 92, 26, 0.62) 60%, rgba(0, 140, 38, 0.42) 100%);
}
.band .wrap { position: relative; z-index: 2; }
.band__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 4.4vw, 42px);
  line-height: 1.55;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.band__text { margin: var(--gap-m) 0 0; max-width: 38em; color: rgba(255, 255, 255, 0.85); }

/* --------------------------------------------------------------------------
   図版（マスキング）
   -------------------------------------------------------------------------- */
.media-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--gap-l);
  align-items: center;
}
.media-split--flip { grid-template-columns: 380px 1fr; }

.figure { position: relative; margin: 0; }

/* 角を斜めに落とすマスク */
.figure--cut img {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  border-radius: 4px;
}
/* ロゴの筆円に合わせた円形マスク */
.figure--circle img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
/* 人物写真。profile.jpg は顔が中心に来るよう**正方形に切り出し済み**なので、
   この指定は効かない（正方形の枠に正方形の画像を入れるため）。
   正方形でない写真に差し替えたときだけ、ここで寄せ位置を調整する。
   数字は「左からの位置 上からの位置」。 */
.figure--face img { object-position: 50% 50%; }

.figure--circle::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px solid var(--green);
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}
.figure__caption { margin: var(--gap-s) 0 0; font-size: 13px; color: var(--ink-sub); }

/* 画像タイル（制作実績など） */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-m);
}
.tile { position: relative; overflow: hidden; border-radius: 4px; }
.tile img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .5s; }
.tile:hover img { transform: scale(1.05); }
.tile__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 40, 12, 0.78));
}

/* --------------------------------------------------------------------------
   番号つきリスト（カードは使わない）
   -------------------------------------------------------------------------- */
.numbered { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
.section--dark .numbered { border-top-color: var(--rule-dark); }

.numbered__item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0 var(--gap-m);
  padding: var(--gap-m) 0;
  border-bottom: 1px solid var(--rule);
}
.section--dark .numbered__item { border-bottom-color: var(--rule-dark); }

.numbered__no {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  padding-top: 6px;
}
.section--dark .numbered__no { color: var(--yellow); }

.numbered__title { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1.7; margin: 0; }
.numbered__text { margin: var(--gap-xs) 0 0; color: var(--ink-sub); font-size: 15px; }
.section--dark .numbered__text { color: rgba(255, 255, 255, 0.75); }

.numbered--major .numbered__item { padding: var(--gap-l) 0; }
.numbered--major .numbered__title { font-size: clamp(20px, 2.8vw, 26px); }
.numbered--major .numbered__text { font-size: 16px; margin-top: var(--gap-s); }

/* 左の欄にアイコンを添えるパターン（選ばれる理由）
   カード化はしない。あくまで番号のとなりに図版を置くだけ。 */
.numbered--icon .numbered__item { grid-template-columns: 104px 1fr; }
.numbered__mark { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.numbered--icon .numbered__no { padding-top: 0; }
.numbered__icon {
  width: 80px;
  height: 80px;
  padding: 10px;
  border-radius: 12px;
  background: var(--green-pale);
  object-fit: contain;
  display: block;
}
.section--dark .numbered__icon {
  padding: 4px;
  border-radius: 0;
  background: transparent;
}

/* 番号を出さず、アイコンだけを添えるパターン（サービス内容）
   番号とアイコンを縦に重ねるとバランスが悪かったので、番号をやめて
   アイコンひとつに絞り、見出しの高さに合わせて上をそろえた。 */
.numbered--icononly .numbered__item { grid-template-columns: 88px 1fr; align-items: start; }
.numbered--icononly .numbered__icon { width: 72px; height: 72px; margin-top: -6px; }

/* 大きなカードを添えるパターン（選ばれる3つの理由）
   カードそのものを見せたいので、番号は出さず、図版を大きく取る。 */
.numbered--card .numbered__item {
  grid-template-columns: 280px 1fr;
  gap: 0 var(--gap-l);
  align-items: center;
}
.numbered--card .numbered__mark { display: block; }
.numbered--card .numbered__icon {
  width: 280px;
  height: 280px;
  padding: 0;
  border-radius: 14px;
  background: transparent;
}

/* --------------------------------------------------------------------------
   ご依頼の流れ（一連の流れであることを見せる）

   左に番号の丸を縦に並べ、丸と丸のあいだを細い縦線でつなぐ。
   スクロールでその段が出るときに、縦線が上から下へ伸びる。
   アイコンは見出しのとなりに置く（番号とアイコンが同じ欄にあると
   どちらを見ればよいか分からなくなるため、役割で分けた）。
   -------------------------------------------------------------------------- */
.flow { list-style: none; margin: 0; padding: 0; }

.flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 var(--gap-m);
  padding-bottom: var(--gap-l);
}
.flow__step:last-child { padding-bottom: 0; }

/* 段と段をつなぐ縦線。番号の丸の中心を通す */
.flow__step::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 72px;
  bottom: 8px;
  width: 2px;
  background: var(--green);
  opacity: 0.4;
}
.flow__step:last-child::before { content: none; }

/* 動きが有効なときだけ、縦線を上から伸ばす */
.reveal-active .flow__step::before {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .8s cubic-bezier(.22, .68, .3, 1) .25s;
}
.reveal-active .flow__step.is-in::before { transform: scaleY(1); }

/* 丸の背景は、置いたセクションの地色に自動で合わせる。
   合っていないと、丸の中を縦線が貫通して見える。 */
.section--white .flow__no { background: var(--paper); }
.section--pale  .flow__no { background: var(--green-pale); }
.section--cream .flow__no { background: var(--cream); }
.section--dark  .flow__no { background: var(--green-deep); border-color: var(--lime); color: #fff; }
.section--dark  .flow__step::before { background: var(--lime); }
.section--dark  .flow__text { color: rgba(255, 255, 255, 0.75); }

.flow__no {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  position: relative;
  z-index: 1;
}

.flow__head { display: flex; align-items: center; gap: var(--gap-s); }
.flow__icon { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.flow__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}
.flow__text { margin: 12px 0 0; color: var(--ink-sub); font-size: 15px; }

/* --------------------------------------------------------------------------
   よくある質問（折りたたみ）

   <details>/<summary> をそのまま使う。JavaScript は不要で、
   キーボード操作と読み上げにも最初から対応している。
   区切りは細罫線のみ。カードにはしない。
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }

.faq__item { border-bottom: 1px solid var(--rule); }

/* summary に display:flex を使うとブラウザによって開閉が不安定になるので block にする。
   ＋印は position:absolute なので、flex にする必要はない。 */
.faq__q {
  display: block;
  padding: 26px 48px 26px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--green-deep); }
.faq__q:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

/* 右端の＋。開くと×印になる */
.faq__q::before,
.faq__q::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--green-deep);
  transition: transform .3s cubic-bezier(.22, .68, .3, 1);
}
.faq__q::after { transform: rotate(90deg); }
.faq__item[open] .faq__q::after { transform: rotate(180deg); }

.faq__a {
  padding: 0 48px 28px 0;
  color: var(--ink-sub);
  font-size: 15px;
}
.faq__a p { margin: 0; }

/* 開くときに、下からすっと出す */
.faq__item[open] .faq__a { animation: faqOpen .35s ease; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   対応モール（モール名を文字で見せる）

   🔴 各社のロゴ画像は使わない。2026-07-29 に調べて確認した結果：
     ・Amazon … Amazon ロゴと Smile ロゴは出品者・ベンダーによる第三者広告での
       使用を禁止。それ以外の使用は書面による事前承認が必要
     ・楽天 … 明示的な許諾がない限り第三者の利用を禁止
   ITCharm は出品代行（代理店）なので、3社のロゴを並べると「公式パートナー」と
   読まれかねない。これは各社が最も禁じている使い方に当たる。
   よって元サイトと同じく**モール名を文字で組む**方針にした。
   （経緯は design.md「対応モールの見せ方」に記載）
   -------------------------------------------------------------------------- */
.malls {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap-m);
}
/* プレート（面）で見せる。
   🔴 色の帯（border-top / border-left など）は付けないこと。
   no-ai-design.md の「カード左端の色帯（左ボーダー装飾）」に当たる。
   向きを変えても同じ扱い。2026-07-29 に border-top で一度やって指摘を受けた。
   角丸・枠線・影も付けない（角丸カードの多用も禁止パターン）。 */
.malls li {
  background: var(--green-pale);
  padding: var(--gap-m);
}
.malls b {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.malls span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-sub);
}

/* --------------------------------------------------------------------------
   定義リスト
   -------------------------------------------------------------------------- */
.deflist { margin: 0; border-top: 1px solid var(--rule); }
.deflist > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 var(--gap-m);
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.deflist dt { font-weight: 500; font-size: 15px; color: var(--ink-sub); margin: 0; }
.deflist dd { margin: 0; }
.deflist dd p { margin: 0 0 6px; }
.deflist dd p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   規約・ポリシー本文
   -------------------------------------------------------------------------- */
.prose h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  margin: var(--gap-l) 0 var(--gap-s);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.prose h2:first-child { margin-top: 0; }
.prose p  { margin: 0 0 var(--gap-s); }
.prose ul { margin: 0 0 var(--gap-s); padding-left: 1.4em; }
.prose li { margin-bottom: 4px; }
.prose .revised { margin-top: var(--gap-l); font-size: 14px; color: var(--ink-sub); }

/* --------------------------------------------------------------------------
   下層ページの見出し（帯の中に置く）
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  background: var(--green-deep);
  color: #fff;
  padding: var(--gap-xl) 0 var(--gap-l);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img-band);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 40, 12, 0.85) 0%, rgba(0, 92, 26, 0.6) 100%);
}
.page-head .wrap { position: relative; z-index: 2; }

.breadcrumb { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin: 0 0 var(--gap-s); }
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }

.page-head__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.5;
  margin: 0;
}
.page-head__lead { margin: var(--gap-m) 0 0; color: rgba(255, 255, 255, 0.85); max-width: 42em; }

/* --------------------------------------------------------------------------
   横並びテキスト（対応モール・業種）
   -------------------------------------------------------------------------- */
.inline-list {
  margin: 0;
  padding: var(--gap-m) 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.inline-list li {
  font-size: 15px;
  padding: 0 20px;
  border-right: 1px solid var(--rule);
  line-height: 1.6;
}
.inline-list li:first-child { padding-left: 0; }
.inline-list li:last-child { border-right: 0; }

/* --------------------------------------------------------------------------
   料金
   -------------------------------------------------------------------------- */
.price { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: var(--gap-l) 0; }
.price__label { font-size: 15px; color: var(--ink-sub); margin: 0 0 var(--gap-s); }
.price__amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.3;
  margin: 0;
  color: var(--green-deep);
}
.price__amount small { font-size: 0.42em; font-weight: 400; margin-left: 8px; color: var(--ink-sub); }
.price__zero { margin: var(--gap-m) 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px 32px; font-size: 15px; }
.price__zero span { font-family: var(--serif); font-weight: 700; color: var(--green); margin-left: 8px; }

/* --------------------------------------------------------------------------
   問い合わせ（緑グラデ・元サイト踏襲）
   -------------------------------------------------------------------------- */
.contact {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: var(--gap-xl) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
}
.contact .wrap { position: relative; z-index: 2; }
.contact__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.55;
  margin: 0 0 var(--gap-m);
}
.contact p { color: rgba(255, 255, 255, 0.92); }
.contact .btn--solid { background: #fff; color: var(--green-deep); border-color: #fff; }
.contact .btn--solid:hover { background: var(--cream); border-color: var(--cream); }
.contact__meta {
  margin: var(--gap-l) 0 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: var(--gap-m);
}
.contact__meta p { margin: 0 0 6px; }
.contact__meta a { font-weight: 500; }
.contact .contact__meta { border-top-color: rgba(255, 255, 255, 0.35); }
.contact .contact__meta a { color: #fff; }

/* 緑帯の外（ヒアリングページ末尾など）に置いたときは通常配色に戻す */
.section .contact__meta { border-top-color: var(--rule); color: var(--ink-sub); font-size: 14px; }

/* --------------------------------------------------------------------------
   ヒアリングフォーム
   -------------------------------------------------------------------------- */
.q { padding: var(--gap-l) 0; border-bottom: 1px solid var(--rule); border-top: 0; margin: 0; }
.q:first-of-type { border-top: 1px solid var(--rule); }
.q__head { display: flex; align-items: baseline; gap: var(--gap-s); margin-bottom: var(--gap-m); }
.q__no { font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: 0.06em; }
.q__title { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1.6; margin: 0; }
.req {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--green);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 10px;
  vertical-align: 2px;
  white-space: nowrap;
}

.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.choice { display: block; position: relative; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice span {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.6;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background-color .15s;
}
.choice span:hover { border-color: var(--green); }
.choice input:checked + span { border-color: var(--green); background: var(--green-light); font-weight: 500; }
.choice input:focus-visible + span { outline: 2px solid var(--green-deep); outline-offset: 2px; }

.field { margin-bottom: var(--gap-m); }
.field label { display: block; font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--ink-sub); font-size: 13px; margin-left: 8px; }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }

.form-submit { margin-top: var(--gap-l); }
.form-submit .btn { font-size: 16px; padding: 20px 44px; }

/* --------------------------------------------------------------------------
   フッター（深緑）
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--gap-xl) 0 var(--gap-m);
  font-size: 14px;
}
.site-footer__inner { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }
.site-footer__top { display: flex; flex-wrap: wrap; gap: var(--gap-l); justify-content: space-between; }
.site-footer__about { max-width: 26em; }
.site-footer__about p { margin: var(--gap-s) 0 0; }
.site-footer .logo img { height: 40px; }
.site-footer__nav { display: flex; gap: var(--gap-l); flex-wrap: wrap; }
.site-footer__nav h2 { font-family: var(--sans); font-size: 13px; font-weight: 500; color: #fff; margin: 0 0 12px; }
.site-footer__nav ul { margin: 0; padding: 0; list-style: none; }
.site-footer__nav li { margin-bottom: 8px; }
.site-footer__nav a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer__nav a:hover { color: var(--lime); }
.site-footer__bottom {
  margin-top: var(--gap-l);
  padding-top: var(--gap-s);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   スマートフォン
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .media-split,
  .media-split--flip { grid-template-columns: 1fr; gap: var(--gap-m); }
  .figure--circle { max-width: 340px; }
}

@media (max-width: 760px) {
  :root { --gap-l: 44px; --gap-xl: 72px; }
  body { font-size: 15.5px; line-height: 1.9; }

  .site-header__inner { padding: 10px 20px; gap: var(--gap-s); flex-wrap: wrap; }
  .logo img { height: 36px; }
  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: 100%;
    margin-left: 0;
    gap: 8px 18px;
    overflow: visible;
    font-size: 12px;
    line-height: 1.5;
    padding-bottom: 2px;
  }
  html { scroll-padding-top: 132px; }

  .wrap { padding: 0 20px; }
  .hero { min-height: 76vh; padding: 88px 0 var(--gap-xl); }
  .numbered__item,
  .numbered--icon .numbered__item { grid-template-columns: 1fr; gap: 0; padding: var(--gap-m) 0; }
  .numbered__mark { flex-direction: row; align-items: center; gap: var(--gap-s); margin-bottom: 10px; }
  .numbered--icon .numbered__no { margin-bottom: 0; }
  .numbered__icon { width: 56px; height: 56px; }
  .numbered--icononly .numbered__item { grid-template-columns: 1fr; }
  .numbered--icononly .numbered__icon { width: 60px; height: 60px; margin-top: 0; }
  .numbered--card .numbered__item { grid-template-columns: 1fr; gap: var(--gap-s) 0; }
  .numbered--card .numbered__icon { width: 100%; max-width: 320px; height: auto; aspect-ratio: 1 / 1; }
  .malls { padding: var(--gap-m) 0; gap: var(--gap-m); }

  .flow__step { grid-template-columns: 56px 1fr; gap: 0 20px; padding-bottom: var(--gap-m); }
  .flow__step::before { left: 23px; top: 56px; }
  .flow__no { width: 48px; height: 48px; font-size: 15px; }
  .flow__head { gap: 12px; }
  .flow__icon { width: 44px; height: 44px; }
  .flow__title { font-size: 17px; }
  .numbered--major .numbered__item { padding: var(--gap-m) 0; }
  .numbered__no { padding-top: 0; margin-bottom: 6px; }
  .deflist > div { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .inline-list li { padding: 0 14px; }
  .site-footer__top { gap: var(--gap-m); }
  .site-footer__nav { gap: var(--gap-m); }
  .choices { grid-template-columns: 1fr; }
  .form-submit .btn { width: 100%; text-align: center; }
  .band { min-height: 340px; }
}

/* モバイルは background-attachment: fixed が効かない／重いので解除
   （代わりに JS が hero と band を transform で動かす） */
@media (hover: none), (max-width: 760px) {
  .section--dark::before { background-attachment: scroll; }
}

/* --------------------------------------------------------------------------
   スクロールで出現させる（assets/reveal.js とセット）

   reveal-active は reveal.js が <html> に付ける。
   スクリプトが動かなかったときは付かないので、下の「最初は透明」も効かず、
   ふつうに全部表示される。壊れない作りにしてある。

   ⚠️ 下の並びは reveal.js の TARGETS と必ずそろえること
   -------------------------------------------------------------------------- */
.reveal-active .section__head,
.reveal-active .numbered__item,
.reveal-active .flow__step,
.reveal-active .figure,
.reveal-active .inline-list,
.reveal-active .malls li,
.reveal-active .tile,
.reveal-active .faq__item,
.reveal-active .price,
.reveal-active .section__note,
.reveal-active .deflist > div,
.reveal-active .prose h2,
.reveal-active .band .wrap > *,
.reveal-active .contact .wrap > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .68, .3, 1);
  will-change: opacity, transform;
}

/* 🔴 !important は必須。外さないこと。
   上の「最初は透明」の並びには `.contact .wrap > *`（クラス3つ）や
   `.malls li`（クラス2つ＋要素）のように、`.reveal-active .is-in`（クラス2つ）より
   詳細度の高いセレクタが混ざっている。!important を外すと、それらは is-in を付けても
   透明のままになり、内容が消えて見える。
   （2026-07-27〜29、対応モール・お問い合わせ帯・パララックス帯が実際に消えた原因） */
.reveal-active .is-in {
  opacity: 1 !important;
  transform: none !important;
}

/* ヒーローは画面に最初から映っているので、スクロールを待たずに出す */
.reveal-active .hero .wrap > * {
  opacity: 0;
  animation: rise .9s cubic-bezier(.22, .68, .3, 1) forwards;
}
.reveal-active .hero__eyebrow { animation-delay: .10s; }
.reveal-active .hero__title   { animation-delay: .22s; }
.reveal-active .hero__body    { animation-delay: .38s; }
.reveal-active .hero__actions { animation-delay: .52s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* ボタンとアイコンの手ざわり（影は付けない） */
.btn { transition: background-color .18s, color .18s, border-color .18s, transform .18s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.numbered__icon { transition: transform .35s cubic-bezier(.22, .68, .3, 1); }
.numbered__item:hover .numbered__icon { transform: scale(1.06); }

/* 視差・出現を好まないユーザーには動かさない */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media, .band__media { transform: none !important; }
  .section--dark::before { background-attachment: scroll; }
  .tile img,
  .btn,
  .numbered__icon { transition: none; }
  .btn:hover { transform: none; }
  .numbered__item:hover .numbered__icon { transform: none; }
}
