@charset "utf-8";

/* ============================================================
   実家のコレカラ — 共通スタイル
   運営：OneTrack株式会社
   設計メモ：
   - Figma「サービスサイト（イメージ）」ボード TOP (1440) のトークンをそのまま移植。
     ビルメン（/birumen-saiyo-douga/）とは別サービスなので配色は独立させている。
   - 読み手に50〜70代を含むので、本文16px / 行間2.0前後 / コントラスト重視。
   - 濃い面（--deep）は「基本思想」の1セクションだけ。多用すると重くなる。
   - 和文はシステムフォント。ビルメンと同じ判断（webフォントは割に合わない）。
   ============================================================ */

:root {
  --bg:        #FDFBF7;
  --bg-soft:   #F6EFE4;
  --deep:      #2F2A26;
  --paper:     #FFFFFF;
  --line:      #E7DFD4;

  --ink:       #2F2A26;
  --ink-2:     #6B625A;
  --ink-3:     #9A9188;

  --accent:      #D97534;
  --accent-deep: #A85526;
  --accent-soft: #F4E7D8;
  --green:       #6E8265;
  /* 「私たちがすること」の面。以前は --deep（ほぼ黒）だった */
  --tan:         #EFE3D0;
  --foot:        #5C4E43;

  --sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic",
          "Noto Sans JP", "Meiryo", system-ui, sans-serif;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;

  --shadow: 0 1px 2px rgba(47,42,38,.04), 0 12px 32px rgba(47,42,38,.06);
  --radius: 20px;
  --radius-s: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
img, svg, video, iframe { display: block; max-width: 100%; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 2;
  font-feature-settings: "palt";
}

a { color: var(--accent-deep); }
a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; padding-left: 0; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 18px; z-index: 100; }
.skip:focus { left: 0; }

.wrap   { width: min(1320px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(1000px, calc(100% - 48px)); margin-inline: auto; }

/* ---------------------------------------------------------- ヘッダー */

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  width: min(1400px, calc(100% - 40px)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
/* マークはファビコン（assets/favicon.svg）と同じ図形。viewBox は 32。
   ファインダーの枠まで入っているので、23pxだと潰れる。28pxまで上げてある。 */
/* 2026-09-08 ロゴ刷新。マークは「家の輪郭＋手前のカメラ＋足元の曲線」で横長（viewBox 1000×894）。
   タンの角丸チップに載せると線画が沈むので、チップは外して地に直接置いている。 */
.brand-mark { width: 48px; height: 43px; display: grid; place-items: center; flex: none; }
.brand-mark svg { width: 48px; height: 43px; }
/* サービス名はロゴタイプと同じ組みで再現する。ロゴを画像で貼らずテキストのままにしているので、
   コピーも検索もできる。ここをゴシックや等幅に戻すと、ロゴ・名刺と書体が食い違う。
   組みの正：ヒラギノ明朝 W3 ／ 長体85% ／ 助詞「の」だけ 0.68倍（名刺・ロゴ一式と同じ）。
   長体は transform なので box の幅は縮まない。右に15%ぶんの余白が残るので
   margin-right で打ち消してある（font-size を変えたらここも計算し直すこと）。 */
.brand-name b {
  display: inline-block; font-family: var(--serif); font-size: 21px; line-height: 1.3;
  letter-spacing: .08em;
  transform: scaleX(.85); transform-origin: left center;
  margin-right: -1.05em;
}
/* ⚠️ 下の `.brand-name span` が「株式会社OneTrack」用に display:block と小さい灰色を当てている。
   「の」もspanなので巻き込まれて、行が折れて消える（実際に一度そうなった）。ここで戻す。 */
.brand-name b .p { display: inline; font-size: .68em; color: inherit; letter-spacing: inherit; }
.brand-name span { display: block; font-size: 10.5px; color: var(--ink-3); letter-spacing: .04em; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--accent-soft); }
.nav-cta, .nav-cta:hover {
  background: var(--accent); color: #fff !important; border-radius: 999px;
  padding: 12px 26px !important; border-bottom: 0 !important;
}

/* ---------------------------------------------------------- 共通 */

section { padding-block: 100px; }
.sec-soft   { background: var(--bg-soft); }
/* .sec-deep はもともと #2F2A26 のほぼ黒だったが、実家の話をする面としては怖い、
   という指摘を受けて温かいタンに変えた。面としての差は残しつつ、緊張感は出さない。 */
.sec-deep   { background: var(--tan); color: var(--ink); }
.sec-accent { background: var(--accent); color: #fff; }

.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.68; }
.sec-head h2.quote-h { font-family: var(--serif); font-size: clamp(23px, 3vw, 34px); }
.sec-head p { margin-top: 18px; color: var(--ink-2); font-size: 16px; }
.sec-accent .sec-head p { color: rgba(255,255,255,.82); }
.sec-foot { margin-top: 40px; text-align: center; font-size: 17px; font-weight: 700; color: var(--accent-deep); }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--accent-deep); background: var(--accent-soft);
  border-radius: 999px; padding: 8px 16px; line-height: 1.5;
}

