@charset "UTF-8";
/* ==========================================================================
   KACHIARU市場 LP / エディトリアル・デザインシステム v2
   株式会社DOUBLE CONNECTION 様  ／  制作 lowgear

   設計方針
   1. 見出し・本文・表・FAQ はすべて実テキスト。画像に文字を焼き込まない。
   2. 写真は「層」として分離する。差し替えは img の src を入れ替えるだけ。
   3. 表示上の主役は巨大な日本語タイポグラフィと色面。写真がなくても成立させる。
   4. 装飾は強いが、読ませる箇所（本文・表・フォーム）は可読性を最優先する。
      ターゲットは30代から70代以降。本文17px以上、行間1.9、タップ領域56px以上。
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Webフォント
   このページで実際に使う文字だけを残したサブセットを自前で持つ。
   外部CDNに依存しないので、貴社サーバーだけで完結し、表示も速い。
   本文に新しい漢字を足したときは `python tools/build_fonts.py` で作り直す。
   作り直しを忘れても、端末標準のゴシックへ落ちるだけで豆腐にはならない。
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-subset.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-subset.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   1. リセット
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ol, ul { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   2. トークン
   共通の骨格は同じ。個人向けと業者向けはパレットだけを差し替える。
   -------------------------------------------------------------------------- */
:root {
  --ff-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
           "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --ff-en: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --line: 1.9;
  --line-tight: 1.62;

  /* 余白。セクション間は思い切り空ける */
  --gap-section: clamp(84px, 11vw, 168px);
  --gap-block: clamp(36px, 5vw, 72px);
  --pad-x: clamp(20px, 5vw, 56px);
  --wrap: 1180px;
  --wrap-narrow: 780px;

  --radius: 6px;
  --radius-lg: 20px;

  --line-green: #06C755;
  --ink-invert: #FFFFFF;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* 個人のお客様向け -----------------------------------------------------------
   明るく高彩度。差し色の青が画面を締め、記憶に残る色の衝突をつくる。 */
.theme-personal {
  --paper:   #FBF6EA;   /* 地 */
  --paper-2: #FFFFFF;
  --ink:     #12100C;   /* 文字 */
  --ink-mut: #5E574A;   /* 補助文字 */
  --key:     #FFD23D;   /* 主役の色面 */
  --key-2:   #FF5A1F;   /* 強調 */
  --pop:     #1B3BFF;   /* ポイントカラー（差し色） */
  --rule:    #12100C;
  --tint:    #F3ECDB;
}

/* 業者様向け -----------------------------------------------------------------
   同じ骨格のまま彩度を落として締める。数字が読みやすい配色にする。 */
.theme-business {
  --paper:   #F4F0E7;
  --paper-2: #FFFFFF;
  --ink:     #101822;
  --ink-mut: #55606E;
  --key:     #E8620E;
  --key-2:   #14203A;
  --pop:     #00C79A;
  --rule:    #101822;
  --tint:    #E7E1D4;
}

/* --------------------------------------------------------------------------
   3. ベース
   -------------------------------------------------------------------------- */
body {
  font-family: var(--ff-jp);
  font-weight: 400;
  font-size: 17px;
  line-height: var(--line);
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "palt" 1;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 18px; } }

p { line-height: var(--line); }
strong, b { font-weight: 700; }

::selection { background: var(--pop); color: #fff; }

:focus-visible {
  outline: 3px solid var(--pop);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   4. レイアウト
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section {
  position: relative;
  padding-block: var(--gap-section);
}
.section--tight { padding-block: clamp(56px, 7vw, 104px); }
.section--clip { overflow: hidden; }
.section--paper2 { background: var(--paper-2); }
.section--tint { background: var(--tint); }

/* 12カラム。意図的に非対称へ割り付ける */
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2.4vw, 32px);
  row-gap: var(--gap-block);
}

/* --------------------------------------------------------------------------
   5. タイポグラフィ
   日本語は palt と詰めで組む。欧文は Archivo の幅軸で長体にする。
   -------------------------------------------------------------------------- */

/* 巨大ディスプレイ。ロゴのように扱う。
   極太かつ詰めすぎると圧が強く読みにくくなるため、
   ウェイトは800、字間は palt のうえで -.02em に留め、行間に少し余裕を持たせる。 */