.btn {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 700;
  font-size: 17px; text-decoration: none; border-radius: 999px;
  padding: 21px 40px; line-height: 1.4;
  box-shadow: 0 6px 18px rgba(217,117,52,.28);
}
.btn:hover { background: var(--accent-deep); }
.btn.ghost {
  background: var(--paper); color: var(--ink); border: 1.5px solid var(--line);
  box-shadow: none; font-size: 16px; padding: 20px 32px;
}
.btn.ghost:hover { background: var(--bg-soft); }

/* ---------------------------------------------------------- ヒーロー */

/* ヒーローの背景＝実家の外観（ChatGPT生成・assets/photo-gaikan.*）。
   前景のカードには「撮影の様子」を置いている。当初は逆だったが、
   背景の人物がカードの裏に隠れて意味をなさなかったので入れ替えた。
   ⚠️ 重ねる順は「ベールのグラデーション → 画像」。逆にすると左の見出しが写真に沈む。 */
.hero {
  padding-block: 96px;
  position: relative;
  /* 背景は「濃くていい」との指示で、右端で写真が36%まで出る設定にしてある。
     左は見出しが載るので不透明のまま。ここを緩めると本文が読めなくなる。 */
  background-image:
    linear-gradient(rgba(253,251,247,1) 0%, rgba(253,251,247,0) 10%),
    linear-gradient(100deg,
      rgba(253,251,247,1)   0%,
      rgba(253,251,247,.98) 28%,
      rgba(253,251,247,.86) 48%,
      rgba(253,251,247,.70) 74%,
      rgba(253,251,247,.64) 100%),
    image-set(url("../assets/photo-gaikan.webp") type("image/webp"),
              url("../assets/photo-gaikan.jpg")  type("image/jpeg"));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, center, 62% 42%;
}
@supports not (background-image: image-set(url("x.webp") type("image/webp"))) {
  .hero { background-image:
    linear-gradient(rgba(253,251,247,1) 0%, rgba(253,251,247,0) 10%),
    linear-gradient(100deg,
      rgba(253,251,247,1) 0%, rgba(253,251,247,.98) 28%,
      rgba(253,251,247,.86) 48%, rgba(253,251,247,.70) 74%,
      rgba(253,251,247,.64) 100%),
    url("../assets/photo-gaikan.jpg"); }
}
/* 下端をページ地色に溶かして、次のセクションとの継ぎ目を出さない */
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 180px;
  background: linear-gradient(rgba(253,251,247,0), var(--bg));
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.hero h1 { margin-top: 26px; font-size: clamp(32px, 5vw, 54px); line-height: 1.65; letter-spacing: .01em; }
.hero-lead { margin-top: 26px; color: var(--ink-2); font-size: 17px; line-height: 2.1; }
.hero-lead + .hero-lead { margin-top: 22px; }
.hero-btns { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-3); line-height: 1.9; }
/* ヒーローの写真。ChatGPT生成なので「※写真はイメージです」を必ず添える（.hero-credit）。
   画像は 16:9 のまま持っておき、object-fit で 520×460 に切る。
   object-position を右寄りにしているのは、家が画面の右側にいるため。 */