.d1, .d2, .d3 {
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  font-feature-settings: "palt" 1;
  text-wrap: balance;
}
.d1 { font-size: clamp(44px, 12.2vw, 132px); }
.d2 { font-size: clamp(34px, 7.4vw, 82px); line-height: 1.1; }
.d3 { font-size: clamp(25px, 3.6vw, 40px); line-height: 1.34; letter-spacing: -.015em; }

/* 縦につぶした都市型の見え。ヒーローなど限定で使う */
.condense {
  display: inline-block;
  transform: scaleX(.9);
  transform-origin: 0 50%;
}

/* アウトライン文字 */
.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
}
.stroke--key { -webkit-text-stroke-color: var(--key-2); }
.stroke--pop { -webkit-text-stroke-color: var(--pop); }
@media (min-width: 768px) { .stroke { -webkit-text-stroke-width: 3px; } }

/* 色面で塗った文字 */
.fill {
  background: var(--key);
  padding: .04em .22em .1em;
  margin-inline: -.06em;
  display: inline-block;
  line-height: .96;
}
.fill--pop { background: var(--pop); color: #fff; }
.fill--ink { background: var(--ink); color: var(--paper); }

/* 下線を色面で引く。文字は読ませたまま印象だけ足す */
.under {
  background-image: linear-gradient(transparent 58%, var(--key) 58%, var(--key) 92%, transparent 92%);
}

/* 欧文サブコピー。長体で字間を開ける */
.en {
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 78;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: clamp(10px, 1.1vw, 12px);
  line-height: 1.4;
  color: var(--ink-mut);
}
.en--lg {
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: .18em;
  color: var(--ink);
}

/* 縦組みのラベル */
.vlabel {
  writing-mode: vertical-rl;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .34em;
  line-height: 1;
  white-space: nowrap;
}

/* セクション見出しのまとまり */
.sechead { margin-bottom: var(--gap-block); }
.sechead .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .18em;
  margin-bottom: 18px;
}
.sechead .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--key-2);
}
.sechead .lede {
  margin-top: 22px;
  max-width: 44em;
  color: var(--ink-mut);
  font-size: 1.02em;
}

/* 本文の読みやすさを守る箱 */
.prose { max-width: 40em; }
.prose p + p { margin-top: 1.1em; }

/* --------------------------------------------------------------------------
   6. 装飾（色面・図形）
   意味のある形だけを少量。余白埋めには使わない。
   -------------------------------------------------------------------------- */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco--dot {
  border-radius: 50%;
  background: var(--key);
}
.deco--ring {
  border-radius: 50%;
  border: 2px solid var(--pop);
}
.deco--frame { border: 2px solid var(--ink); }
.deco--bar { background: var(--key-2); }

/* 紙の粒子感。色面が平坦になりすぎるのを防ぐ */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.028) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}

/* --------------------------------------------------------------------------
   7. 画像スロット
   写真は必ずこの層に入れる。文字は焼き込まない。
   .figure--bleed は画面端で切る。
   -------------------------------------------------------------------------- */
.figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--tint);
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.figure--45  { aspect-ratio: 4 / 5; }
.figure--11  { aspect-ratio: 1 / 1; }
.figure--169 { aspect-ratio: 16 / 9; }
.figure--219 { aspect-ratio: 21 / 9; }