.hero-art { position: relative; width: 520px; flex: none; }
.hero-art img {
  /* 撮影の様子（16:9）を 520×460 に切る。88%でふたりが中央に収まる。実測で決めた値 */
  width: 520px; height: 460px; object-fit: cover; object-position: 88% 50%;
  border-radius: 24px; background: var(--bg-soft);
}
/* ファインダーの四隅。写真になってもブランドの合図を残す */
.hero-finder {
  position: absolute; inset: 24px; pointer-events: none;
  background:
    linear-gradient(#fff,#fff) left  top    / 28px 4px no-repeat,
    linear-gradient(#fff,#fff) left  top    / 4px 28px no-repeat,
    linear-gradient(#fff,#fff) right top    / 28px 4px no-repeat,
    linear-gradient(#fff,#fff) right top    / 4px 28px no-repeat,
    linear-gradient(#fff,#fff) left  bottom / 28px 4px no-repeat,
    linear-gradient(#fff,#fff) left  bottom / 4px 28px no-repeat,
    linear-gradient(#fff,#fff) right bottom / 28px 4px no-repeat,
    linear-gradient(#fff,#fff) right bottom / 4px 28px no-repeat;
  opacity: .92;
}
.hero-credit { margin-top: 10px; font-size: 12px; color: var(--ink-3); text-align: right; }

/* ---------------------------------------------------------- いつ撮るか（3分類）

   「家がなくなるまでの残り時間」という1軸で3つに分けたセクション。
   3枚のイラストは人物・家がまったく同じで、右上のバッジと窓の灯りだけが違う。
   カードの色分け（左上の細い帯）も、その時間軸の順に濃さが下がるようにしてある。
   ------------------------------------------------------------------------- */

.when-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.when {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 32px 32px; display: flex; flex-direction: column;
  border-top: 5px solid var(--line);
}
/* 並びは 住んでいる → 空いている → 見送り。
   色も緑→茶→橙と、家の一日が暮れていく順に置いている。
   （以前は残り時間の短い順に赤から並べていたが、急かして見えるのでやめた） */
.w-live { border-top-color: var(--green); }
.w-rest { border-top-color: #B98C63; }
.w-send { border-top-color: var(--accent); }

/* ChatGPT生成のイラスト。カード幅いっぱいに出す。
   もとの手描きSVG用に max-width:260px を掛けていたが、写真的なイラストだと小さすぎた。 */
.when-art { width: 100%; height: auto; margin: 0 0 4px; border-radius: 12px; }
.when-t { display: block; font-size: 21px; line-height: 1.65; }
.when-sub { margin-top: 8px; font-size: 13.5px; color: var(--ink-3); line-height: 1.8; }
.when-body { margin-top: 16px; font-size: 15px; color: var(--ink-2); line-height: 1.95; }
.when-note {
  margin-top: auto; padding-top: 20px; font-size: 14px; font-weight: 700; line-height: 1.8;
}
.when-note::before {
  content: ""; display: block; width: 28px; height: 2px; margin-bottom: 14px; background: currentColor;
}
.w-live .when-note { color: #4F6046; }
.w-rest .when-note { color: #8E684A; }
.w-send .when-note { color: var(--accent-deep); }

/* 事後（もう壊してしまった方）を受ける囲み。
   3枚と同じ強さで見せると「あなたはもう手遅れ」と読めるので、静かな面にしている。 */
.after-note {
  max-width: 760px; margin: 28px auto 0; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 22px 28px; font-size: 14.5px; color: var(--ink-2); line-height: 1.95;
}
.after-note b { color: var(--ink); }

/* ---------------------------------------------------------- 基本思想（濃い面） */

.creed-body { max-width: 820px; margin: 0 auto 56px; text-align: center; color: var(--ink-2); font-size: 17px; }
.creed-body p + p { margin-top: 20px; }
.creed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.creed-grid li {
  background: var(--paper); border: 1px solid #E0D2BC;
  border-radius: var(--radius); padding: 36px;
}
.creed-grid .num { display: block; font-size: 13px; color: var(--accent-deep); }
.creed-grid .ttl { display: block; margin-top: 12px; font-size: 21px; line-height: 1.7; }
.creed-grid p { margin-top: 14px; color: var(--ink-2); font-size: 15px; }

/* ---------------------------------------------------------- 無料スライドショー

   フロント商品。ページ内で唯一のアクセント面（.sec-accent）を割り当てている。
   ここを見つけてもらえないと導線が成立しないので、面ごと色を変えて浮かせる。
   ------------------------------------------------------------------------- */

/* 3ステップの図。文字の塊をやめて、時間順に読ませる。
   .sec-accent が color:#fff を継承させるので、白い面に載せる文字は色を戻すこと。 */
.free-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  counter-reset: fs;
}
.free-steps li {
  position: relative; background: var(--paper); color: var(--ink);
  border-radius: var(--radius); padding: 30px 28px 28px; text-align: center;
}
/* ステップ間の矢印。最後だけ出さない */
.free-steps li:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -16px; z-index: 1;
  width: 12px; height: 12px; margin-top: -6px;
  border-top: 3px solid rgba(255,255,255,.9); border-right: 3px solid rgba(255,255,255,.9);
  transform: rotate(45deg);
}
.fs-num {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--accent-deep);
}
.fs-icon { width: 56px; height: 56px; margin: 10px auto 14px; }
.free-steps b { display: block; font-size: 19px; line-height: 1.6; }
.fs-sub { display: block; margin-top: 8px; font-size: 14px; color: var(--ink-2); line-height: 1.85; }

/* 預かり方の約束。最大の障壁への答えなので、目立つ位置に短く置く */
.free-safety {
  margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px;
}
.free-safety li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; }
.free-safety .check { width: 24px; height: 24px; font-size: 12px; background: rgba(255,255,255,.22); }

.free-why {
  margin: 36px auto 0; max-width: 720px; text-align: center;
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius); padding: 32px 36px;
}
.free-why h3 { font-size: 20px; line-height: 1.6; color: var(--ink); }
.free-why p { margin-top: 14px; font-size: 15px; color: var(--ink-2); line-height: 1.95; }
.free-cta { margin-top: 24px; }
.free-cta .btn { background: var(--accent-deep); }
.free-cta .btn:hover { background: var(--deep); }

/* ---------------------------------------------------------- 料金プラン */

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.path {
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; display: flex; flex-direction: column;
}
.path header { padding: 22px 32px; color: #fff; }
.path header span { display: block; font-size: 12px; opacity: .82; }
.path header b { display: block; font-size: 26px; line-height: 1.4; }
.p-keep header { background: var(--green); }
.p-use  header { background: var(--accent); }
.p-let  header { background: #6B625A; }
.path-body { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.path-lead { font-size: 19px; font-weight: 700; line-height: 1.85; }
.path-body ul { display: flex; flex-direction: column; gap: 12px; }
.path-body li { position: relative; padding-left: 18px; color: var(--ink-2); font-size: 14.5px; line-height: 1.9; }
.path-body li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 6px; height: 6px; border-radius: 999px; background: currentColor; opacity: .5; }
.p-keep .path-body li::before { background: var(--green); opacity: 1; }
.p-use  .path-body li::before { background: var(--accent); opacity: 1; }
.p-let  .path-body li::before { background: #6B625A; opacity: 1; }
.path header em { display: block; margin-top: 6px; font-style: normal; font-size: 30px; font-weight: 700; line-height: 1.2; }
.who { margin-top: auto; background: var(--bg-soft); border-radius: var(--radius-s); padding: 16px 18px; font-size: 14px; line-height: 1.85; }
.who b { display: block; font-size: 12px; color: var(--ink-3); }

/* 家財の片付け（オプション）。
   ※の中に埋めると読まれないので、面を分けて独立した枠にしている。
   これは料金の話というより「片付いていないから頼めない」の除去なので、目立つ位置に置く。 */
.option {
  margin-top: 40px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px;
  background: var(--bg-soft); border-radius: var(--radius); padding: 40px;
}
.option-label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--paper); background: var(--ink); border-radius: 999px; padding: 6px 14px;
}
.option-head h3 { margin-top: 16px; font-size: 26px; line-height: 1.6; }
.option-lead { margin-top: 14px; font-size: 15px; color: var(--ink-2); line-height: 1.95; }
.option-price {
  margin-top: 20px; font-size: 32px; font-weight: 700; line-height: 1.3; color: var(--accent-deep);
}
.option-price em { font-style: normal; font-size: 14px; font-weight: 400; color: var(--ink-3); margin-left: 8px; }
.option-list { display: flex; flex-direction: column; gap: 16px; }
.option-list li { background: var(--paper); border-radius: var(--radius-s); padding: 18px 22px; }
.option-list b { display: block; font-size: 16px; line-height: 1.7; }
.option-list p { margin-top: 6px; font-size: 14px; color: var(--ink-2); line-height: 1.9; }

/* 比較表。カードは「どれを選ぶか」、表は「何が違うか」で役割を分けている。
   狭い画面では表の中だけを横に流す（ページ本体は絶対に横スクロールさせない）。 */
.table-scroll { margin-top: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.plan-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--paper); }
.plan-table caption { text-align: left; font-size: 13px; color: var(--ink-3); padding-bottom: 10px; }
.plan-table th, .plan-table td {
  border: 1px solid var(--line); padding: 14px 16px;
  font-size: 14.5px; line-height: 1.8; text-align: center; vertical-align: middle;
}
.plan-table thead td { border: 0; background: transparent; }
.plan-table thead th { background: var(--bg-soft); padding: 18px 16px; }
.plan-table thead th b { display: block; font-size: 15px; }
.plan-table thead th em { display: block; margin-top: 4px; font-style: normal; font-size: 22px; color: var(--accent-deep); }
.plan-table tbody th { background: var(--bg-soft); text-align: left; font-size: 14px; white-space: nowrap; }
.plan-table td.yes { color: var(--accent-deep); font-size: 19px; font-weight: 700; }

/* ---------------------------------------------------------- 進め方 */

.steps { display: flex; flex-direction: column; gap: 20px; }
.steps li {
  background: var(--paper); border-radius: var(--radius);
  padding: 32px 36px; display: flex; gap: 28px; align-items: flex-start;
}
.step-num {
  width: 56px; height: 56px; border-radius: 999px; background: var(--accent);
  color: #fff; font-size: 20px; font-weight: 700; flex: none;
  display: grid; place-items: center; line-height: 1;
}
.steps h3 { font-size: 22px; line-height: 1.6; }
.steps h3 em {
  font-style: normal; font-size: 11.5px; font-weight: 700; vertical-align: 3px;
  color: var(--accent-deep); background: var(--accent-soft);
  border-radius: 999px; padding: 4px 10px; margin-left: 10px; white-space: nowrap;
}
.steps p { margin-top: 10px; color: var(--ink-2); font-size: 15px; }

/* ---------------------------------------------------------- 撮っておくべきものリスト

   自分で撮る人がそのまま印刷して使えることを狙っている。囲い込まない。
   印刷したときに1枚に収まるよう、@media print で余白と装飾を落としている。
   ------------------------------------------------------------------------- */

.shots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px;
}
.shots li { display: flex; flex-direction: column; gap: 12px; }
.shots img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-s); background: var(--paper);
}
.shots p {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.85;
}
.shots .check { width: 22px; height: 22px; font-size: 11px; flex: none; margin-top: 5px; }
.shots-credit { margin-top: 18px; text-align: right; font-size: 12px; color: var(--ink-3); }

/* ---------------------------------------------------------- 守ろうと決めたこと */

.keep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.keep-grid li {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px;
}
.check {
  width: 36px; height: 36px; border-radius: 999px; background: var(--green);
  color: #fff; font-size: 17px; font-weight: 700; display: grid; place-items: center; line-height: 1;
}
.keep-grid b { display: block; margin-top: 14px; font-size: 21px; line-height: 1.7; }
.keep-grid p { margin-top: 12px; color: var(--ink-2); font-size: 15px; }

/* ---------------------------------------------------------- うかがったお話 */

.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 36px 32px;
}
.voice::before { content: "“"; display: block; font-family: var(--serif); font-size: 46px; line-height: .8; color: var(--accent-soft); }
.voice blockquote { margin-top: 14px; font-family: var(--serif); font-size: 20px; line-height: 1.85; }
.voice p { margin-top: 16px; color: var(--ink-2); font-size: 14px; }
.voice figcaption { margin-top: 20px; padding-top: 18px; border-top: 2px solid var(--accent); border-top-width: 0; font-size: 12.5px; color: var(--ink-3); line-height: 1.75; position: relative; }
.voice figcaption::before { content: ""; position: absolute; top: 0; left: 0; width: 28px; height: 2px; background: var(--accent); }

/* ---------------------------------------------------------- FAQ */

.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 34px; }
.faq details + details { margin-top: 14px; }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 34px 24px 44px;
  font-size: 18px; font-weight: 700; line-height: 1.75; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 0; top: 24px;
  width: 30px; height: 30px; border-radius: 8px; background: var(--accent);
  color: #fff; font-size: 15px; display: grid; place-items: center;
}
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 34px;
  width: 10px; height: 10px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .answer { padding: 0 0 26px 44px; color: var(--ink-2); font-size: 15.5px; position: relative; }