/* スロット名の表示。写真が入るまでの確認用。公開時は body から is-preview を外す */
.figure[data-slot]::after {
  content: attr(data-slot);
  display: none;
}
.is-preview .figure[data-slot]::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  padding: 6px 12px;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   8. ボタン
   高年齢層が押しやすい大きさを確保する。
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 16px 30px;
  font-weight: 900;
  font-size: 1.06em;
  letter-spacing: .02em;
  line-height: 1.4;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn .ico { width: 25px; height: 25px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 6px 0 #04A044;
}
.btn--line:hover { box-shadow: 0 8px 0 #04A044; }
.btn--line:active { box-shadow: 0 2px 0 #04A044; }

.btn--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--block { display: flex; width: 100%; max-width: 560px; }
.btn--lg { min-height: 72px; font-size: 1.14em; }

/* 狭い画面でラベルが2行に割れないよう、余白と字送りだけ詰める。
   タップ領域の高さは詰めない */
@media (max-width: 430px) {
  .btn { padding-inline: 20px; gap: 9px; letter-spacing: -.01em; }
  .btn--lg { font-size: 1.02em; }
  .btn .ico { width: 22px; height: 22px; }
}

.btn-note {
  margin-top: 14px;
  font-size: .9em;
  color: var(--ink-mut);
}

/* --------------------------------------------------------------------------
   9. ヘッダー
   -------------------------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.site-head .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}
.brand .mark {
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 82;
  font-size: 21px;
  letter-spacing: .04em;
}
.brand .mark em { font-style: normal; font-family: var(--ff-jp); letter-spacing: 0; }
.brand .sub { font-size: 11px; letter-spacing: .2em; color: var(--ink-mut); }
.site-head .btn { min-height: 46px; padding: 8px 20px; font-size: .92em; }
@media (max-width: 640px) { .site-head .btn { display: none; } }

/* --------------------------------------------------------------------------
   10. ヒーロー
   写真と文字を意図的に衝突させる。文字が写真に乗り、写真は画面端で切れる。
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2.4vw, 32px);
  align-items: start;
}
.hero-copy { grid-column: 1 / -1; grid-row: 1; position: relative; z-index: 3; }
.hero-media { grid-column: 1 / -1; grid-row: 2; margin-top: 34px; position: relative; }

@media (min-width: 900px) {
  .hero-copy  { grid-column: 1 / 8; grid-row: 1; padding-top: 24px; }
  /* 同じ行に置き、右端で切る */
  .hero-media {
    grid-column: 8 / -1;
    grid-row: 1;
    margin-top: 0;
    margin-right: calc(var(--pad-x) * -1 - (100vw - min(100vw, var(--wrap))) / 2);
  }
}

.hero .tagline {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .16em;
  padding: 8px 16px;
  margin-bottom: 22px;
}
/* ヒーローの見出しは折り返させない。行の切れ目は原稿側の span で決める。
   文字サイズは「見出しが載る段の幅」に合わせる。段幅は900pxで変わるため
   ブレークポイントごとに係数を分ける（vw を1本で通すと900px前後で溢れる）。 */
.hero h1 {
  font-size: clamp(34px, 11.4vw, 62px);   /* 900px未満＝段は全幅 */
  margin-bottom: 18px;
}
@media (min-width: 900px) {
  .hero h1 { font-size: clamp(44px, 6.6vw, 98px); }  /* 900px以上＝段は7/12 */
}
.hero h1 .row { display: block; white-space: nowrap; }
.hero h1 .row--2 { margin-left: .05em; }

.hero .en--lg { margin-bottom: 26px; }

.hero .sub {
  max-width: 30em;
  margin-bottom: 34px;
  font-size: 1.04em;
}
.hero .cta-area { position: relative; z-index: 4; }

/* 実績のバッジ。横並びで小さくまとめる */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 2px solid var(--rule);
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .94em;
}
.hero-facts .chk {
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--pop);
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

/* ヒーローの値札。数字そのものをグラフィックとして立てる */
.pricetag {
  position: absolute;
  z-index: 5;
  left: clamp(-72px, -4vw, -40px);
  bottom: clamp(38px, 5vw, 76px);
  transform: rotate(-6deg);
  background: var(--key);
  border: 2px solid var(--ink);
  padding: 12px 20px 14px;
  box-shadow: 8px 8px 0 var(--ink);
}
.pricetag .lbl {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: 2px;
}
.pricetag .num {
  display: block;
  font-weight: 900;
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.pricetag .num .yen { font-size: .62em; margin-right: .06em; }
@media (max-width: 899px) { .pricetag { display: none; } }

.hero .deco--dot   { width: clamp(180px, 30vw, 380px); aspect-ratio: 1; right: -6%; top: -8%; }
.hero .deco--ring  { width: clamp(120px, 18vw, 230px); aspect-ratio: 1; left: -7%; bottom: 6%; }

/* 画面をまたいで端で切れる欧文。装飾だが実テキストで置く */
.bleed-type {
  position: absolute;
  z-index: 1;
  left: -2vw;
  bottom: clamp(-16px, -1.4vw, -6px);
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 66;
  font-weight: 900;
  font-size: clamp(62px, 15.5vw, 208px);
  line-height: .78;
  letter-spacing: -.035em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--ink) 20%, transparent);
  user-select: none;
}
@media (min-width: 768px) { .bleed-type { -webkit-text-stroke-width: 3px; } }