.faq .answer::before {
  content: "A"; position: absolute; left: 0; top: 2px;
  width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft);
  color: var(--accent-deep); font-size: 15px; font-weight: 700; display: grid; place-items: center;
}

/* ---------------------------------------------------------- 運営者情報 */

.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.rep, .profile { background: var(--paper); border-radius: var(--radius); padding: 40px; }
/* 顔を出すことが、そのまま「家に入れてよい相手か」の判断材料になる。
   写真はビルメンと同一ファイル（producer-matsuo-ryosuke.jpg）。差し替えるときは両サイト直す。 */
.rep-head { display: flex; gap: 22px; align-items: center; margin-bottom: 26px; }
.rep-photo {
  width: 104px; height: 104px; flex: none; border-radius: 999px;
  object-fit: cover; object-position: 50% 22%; background: var(--bg-soft);
}
.rep-name { display: flex; flex-direction: column; }
.rep-name span { font-size: 13px; color: var(--ink-3); }
.rep-name b { font-size: 25px; line-height: 1.4; }
.rep > p { font-family: var(--serif); color: var(--ink-2); font-size: 16px; line-height: 2.1; }
.rep > p + p { margin-top: 16px; }
/* rep-name を .rep-head の中に入れたので、直下の p は本文だけになった。
   1つ目（＝書き出しの一行）を大きく見せる。 */