/* 許可番号の帯 */
.license-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .06em;
  text-align: center;
  padding: 10px var(--pad-x);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. 買取実例
   価格を主役にする。1枚だけ大きくしてリズムを崩す。
   -------------------------------------------------------------------------- */
.price-reel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 700px) { .price-reel { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; } }

.price-card {
  position: relative;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 172px;
}
@media (min-width: 700px) {
  .price-card { grid-column: span 2; min-height: 210px; }
  /* 1枚だけ大きく、1枚だけ下げる */
  .price-card--hero { grid-column: span 3; background: var(--key); }
  .price-card--wide { grid-column: span 3; }
  .price-card--drop { transform: translateY(26px); }
}
.price-card .item {
  font-weight: 700;
  font-size: .95em;
  letter-spacing: .02em;
  line-height: 1.5;
}
.price-card .amount {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
  margin-top: 18px;
}
.price-card--hero .amount { font-size: clamp(44px, 7.4vw, 84px); }
.price-card .amount .yen { font-size: .56em; margin-right: .04em; }
.price-card .cond {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--pop);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 5px 10px;
}
.price-note {
  margin-top: 46px;
  font-size: .94em;
  color: var(--ink-mut);
  max-width: 46em;
}

/* --------------------------------------------------------------------------
   12. 取り扱い品目のタグ
   -------------------------------------------------------------------------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.tags li {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .96em;
  background: var(--paper-2);
}
.tags li:nth-child(3n) { background: var(--key); }
.tags li:nth-child(7n) { background: var(--ink); color: var(--paper); }

.callout {
  margin-top: var(--gap-block);
  border-left: 10px solid var(--key-2);
  background: var(--paper-2);
  padding: 26px 26px 26px 28px;
  font-size: 1.06em;
  line-height: 1.85;
}
.callout .em {
  font-weight: 900;
  background-image: linear-gradient(transparent 60%, var(--key) 60%);
}

/* --------------------------------------------------------------------------
   13. お約束・強みのカード
   -------------------------------------------------------------------------- */
.promises {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr));
}
.promise {
  position: relative;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 30px 26px 28px;
}
.promise .no {
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 70;
  font-weight: 900;
  font-size: 62px;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 2px var(--key-2);
  display: block;
  margin-bottom: 14px;
}
.promise h3 {
  font-size: 1.24em;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.005em;
  margin-bottom: 12px;
}
.promise p { font-size: .97em; color: var(--ink-mut); }
.promise:nth-child(2) { background: var(--key); }
.promise:nth-child(2) p { color: var(--ink); }

/* --------------------------------------------------------------------------
   14. ご利用の流れ
   番号を巨大アウトラインで左端から切る。
   -------------------------------------------------------------------------- */
.flow { counter-reset: step; }
.flow > li {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 18px;
  padding-block: 30px;
  border-top: 2px solid var(--rule);
}
.flow > li:last-child { border-bottom: 2px solid var(--rule); }
@media (min-width: 768px) {
  .flow > li { grid-template-columns: 190px 1fr; column-gap: 40px; padding-block: 44px; }
}
.flow .no {
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 68;
  font-weight: 900;
  font-size: clamp(52px, 11vw, 132px);
  line-height: .78;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  letter-spacing: -.04em;
  align-self: start;
}
@media (min-width: 768px) { .flow .no { -webkit-text-stroke-width: 3px; margin-left: -.06em; } }
.flow li:nth-child(odd) .no { -webkit-text-stroke-color: var(--key-2); }
.flow h3 {
  font-size: 1.32em;
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1.55;
  margin-bottom: 10px;
}
.flow p { color: var(--ink-mut); max-width: 38em; }
.flow .figure { margin-top: 22px; max-width: 560px; }

/* --------------------------------------------------------------------------
   15. きっかけ／用途の3枚
   写真の上に文字を重ねず、隣に置いて衝突させる。
   -------------------------------------------------------------------------- */
.scenes {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.scene { position: relative; }
.scene .figure { margin-bottom: 20px; }
.scene .idx {
  position: absolute;
  top: -14px; left: -6px;
  z-index: 2;
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 70;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
}
.scene h3 {
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1.55;
  margin-bottom: 10px;
}
.scene p { font-size: .97em; color: var(--ink-mut); }
.scene:nth-child(2) { margin-top: clamp(0px, 4vw, 52px); }

/* --------------------------------------------------------------------------
   16. 表
   ここは装飾より可読性。横スクロールで逃がす。
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid var(--ink);
  background: var(--paper-2);
}
.tbl {
  width: 100%;
  min-width: 640px;
  font-size: .98em;
}
.tbl th, .tbl td {
  padding: 18px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  text-align: left;
  vertical-align: top;
  line-height: 1.72;
}
.tbl thead th {
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  font-size: .92em;
  letter-spacing: .06em;
  white-space: nowrap;
}
.tbl thead th.ours { background: var(--key-2); color: #fff; }
.tbl tbody th {
  font-weight: 900;
  background: var(--tint);
  white-space: nowrap;
}
.tbl td.ours { background: color-mix(in srgb, var(--key) 24%, var(--paper-2)); font-weight: 700; }
.tbl .ok {
  display: inline-block;
  color: var(--key-2);
  font-weight: 900;
  font-size: 1.2em;
  margin-bottom: 2px;
}
.tbl tbody tr:last-child th, .tbl tbody tr:last-child td { border-bottom: none; }

.table-note {
  margin-top: 18px;
  font-size: .9em;
  color: var(--ink-mut);
}

/* 条件のスペック表。業者向けで数字を大きく見せる */
.spec {
  display: grid;
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
@media (min-width: 700px) { .spec { grid-template-columns: repeat(4, 1fr); } }
.spec > div {
  background: var(--paper-2);
  padding: 26px 22px 24px;
}
.spec dt {
  font-size: .86em;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--ink-mut);
  margin-bottom: 10px;
}
.spec dd {
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.spec dd .unit { font-size: .46em; letter-spacing: 0; margin-left: .2em; }
.spec > div:nth-child(2) { background: var(--key); }
.spec > div:nth-child(3) dd { color: var(--key-2); }

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 2px solid var(--rule); }
.faq details { border-bottom: 2px solid var(--rule); }
.faq summary {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.08em;
  line-height: 1.7;
  letter-spacing: 0;
  position: relative;
  min-height: 62px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 21px;
  line-height: 1.2;
  color: var(--key-2);
  flex: none;
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 32px;
  width: 16px;
  height: 3px;
  background: var(--ink);
  transition: transform .25s var(--ease);
}
.faq summary::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 32px;
  width: 16px;
  height: 3px;
  background: var(--ink);
  transform: rotate(90deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::before { transform: rotate(0deg); }
.faq .a {
  display: flex;
  gap: 16px;
  padding: 0 0 28px;
  color: var(--ink-mut);
}
.faq .a .mark {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 21px;
  color: var(--pop);
  flex: none;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   18. 会社情報
   -------------------------------------------------------------------------- */
.company dl {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}
@media (min-width: 620px) { .company dl { grid-template-columns: 190px 1fr; } }
.company dt {
  font-weight: 900;
  font-size: .92em;
  padding: 16px 0 4px;
}
.company dd {
  padding: 0 0 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
@media (min-width: 620px) {
  .company dt { padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); }
  .company dd { padding: 18px 0; }
}
.company a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   19. 最終CTA
   ページで一番強い色面。ここだけ全面を塗る。
   -------------------------------------------------------------------------- */
.final {
  position: relative;
  background: var(--key);
  color: var(--ink);
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 132px);
}
.theme-business .final { background: var(--key-2); color: var(--ink-invert); }
.theme-business .final .en { color: color-mix(in srgb, var(--ink-invert) 70%, transparent); }
.final .wrap { position: relative; z-index: 2; }
.final .en { color: color-mix(in srgb, var(--ink) 62%, transparent); margin-bottom: 18px; }

/* 背景写真。色面を主役に保ったまま奥行きだけ足す */
.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  background: none;
  aspect-ratio: auto;
}
.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  mix-blend-mode: multiply;
}
.theme-business .final-bg img { opacity: .22; mix-blend-mode: screen; }