.rep > p:first-of-type { font-size: 21px; color: var(--ink); }
.profile { padding-block: 20px; }
/* サービスの定義文。AI検索は本文のパッセージを引用するので、カテゴリを断定する一文を
   運営者情報の面に置いている（見出しはメッセージ型のままにするため）。
   読み物ではなく事実の面なので、本文より一段落ち着かせる。 */
.profile-lead {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.profile dl { display: grid; grid-template-columns: 150px 1fr; }
.profile dt, .profile dd { padding: 18px 0; }
.profile dt { color: var(--ink-3); font-size: 14px; font-weight: 700; }
.profile dd { font-size: 15px; }
.profile dl > dt:not(:first-of-type),
.profile dl > dt:not(:first-of-type) + dd { border-top: 1px solid var(--line); }

/* ---------------------------------------------------------- CTA */

.contact { text-align: center; }
.contact h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.65; }
.contact > p { margin-top: 22px; font-size: 17px; color: rgba(255,255,255,.92); }
.contact-btns { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.contact .btn { background: var(--paper); color: var(--accent-deep); box-shadow: none; }
.contact .btn:hover { background: var(--bg-soft); }
.contact .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.contact .btn.ghost:hover { background: rgba(255,255,255,.12); }
.contact-note { margin-top: 26px; font-size: 13.5px; color: rgba(255,255,255,.8); }

/* ---------------------------------------------------------- フッター */

/* フッターも真っ黒（--deep）をやめ、温かい焦茶にしている */
.site-foot { background: var(--foot); color: rgba(255,255,255,.78); padding-block: 72px 40px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.foot-col h4 { font-size: 12px; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; }
.foot-col ul { margin-top: 16px; }
.foot-col li + li { margin-top: 9px; }
.foot-col a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-brand { margin-top: 16px; }
.foot-brand b { color: #fff; font-family: var(--serif); font-size: 19px; letter-spacing: .06em; }
.foot-brand p { margin-top: 12px; font-size: 13.5px; line-height: 1.9; }
.copyright { margin-top: 48px; font-size: 12px; color: rgba(255,255,255,.45); }

/* ---------------------------------------------------------- お問い合わせページ

   ⚠️ 2026-08-16 追加。8/15に contact/ を作ったとき、このCSSを入れ忘れていて
   フォームが素のHTMLのまま公開待ちになっていた。メインCTAの着地先なので最優先で修復。

   フォーム自体の設計はビルメンの /birumen-saiyo-douga/contact/ と同じ思想。
   ・入力欄は大きく（読み手に50〜70代を含む）
   ・必須／任意を色ではなくラベルの文字で示す（色覚に依存させない）
   ・.hp はハニーポット。人間には見えない位置に飛ばす（display:none にすると
     自動投稿側にも見えないので、あえて画面外に置く）
   ------------------------------------------------------------------------- */

.page-head { background: var(--bg-soft); padding-block: 72px 64px; }
.page-head h1 { margin-top: 14px; font-size: clamp(28px, 4vw, 40px); line-height: 1.55; }
.page-head > .narrow > p { margin-top: 22px; font-size: 17px; color: var(--ink-2); line-height: 2.05; }
.page-head-note, .thanks-note {
  margin-top: 22px !important; background: var(--paper); border-radius: var(--radius-s);
  padding: 18px 22px; font-size: 14.5px !important; line-height: 1.9;
}

.form-sec { padding-block: 72px 96px; }
.form-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: start; }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.form-lead { font-size: 15px; color: var(--ink-2); line-height: 1.95; margin-bottom: 28px; }
.field + .field, .form .field { margin-top: 24px; }
.field label { display: block; font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.req, .opt {
  display: inline-block; margin-left: 8px; border-radius: 999px;
  padding: 3px 10px; font-size: 11.5px; font-weight: 700; vertical-align: 2px;
}
.req { color: #fff; background: var(--accent-deep); }
.opt { color: var(--ink-3); background: var(--bg-soft); }

.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; line-height: 1.8; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 14px 16px;
}
.field textarea { resize: vertical; min-height: 200px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus {
  outline: 3px solid var(--accent); outline-offset: 1px; border-color: transparent; background: var(--paper);
}

/* ハニーポット。display:none にすると自動投稿にも見えなくなるので画面外に飛ばす */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form button[type="submit"] { margin-top: 32px; width: 100%; text-align: center; border: 0; cursor: pointer; }
.form-note { margin-top: 20px; font-size: 13.5px; color: var(--ink-3); line-height: 1.9; }

.care { background: var(--bg-soft); border-radius: var(--radius); padding: 32px; }
.care h2 { font-size: 17px; line-height: 1.7; }
.care ul { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.care li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.9; color: var(--ink-2); }
.care li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; border-radius: 999px; background: var(--accent);
}
.care li b { color: var(--ink); }
.care-tel { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.9; }
.care-tel a { font-size: 24px; font-weight: 700; text-decoration: none; letter-spacing: .02em; }
.care-tel span { color: var(--ink-3); font-size: 13px; }

/* -------------------------------------------------- プライバシーポリシー
   ・読み手は困って探しに来る。装飾より「見つかること」を優先する
   ・本文は 16px / 行間 2.0。ここも 50〜70代を含む前提を崩さない
   ・.legal-summary は法務文を読まない人が3つだけ持ち帰れるようにした要約
   ・.legal-note はオレンジの縦線つき。節のなかで「いちばん言いたい1文」に使う
   -------------------------------------------------------------------- */

.legal { padding-block: 64px 96px; }

.legal-summary {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 36px; display: flex; flex-direction: column; gap: 16px;
}
.legal-summary li {
  position: relative; padding-left: 24px; font-size: 16px; line-height: 1.95; font-weight: 700;
}
.legal-summary li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 9px; height: 9px; border-radius: 999px; background: var(--accent);
}

.legal-body { margin-top: 56px; }
.legal-sec + .legal-sec { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.legal-sec h2 { font-size: 19px; line-height: 1.7; letter-spacing: .01em; }
.legal-sec p { margin-top: 16px; font-size: 16px; line-height: 2.05; color: var(--ink-2); }
.legal-sec p b, .legal-sec li b, .legal-sec dd b { color: var(--ink); }

.legal-list { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.legal-list li {
  position: relative; padding-left: 22px; font-size: 16px; line-height: 2.0; color: var(--ink-2);
}
.legal-list li::before {
  content: ""; position: absolute; left: 2px; top: 13px;
  width: 7px; height: 7px; border-radius: 999px; background: var(--line);
  box-shadow: inset 0 0 0 2px var(--ink-3);
}

.legal-dl { margin-top: 18px; display: grid; grid-template-columns: 240px 1fr; gap: 12px 24px; }
.legal-dl dt { font-size: 15px; font-weight: 700; line-height: 1.9; }
.legal-dl dd { font-size: 16px; line-height: 1.95; color: var(--ink-2); }

.legal-note {
  margin-top: 20px !important; background: var(--bg-soft); border-radius: var(--radius-s);
  border-left: 3px solid var(--accent); padding: 18px 22px;
  font-size: 15px !important; line-height: 1.95; color: var(--ink) !important;
}

.legal-date { margin-top: 56px; font-size: 14px; color: var(--ink-3); }
.legal .hero-btns { margin-top: 32px; }


/* 送信前にポリシーへ行ける導線。ボタンの上に置く（下だと押したあとに気づく） */
.form-privacy {
  margin-top: 28px; padding: 16px 18px; background: var(--bg-soft);
  border-radius: var(--radius-s); font-size: 13.5px; line-height: 1.9; color: var(--ink-2);
}
.form .form-privacy + button[type="submit"] { margin-top: 20px; }
.care-more { margin-top: 22px; font-size: 13.5px; line-height: 1.9; }

/* ---------------------------------------------------------- レスポンシブ */

@media (max-width: 1180px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 13px; }
  .nav-cta { padding: 11px 18px !important; }
  .hero-inner { gap: 40px; }
  .hero-art { width: 420px; }
  .hero-art img { width: 420px; height: 372px; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { width: 100%; max-width: 520px; margin-inline: auto; }
  .hero-art img { width: 100%; height: auto; aspect-ratio: 16/10; }
  .when-grid, .creed-grid, .path-grid, .voice-grid { grid-template-columns: 1fr 1fr; }
  .shots { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; gap: 28px; }
  .option { grid-template-columns: 1fr; gap: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .site-nav a:not(.nav-cta) { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  section { padding-block: 68px; }
  .wrap, .narrow { width: calc(100% - 36px); }
  .when-grid, .creed-grid, .path-grid, .voice-grid,
  .keep-grid, .company-grid, .free-steps { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
  .free-steps li:not(:last-child)::after { top: auto; bottom: -16px; right: 50%;
    margin: 0 -6px 0 0; transform: rotate(135deg); }
  .when-art { max-width: 220px; }
  /* 表だけは1カラムに潰さず、横スクロールで読ませる。
     縦に割ると「どれとどれを比べているのか」が消えてしまうため。 */
  .table-scroll { width: 100vw; margin-left: calc(50% - 50vw); padding-inline: 18px; }
  .rep-head { gap: 16px; }
  .rep-photo { width: 84px; height: 84px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  /* 読み手に50〜70代を含むので、指で押せる高さを確保する（既定は約28px） */
  .foot-col a { display: inline-block; padding-block: 7px; }
  .foot-col li + li { margin-top: 2px; }
  .profile dl { grid-template-columns: 1fr; }
  .profile dt { padding-bottom: 0; }
  .profile dd { padding-top: 4px; }
  .profile dl > dt:not(:first-of-type) + dd { border-top: 0; }
  .steps li { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .steps h3 em { display: inline-block; margin-left: 0; margin-top: 6px; }
  .rep, .profile, .form, .care { padding: 28px 24px; }
  .page-head { padding-block: 52px 44px; }
  .form-sec { padding-block: 52px 72px; }
  .when, .keep-grid li, .creed-grid li, .voice { padding: 24px 24px 28px; }
  .faq details { padding-inline: 22px; }
  .faq summary { font-size: 16.5px; padding-right: 26px; }
  .btn { width: 100%; text-align: center; }
  .hero-btns, .contact-btns { flex-direction: column; align-items: stretch; }
}

@media (max-width: 560px) {
  .brand-name span { display: none; }
  .brand-name b { font-size: 17px; }
  .nav-cta { padding: 10px 14px !important; font-size: 12.5px; }
  html { scroll-padding-top: 68px; }
  .head-inner { min-height: 62px; }
}

/* ---------------------------------------------------------- 印刷

   「撮っておくべきものリスト」を印刷して実家に持っていける、と本文で約束している。
   その約束を果たすための指定。ヘッダー・フッター・他セクションを落として、
   リストだけが紙に載るようにする。
   ------------------------------------------------------------------------- */

@media print {
  .site-head, .site-foot, .skip,
  .hero, #reasons, #creed, #free, #plans, #steps, #keep, #voices, #faq, #company, #contact {
    display: none !important;
  }
  body { background: #fff; font-size: 12pt; line-height: 1.7; }
  #shots { padding: 0; }
  .narrow { width: 100%; }
  .sec-head h2 { font-size: 20pt; }
  .shots { border: 0; border-radius: 0; padding: 0; gap: 0 24px;
           grid-template-columns: 1fr 1fr; }
  .shots li { padding: 7px 0; font-size: 11pt; break-inside: avoid; display: block; }
  /* 印刷は「持っていけるチェックリスト」が目的なので、写真は落とす */
  .shots picture, .shots img, .shots-credit { display: none !important; }
  .shots p { display: flex; }
  .shots .check {
    background: #fff; color: #000; border: 1.2pt solid #000;
    border-radius: 3px; width: 15pt; height: 15pt; font-size: 0; margin-top: 4px;
  }
}

/* プライバシーポリシー：定義リストの2カラムを解除する */
@media (max-width: 720px) {
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-dl dd + dt { margin-top: 16px; }
  .legal-summary { padding: 26px 24px; }
  .legal-sec + .legal-sec { margin-top: 36px; padding-top: 36px; }
}