/* 最終CTAの見出しも折り返させない。行の切れ目は原稿側で決める */
.final h2 {
  font-size: clamp(34px, 6.8vw, 92px);
  margin-bottom: 22px;
}
.final h2 .row { display: block; white-space: nowrap; }
@media (max-width: 400px) { .final h2 { font-size: 30px; } }
.final .lede { max-width: 34em; margin-bottom: 36px; font-size: 1.06em; }
.final .contacts {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid currentColor;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 46px;
  align-items: flex-end;
}
.final .tel .label { font-size: .88em; font-weight: 700; margin-bottom: 4px; }
.final .tel .num {
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 82;
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1;
  letter-spacing: -.02em;
  text-decoration: none;
  display: block;
}
.final .tel .hours { font-size: .88em; margin-top: 6px; }
.theme-business .final .btn--ghost { border-color: var(--ink-invert); color: var(--ink-invert); }

/* --------------------------------------------------------------------------
   20. フォーム
   -------------------------------------------------------------------------- */
.form {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: clamp(24px, 4vw, 44px);
  max-width: 720px;
}
.field { margin-bottom: 24px; }
.field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: .98em;
  margin-bottom: 10px;
}
.field .req {
  background: var(--key-2);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 3px;
}
.field input, .field textarea {
  width: 100%;
  border: 2px solid color-mix(in srgb, var(--ink) 34%, transparent);
  border-radius: var(--radius);
  padding: 15px 16px;
  font-size: 17px;
  line-height: 1.7;
  background: var(--paper-2);
  transition: border-color .18s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--pop); outline: none; }
.field textarea { min-height: 168px; resize: vertical; }
.form .privacy { font-size: .9em; color: var(--ink-mut); margin-bottom: 24px; }
.form-error {
  background: #FDECEC;
  border: 2px solid #C4362F;
  color: #9E2C26;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: .98em;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   21. フッター・追従CTA
   -------------------------------------------------------------------------- */
.site-foot {
  background: var(--ink);
  color: color-mix(in srgb, var(--paper) 84%, transparent);
  padding-block: clamp(48px, 6vw, 78px);
  font-size: .94em;
  line-height: 1.9;
}
.site-foot .fname {
  font-family: var(--ff-en);
  font-variation-settings: "wdth" 80;
  font-weight: 900;
  font-size: 27px;
  letter-spacing: .04em;
  color: var(--paper);
  margin-bottom: 18px;
}
.site-foot .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 26px 0 20px;
}
.site-foot .links a {
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-foot .note { font-size: .84em; opacity: .68; margin-top: 4px; }
.site-foot .copy { font-size: .84em; opacity: .68; }

.sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  padding: 10px var(--pad-x) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--ink);
  transform: translateY(102%);
  transition: transform .3s var(--ease);
}
.sticky.is-visible { transform: translateY(0); }
.sticky .btn { display: flex; width: 100%; min-height: 56px; }
@media (min-width: 900px) { .sticky { display: none; } }

/* --------------------------------------------------------------------------
   22. 出現アニメーション
   注意: .reveal に対する指定は必ずこの1組だけにする。
   子孫セレクタで opacity を上書きすると .is-in が負けて透明のまま残る。
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   23. ユーティリティ
   -------------------------------------------------------------------------- */
.sp-only { display: inline; }
@media (min-width: 700px) { .sp-only { display: none; } }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.mt-lg { margin-top: var(--gap-block); }

/* 印刷・PDF化のとき、アウトライン文字が消えないようにする */
@media print {
  .stroke, .flow .no, .promise .no, .scene .idx { -webkit-text-stroke-width: 1.4px; }
  .sticky, .site-head { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   迷惑メール対策の入力欄
   人には見えない位置に置く。自動送信プログラムだけが埋めるので、
   値が入っていたら form.php 側で送信を止める。
   display:none にしないのは、それだと埋めないプログラムがあるため。
   ============================================================ */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
