/* =========================================================
   ゼンホーム / テキカク不動産
   palette: navy #1C2A4D / gold #BFA063 / terracotta #C06223
   ========================================================= */

:root {
  --navy: #1C2A4D;
  --navy-deep: #16203A;
  --gold: #BFA063;
  --accent: #C06223;        /* CTA burnt orange */
  --accent-dark: #A4501A;
  --paper: #FAF8F4;         /* warm base */
  --surface: #F2EEE8;
  --line: #E2DDD4;
  --white: #FFFFFF;
  --ink: #23262B;
  --body: #4A4E55;
  --sub: #8A8780;

  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;

  --container: 1280px;
  --header-h: 96px;
  --pill: #F2E7DD;          /* center nav pill tint */

  --shadow-card: 0 12px 34px rgba(28, 42, 77, .07);
  --shadow-panel: 0 18px 44px rgba(28, 42, 77, .10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: clip; }

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  overflow-x: clip;   /* ウォーターマーク・輪装飾・ドロワーのはみ出し対策 */
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.sp-only { display: none; }

/* ---------- Buttons ----------
   右上の角抜き＝サイト共通モチーフ。
   金のハアライン枠が右下に5pxズレて重なり、ホバーで本体に吸い付く。 */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: 0 16px 0 0;
  cursor: pointer;
  white-space: nowrap;
}
/* ズレた金の輪郭＝主役CTA（primary）だけの特別装飾。
   全ボタンに付けると くどいので他はフラット */
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: inherit;
  transform: translate(5px, 5px);
  pointer-events: none;
  transition: transform .25s ease;
}
.btn--primary:hover::before { transform: translate(0, 0); }
.btn::after {                      /* 矢印（WFの▶に対応） */
  content: "→";
  font-size: .9em;
  line-height: 1;
  transition: transform .25s ease;
}
.btn:hover::after { transform: translateX(3px); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  font-size: 14px;
  transition: background .25s;
}
.btn--primary::after {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  font-size: 11px;
}
.btn--primary:hover { background: var(--accent-dark); }
.btn--primary:hover::after {
  background: var(--white);
  color: var(--accent-dark);
  transform: translateX(3px);
}

.btn--outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 14px 30px;
  font-size: 15px;
  background-color: transparent;
  background-image: linear-gradient(to right, var(--navy) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: right top;
  transition: color .3s ease, background-position .3s ease;
}
.btn--outline:hover { color: var(--white); background-position: left top; }

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, .7);
  color: var(--white);
  padding: 14px 30px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, .06);
  background-image: linear-gradient(to right, var(--white) 50%, rgba(255,255,255,0) 50%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: right top;
  transition: color .3s ease, background-position .3s ease;
}
.btn--outline-light:hover { color: var(--navy); background-position: left top; }

.btn--lg {
  padding: 18px 34px;
  font-size: 16px;
  letter-spacing: .08em;
  border-radius: 0 20px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn::before, .btn::after { transition: none; }
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(250,248,244,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: height .25s, box-shadow .25s, border-color .25s;
}
.header.is-scrolled {
  height: 74px;
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(28,42,77,.06);
}
.header__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark { display: block; width: 44px; height: auto; }
.logo__type { display: block; height: 19px; width: auto; }
.logo__sub {
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--sub);
  display: block;
  margin-top: 2px;
}

/* global nav — center pill */
.gnav {
  margin: 0 auto;
  background: var(--pill);
  border-radius: 999px;
  padding: 9px 26px;
}
.gnav__list { display: flex; align-items: center; gap: 24px; }
.gnav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
}
.gnav__list a { transition: color .2s; }
.gnav__list a:hover { color: var(--accent-dark); }
.caret {
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
}

/* header right — tel + CTA（WF①準拠） */
.header__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--navy);
  transition: color .2s;
}
.header__tel svg { color: var(--accent); }
.header__tel:hover { color: var(--accent-dark); }
.header__cta { padding: 13px 26px; font-size: 14px; }
.icon-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, transform .15s;
}
.icon-btn:hover { background: var(--accent-dark); }
.icon-btn:active { transform: scale(.95); }

/* hamburger (mobile) */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: none; border: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   First View — gallery (studio.CBR 系)
   ========================================================= */
.fv {
  position: relative;
  padding-top: var(--header-h);
  background: var(--paper);
}
.fv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr 1fr;
  height: calc(100vh - var(--header-h));
  min-height: 540px;
  max-height: 880px;
}

/* image columns */
.fv__img {
  position: relative;
  margin: 0;
  background-color: #4A4640;          /* 写真差し替え前のフォールバック */
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
}
.fv__img::after {                      /* 写真の上に乗せる薄い陰影 */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,42,77,.10) 0%, rgba(20,28,46,.52) 100%);
}
.fv__img--3 { border-radius: 0 96px 0 0; }   /* 右端の右上だけ大きく抜く */

/* 写真をじんわり動かす（ケンバーンズ）。ラベルは動かさない */
.fv__img-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
.fv__img--1 .fv__img-media { animation-duration: 26s; }
.fv__img--2 .fv__img-media { animation-duration: 32s; animation-direction: alternate-reverse; }
.fv__img--3 .fv__img-media { animation-duration: 22s; animation-delay: -8s; }
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.13) translate(-1.6%, -1.1%); }
}
@media (prefers-reduced-motion: reduce) {
  .fv__img-media { animation: none; transform: scale(1.04); }
}
.fv__label {
  position: absolute;
  left: 22px; bottom: 26px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .22em;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

/* center text column */
.fv__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 28px;
  text-align: center;
}
.fv__eyebrow {
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--accent);
  margin-bottom: 30px;
  font-weight: 500;
}
.fv__catch {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.9;
  letter-spacing: .14em;
  color: var(--navy);
  height: min(56vh, 460px);
  margin: 0 auto;
}
.fv__catch span { display: block; white-space: nowrap; }  /* 1フレーズ＝1列。途中折り返しを防ぐ */
.fv__catch span.is-accent { color: var(--accent); }
.fv__caption {
  margin-top: 34px;
}
.fv__caption > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--sub);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.fv__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: opacity .2s;
}
.fv__cta:hover { opacity: .8; }

/* scroll indicator */
.fv__scroll {
  position: absolute;
  bottom: 0; right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--sub);
}
.fv__scroll-line {
  width: 1px; height: 56px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.fv__scroll-line::after {
  content: "";
  position: absolute;
  top: -56px; left: 0;
  width: 1px; height: 56px;
  background: var(--accent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); }
  60%,100% { transform: translateY(112px); }
}

/* =========================================================
   Header / FV responsive
   ========================================================= */
@media (max-width: 1180px) {
  .header__inner { padding: 0 24px; gap: 16px; }
  .gnav { padding: 8px 18px; }
  .gnav__list { gap: 16px; }
  .gnav__list a { font-size: 13px; }
  .header__right { gap: 12px; }
  .header__tel { font-size: 16px; }
  .header__cta { padding: 12px 18px; font-size: 13px; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .header__inner { gap: 12px; }
  .header.is-scrolled { height: 56px; }
  .header__tel { display: none; }
  .header__cta { display: none; }
  .icon-btn { display: inline-flex; }
  .header__right { margin-left: auto; }   /* gnavがfixedでフローから抜けるため */
  .gnav {
    position: fixed;
    top: var(--header-h); right: 0;
    width: min(78vw, 320px);
    height: calc(100vh - var(--header-h));
    background: var(--white);
    border-left: 1px solid var(--line);
    border-radius: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    padding: 28px 28px;
    overflow-y: auto;
  }
  .gnav.is-open { transform: translateX(0); }
  .gnav__list { flex-direction: column; gap: 4px; }
  .gnav__list a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .gnav__list a::after { display: none; }
  .hamburger { display: flex; }
  .sp-only { display: inline; }

  /* FV: 中央コピーを上に、画像を下段3カラムへ */
  .fv__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "c c c" "i1 i2 i3";
    height: auto;
    max-height: none;
  }
  .fv__center { grid-area: c; padding: 44px 24px 32px; }
  .fv__catch {
    writing-mode: horizontal-tb;
    height: auto;
    line-height: 1.55;
    letter-spacing: .06em;
    font-size: clamp(24px, 6.2vw, 34px);
  }
  .fv__img { grid-area: var(--ga); border-radius: 0; height: 32vh; min-height: 210px; }
  .fv__img--1 { --ga: i1; }
  .fv__img--2 { --ga: i2; }
  .fv__img--3 { --ga: i3; border-radius: 0 44px 0 0; }
  .fv__label { font-size: 15px; left: 13px; bottom: 16px; letter-spacing: .14em; }
  .fv__scroll { display: none; }
}

@media (max-width: 600px) {
  .fv__center { padding: 36px 20px 28px; }
  .fv__eyebrow { margin-bottom: 18px; }
  .fv__img { height: 24vh; min-height: 156px; }
  .fv__label { font-size: 13px; }
  .logo__sub { display: none; }
  .logo__mark { width: 36px; }
  .logo__type { height: 16px; }
}

/* 背の低いノートPC：縦書きキャッチが画面高に収まらずヘッダーに隠れる／溢れるのを防ぐ。
   高さ(vh)に追従してフォント・キャッチ高・余白を縮小する（縦書きが有効なPCレイアウトのみ） */
@media (min-width: 901px) and (max-height: 860px) {
  .fv__grid { min-height: 0; }
  .fv__center { padding-top: 24px; padding-bottom: 20px; }
  .fv__eyebrow { margin-bottom: 16px; }
  .fv__catch {
    height: min(52vh, 400px);
    font-size: clamp(20px, 4.2vh, 34px);
    letter-spacing: .08em;
    line-height: 1.7;
  }
  .fv__caption { margin-top: 18px; }
  .fv__caption > p { margin-bottom: 10px; }
}
@media (min-width: 901px) and (max-height: 700px) {
  .fv__eyebrow { margin-bottom: 12px; }
  .fv__catch { height: min(50vh, 340px); font-size: clamp(18px, 3.9vh, 28px); letter-spacing: .05em; }
  .fv__caption { margin-top: 14px; }
}

/* =========================================================
   Content sections — 共通デザインシステム
   FVの意匠（角抜き・縦書き・明朝・金の細線）を下層まで一貫させる
   ========================================================= */
.container { width: min(1200px, 100% - 80px); margin-inline: auto; }
.section { position: relative; padding: 110px 0; overflow-x: clip; }
.section--alt { background: #F4EFE6; }
.section--tight { padding: 80px 0; }
.section--navy {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 0 120px 0 0;   /* FVの角抜きをセクション単位で再演 */
  overflow: hidden;
}

/* section head */
.sec-head { position: relative; margin-bottom: 60px; }
.sec-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .38em;
  color: var(--accent);
  margin-bottom: 20px;
}
.sec-head__eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.sec-head__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: .04em;
}
.sec-head__sub { margin-top: 16px; font-size: 15px; color: var(--sub); }
.sec-head--center { text-align: center; }
.sec-head--center .sec-head__eyebrow::after { content: ""; width: 36px; height: 1px; background: var(--gold); }
.sec-head--light .sec-head__title { color: var(--white); }
.sec-head--light .sec-head__sub { color: rgba(255,255,255,.72); }
.sec-head--light .sec-head__eyebrow { color: var(--gold); }
.sec-head--light .sec-head__eyebrow::before,
.sec-head--light .sec-head__eyebrow::after { background: rgba(191,160,99,.6); }

/* 背景の英字ウォーターマーク（装飾） */
.section__wm {
  position: absolute;
  right: -14px; bottom: -30px;
  z-index: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(90px, 12vw, 170px);
  line-height: 1;
  letter-spacing: .04em;
  color: rgba(255,255,255,.035);
  pointer-events: none;
  user-select: none;
}
.section__wm--dark { color: rgba(28,42,77,.045); }
.section > .container { position: relative; z-index: 1; }

/* 縦書きラベル（FVモチーフ） */
.v-label {
  position: absolute;
  top: 26px; right: 24px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .24em;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

/* badge / tag */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--body);
  border: 1px solid var(--line);
}
.badge--accent { background: var(--accent); color: var(--white); border-color: transparent; }
.badge--navy { background: var(--navy); color: var(--white); border-color: transparent; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags li {
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--body);
  border: 1px solid var(--line);
}
.tags--lg li { font-size: 13px; padding: 8px 15px; }
.tags--light li {
  background: transparent;
  border-color: rgba(255,255,255,.32);
  color: rgba(255,255,255,.88);
}

/* link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.link-arrow::after { content: "→"; margin-left: 7px; }
.link-arrow { transition: color .2s; }
.link-arrow:hover { color: var(--accent-dark); }
.link-arrow--strong { font-weight: 700; }

.sec-cta { text-align: center; margin-top: 52px; }

/* placeholder image box（写真流し込み前） */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #EAE3D7;
  color: var(--sub);
}
.ph__icon { font-size: 20px; line-height: 1; opacity: .65; }
.ph__label { font-size: 11.5px; letter-spacing: .04em; }
.ph--dark {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.65,.3,1);
}
.reveal.is-visible { opacity: 1; transform: var(--r-final, none); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   [③] 3つの事業 — 主役カード＋写真オーバーラップ
   ========================================================= */
.biz {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 60px;
  align-items: start;
}
.biz-main { position: relative; }
.biz-main__photo {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0 72px 0 0;         /* FVの角抜き */
  margin: 0;
}
.biz-main__photo img { width: 100%; height: 100%; object-fit: cover; }
.biz-main__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,42,77,0) 45%, rgba(20,28,46,.38) 100%);
}
.biz-main__panel {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 44px));
  margin: -112px 0 0 auto;           /* 写真に重ねる */
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 36px 38px;
  box-shadow: var(--shadow-panel);
}
.biz-main__badges { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.biz-main__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 14px;
}
.biz-main__title small { font-size: 14px; font-weight: 400; color: var(--body); }
.biz-main__text { font-size: 14px; line-height: 1.9; margin-bottom: 18px; }
.biz-main__panel .tags { margin-bottom: 22px; }

.biz-sub { display: flex; flex-direction: column; }
.biz-sub__card { padding-bottom: 36px; }
.biz-sub__card + .biz-sub__card { padding-top: 36px; border-top: 1px solid var(--line); }
.biz-sub__photo {
  height: 180px;
  overflow: hidden;
  border-radius: 0 44px 0 0;
  margin: 0 0 20px;
}
.biz-sub__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.biz-sub__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

/* 事業ナンバー（ローマ数字＋金の装飾） */
.biz-num {
  display: inline-block;
  position: relative;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .12em;
  color: var(--gold);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.biz-num::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 26px; height: 2px;
  background: var(--gold);
}
.biz-num--lg { font-size: 24px; }
.biz-sub__text { font-size: 13.5px; line-height: 1.85; margin-bottom: 12px; }

/* =========================================================
   [④] 訳あり買取ダイジェスト — 紺の全幅セクションで主役化
   ========================================================= */
.digest { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.digest__col {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0 44px 0 0;
  padding: 34px 38px;
}
.digest__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  letter-spacing: .04em;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: rgba(255,255,255,.86);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.digest__note {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.7;
  color: #F3D5B8;
  background: rgba(192,98,35,.22);
  border-radius: 8px;
  padding: 13px 16px;
}
.digest__all { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.55); }

/* ④ 刷新版 — 左：お悩みチェック／右：9種別アイコングリッド */
.wakeari {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.wakeari__q-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 14px;
}
.wakeari__q {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 24px;
}
.checklist--light li { color: rgba(255,255,255,.9); }
.checklist--light li::before { color: var(--gold); }
.wakeari__note {
  margin: 22px 0 30px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.8);
}
.wakeari__note b { color: var(--gold); font-weight: 600; }
.wakeari__kinds-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.wakeari__kinds-head span { font-family: var(--serif); font-size: 16px; color: var(--white); letter-spacing: .04em; }
.wakeari__kinds-head em { font-style: normal; font-size: 12px; color: var(--gold); letter-spacing: .1em; }
.kinds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 8px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0 16px 0 0;
}
.kind small { display: block; font-size: 10.5px; color: rgba(255,255,255,.55); }
.kind__ico { color: var(--gold); line-height: 0; }
.kind__ico svg { width: 30px; height: 30px; }

/* LINEボタン */
.btn--line {
  background: #06C755;
  color: var(--white);
  padding: 12px 22px;
  font-size: 14px;
}
.btn--line.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--line::after { content: none; }   /* 矢印なし */
.btn--line svg { width: 20px; height: 20px; }
.btn--line:hover { background: #05b34c; }

/* ===== 追尾CTA ===== */
.fcta {
  position: fixed;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.fcta.is-visible { opacity: 1; visibility: visible; transform: none; }
.fcta__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  transition: opacity .2s;
}
.fcta__item svg { flex-shrink: 0; }
.fcta__item--tel { background: var(--navy); }
.fcta__item--line { background: #06C755; }
.fcta__item--quote { background: var(--accent); }
.fcta__item:hover { opacity: .9; }

/* スマホ：下部フルバー3分割 */
@media (max-width: 900px) {
  .fcta {
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -4px 20px rgba(28,42,77,.18);
  }
  .fcta__item { flex-direction: column; gap: 4px; padding: 9px 4px; font-size: 11px; }
  .fcta__item svg { width: 20px; height: 20px; }
}

/* PC：右下フローティング縦積み */
@media (min-width: 901px) {
  .fcta {
    right: 22px; bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 130px;
  }
  .fcta__item {
    padding: 14px 12px;
    font-size: 13px;
    border-radius: 0 14px 0 0;
    box-shadow: 0 10px 26px rgba(28,42,77,.26);
  }
  .fcta__item svg { width: 20px; height: 20px; }
}

@media (max-width: 900px) {
  .wakeari { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .kinds { gap: 8px; }
  .kind { padding: 18px 6px; font-size: 11.5px; }
  .kind__ico svg { width: 26px; height: 26px; }
}

/* =========================================================
   [⑤] 選ばれる理由 — 罫線＋大きな金番号（カードを捨てて余白で見せる）
   ========================================================= */
.reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 32px; }
.reason { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.reason::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 44px; height: 2px;
  background: var(--gold);
}
.reason__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.reason__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}
.reason__text { font-size: 13.5px; line-height: 1.85; }

/* =========================================================
   [⑥] 買取・再生の実績
   ========================================================= */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 0 28px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.case__img { display: block; width: 100%; height: 190px; object-fit: cover; }
.case__body { padding: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.case__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
  margin: 14px 0 12px;
}
.case__price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.case__term { font-size: 13px; color: var(--sub); margin-bottom: 12px; }
.case__desc { font-size: 13.5px; line-height: 1.8; margin-bottom: 16px; }

/* =========================================================
   [⑦] お客様の声 — 大きな引用符（金）
   ========================================================= */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.voice {
  position: relative;
  background: var(--white);
  border-radius: 0 28px 0 0;
  padding: 60px 30px 30px;
  box-shadow: var(--shadow-card);
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: 14px; left: 24px;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  color: rgba(191,160,99,.4);
  pointer-events: none;
}
.voice__stars { display: inline-flex; gap: 3px; color: #C9A24B; margin-bottom: 14px; }
.voice__stars svg { width: 15px; height: 15px; fill: currentColor; }
.voice__quote { font-size: 14.5px; line-height: 1.9; color: var(--ink); margin-bottom: 22px; }
.voice__person { display: flex; align-items: center; gap: 12px; }
.voice__avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.voice__avatar svg { display: block; }
.voice__meta { font-size: 13px; font-weight: 500; color: var(--ink); }
.voice__what { font-size: 12px; color: var(--sub); }

/* =========================================================
   [⑧] お役立ちコラム
   ========================================================= */
.columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.col-card {
  background: var(--white);
  border-radius: 0 24px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.col-card__thumb { display: block; width: 100%; height: 150px; object-fit: cover; }
.col-card__body { padding: 18px 20px 20px; }
.col-card__title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  margin: 12px 0 10px;
}
.col-card__date { font-size: 12px; color: var(--sub); }

/* =========================================================
   [⑨] 会社情報サマリ
   ========================================================= */
.company {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.spec { width: 100%; }
.spec__row { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec__row:first-child { border-top: 1px solid var(--line); }
.spec__key {
  position: relative;
  width: 180px;
  flex-shrink: 0;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.spec__key::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 7px; height: 7px;
  background: var(--gold);
}
.spec__val { font-size: 14px; line-height: 1.7; }
.company__side { display: flex; flex-direction: column; gap: 20px; }
.company__map { height: 260px; border-radius: 0 48px 0 0; overflow: hidden; background: var(--surface); }
.company__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.company__btn { align-self: flex-start; }

/* =========================================================
   [⑩] 採用バナー — 紺グラデ＋金の輪（ロゴモチーフ）
   ========================================================= */
.recruit {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 0 72px 0 0;
  padding: 56px 60px;
}
.recruit::before,
.recruit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(191,160,99,.35);
  border-radius: 50%;
  pointer-events: none;
}
.recruit::before { width: 300px; height: 300px; right: -90px; top: -110px; }
.recruit::after { width: 170px; height: 170px; right: 140px; bottom: -80px; border-color: rgba(191,160,99,.2); }
.recruit__eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .38em;
  color: var(--gold);
  margin-bottom: 14px;
}
.recruit__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.recruit__lead { font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,.8); margin-bottom: 26px; }
.recruit__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0 32px 0 0;
}

/* =========================================================
   [⑪] 最終CTA
   ========================================================= */
.section--cta {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  padding: 100px 0 92px;
  overflow: hidden;
}
.section--cta::before {           /* FVスクロールラインの再演 */
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 52px;
  background: var(--gold);
}
.cta__eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .38em;
  color: var(--gold);
  margin-bottom: 22px;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(23px, 3vw, 32px);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 18px;
}
.cta__sub { font-size: 15px; color: rgba(255,255,255,.82); margin-bottom: 36px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta__tel { font-size: 17px; color: rgba(255,255,255,.92); letter-spacing: .03em; }
.cta__tel a {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  transition: color .2s;
}
.cta__tel a:hover { color: var(--gold); }
.cta__tel-note { font-size: 13px; color: rgba(255,255,255,.6); margin-left: 8px; letter-spacing: 0; }
.cta__tel-ico { display: inline-flex; vertical-align: -3px; margin-right: 5px; color: var(--gold); }

/* =========================================================
   [⑫] フッター
   ========================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer__cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr 1fr; gap: 32px; margin-bottom: 44px; }
.footer__brand-name { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--white); letter-spacing: .08em; margin-bottom: 16px; }
.footer__small { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.5); }
.footer__h { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 16px; }
.footer__col ul li { line-height: 1; }
.footer__col ul li a {
  display: inline-block;
  padding: 7px 0;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__copy { border-top: 1px solid rgba(255,255,255,.13); padding-top: 24px; font-size: 12px; color: rgba(255,255,255,.5); }

/* =========================================================
   FV直下リード（WF FV② 文言）— 左テキスト×右写真＋実績パネル
   ========================================================= */
.fv-lead__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.fv-lead__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.badge--gold { background: transparent; border-color: var(--gold); color: #8A7443; }
.fv-lead__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(25px, 2.9vw, 38px);
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.fv-lead__title .is-accent { color: var(--accent); }
.fv-lead__text {
  font-size: 15px;
  line-height: 2;
  color: var(--body);
  margin-bottom: 34px;
}
.fv-lead__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.fv-lead__license {
  max-width: 380px;
  font-size: 11.5px;
  color: var(--sub);
  letter-spacing: .03em;
  line-height: 1.7;
}

.fv-lead__visual {
  position: relative;
  margin: 0;
  height: clamp(320px, 34vw, 440px);
  overflow: hidden;
  border-radius: 0 72px 0 0;      /* FVの角抜き */
}
.fv-lead__visual img { width: 100%; height: 100%; object-fit: cover; }
.fv-lead__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,42,77,0) 55%, rgba(20,28,46,.34) 100%);
}


@media (max-width: 1024px) {
  .fv-lead__grid { grid-template-columns: 1fr; gap: 40px; }
  .fv-lead__visual { height: clamp(240px, 40vw, 340px); }
  .fv-lead__license { max-width: none; }
}
@media (max-width: 600px) {
  .fv-lead__visual { border-radius: 0 44px 0 0; }
}

/* =========================================================
   Sections responsive
   ========================================================= */
@media (max-width: 1024px) {
  .section { padding: 84px 0; }
  .section--navy { border-radius: 0 72px 0 0; }
  .biz { grid-template-columns: 1fr; gap: 48px; }
  .biz-main__photo { height: 340px; }
  .biz-sub { flex-direction: row; gap: 28px; }
  .biz-sub__card { flex: 1; padding-bottom: 0; }
  .biz-sub__card + .biz-sub__card { padding-top: 0; border-top: none; }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .columns { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
}

@media (max-width: 760px) {
  .container { width: min(1200px, 100% - 48px); }
  .sec-head { margin-bottom: 44px; }
  .digest { grid-template-columns: 1fr; }
  .digest__col { padding: 28px 26px; border-radius: 0 32px 0 0; }
  .cases { grid-template-columns: 1fr; }
  .voices { grid-template-columns: 1fr; }
  .company { grid-template-columns: 1fr; gap: 36px; }
  .biz-sub { flex-direction: column; gap: 0; }
  .biz-sub__card { padding-bottom: 36px; }
  .biz-sub__card + .biz-sub__card { padding-top: 36px; border-top: 1px solid var(--line); }
  .recruit { grid-template-columns: 1fr; padding: 36px 32px; gap: 28px; }
  .recruit__img { order: -1; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 68px 0; }
  .section--navy { border-radius: 0 44px 0 0; }
  .reasons { grid-template-columns: 1fr; gap: 36px; }
  .columns { grid-template-columns: 1fr; }
  .biz-main__photo { height: 240px; border-radius: 0 44px 0 0; }
  .biz-main__panel {
    width: calc(100% - 20px);
    margin-top: -64px;
    padding: 26px 24px;
  }
  .spec__row { flex-direction: column; gap: 4px; }
  .spec__key { width: auto; }
  .company__map { height: 200px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta__actions .btn { width: 100%; }
}

/* =========================================================
   遊び心レイヤー — マーキー／回転バッジ／千鳥崩し／吹き出し
   ========================================================= */

/* ゴースト番号（見出し裏の袋文字） */
.sec-head__num {
  position: absolute;
  top: -44px; left: -12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(84px, 9vw, 128px);
  line-height: 1;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 42, 77, .15);
  pointer-events: none;
  user-select: none;
}
.sec-head--center .sec-head__num { left: 50%; transform: translateX(-50%); }
.sec-head--light .sec-head__num { -webkit-text-stroke-color: rgba(255,255,255,.16); }

/* 流れる英字マーキー */
.marquee { overflow: hidden; padding: 58px 0 6px; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.1;
  letter-spacing: .05em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 42, 77, .3);
}
.marquee__item em { font-style: normal; color: var(--gold); -webkit-text-stroke: 0; }
.marquee__item i {
  font-style: normal;
  font-size: .22em;
  color: var(--accent);
  -webkit-text-stroke: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* 回転サークルバッジ（ステッカー） */
.spin-badge {
  position: relative;
  width: 116px; height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spin-badge__ring {
  position: absolute;
  inset: 0;
  animation: spin 22s linear infinite;
}
.spin-badge__ring text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  fill: var(--navy);
}
.spin-badge__logo { width: 52px; height: 52px; object-fit: contain; }
.spin-badge--sticker {
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(28,42,77,.18);
}
.spin-badge--light .spin-badge__ring text { fill: rgba(255,255,255,.55); }
/* 紺背景側はロゴが沈むので明るい円の下地を敷く */
.spin-badge--light .spin-badge__logo { background: var(--paper); border-radius: 50%; padding: 9px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spin-badge__ring { animation: none; }
}

.biz-main__spin {
  position: absolute;
  top: -38px; left: -34px;
  z-index: 3;
}
.cta__spin {
  position: absolute;
  right: clamp(24px, 9vw, 140px);
  top: 64px;
  z-index: 0;
}

/* お客様の声 → 吹き出し */
.voice { border-radius: 18px; }
.voice::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 46px;
  width: 18px; height: 18px;
  background: var(--white);
  transform: rotate(45deg);   /* 吹き出しのしっぽ形状（要素自体は水平） */
  box-shadow: 6px 6px 12px rgba(28,42,77,.04);
}

/* チェックリストの順次出現（④） */
.digest__col .checklist li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .5s ease, transform .5s ease;
}
.digest__col.is-visible .checklist li { opacity: 1; transform: none; }
.digest__col.is-visible .checklist li:nth-child(1) { transition-delay: .15s; }
.digest__col.is-visible .checklist li:nth-child(2) { transition-delay: .3s; }
.digest__col.is-visible .checklist li:nth-child(3) { transition-delay: .45s; }
.digest__col.is-visible .checklist li:nth-child(4) { transition-delay: .6s; }

/* 採用の金の輪をふわふわ漂わせる */
.recruit::before { animation: floaty 7s ease-in-out infinite alternate; }
.recruit::after { animation: floaty 9s ease-in-out infinite alternate-reverse; }
@keyframes floaty {
  from { translate: 0 0; }
  to { translate: 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .recruit::before, .recruit::after { animation: none; }
}

/* CTA右寄せバリエーション */
.sec-cta--right { text-align: right; margin-top: 44px; }

/* 遊び心レイヤーのレスポンシブ */
@media (max-width: 900px) {
  .marquee { padding: 40px 0 0; }
  .cta__spin { display: none; }
  .biz-main__spin { width: 92px; height: 92px; top: -26px; left: -14px; }
  .sec-head__num { font-size: 76px; top: -34px; }
}
@media (max-width: 480px) {
  .voice::after { left: 38px; }
}

/* =========================================================
   リズムレイヤー — 全幅フォト帯／写真下地／背景テクスチャ
   ========================================================= */

/* ④ 紺セクションに写真の下地（紺越しにうっすら建物） */
.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/fv-kaitori.jpg') center / cover no-repeat;
  opacity: .13;
  filter: saturate(.5);
}

/* 全幅フォトバンド（パララックス・呼吸区間） */
.photo-band {
  position: relative;
  height: clamp(300px, 42vh, 460px);
  overflow: hidden;
}
.photo-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,42,77,.22) 0%, rgba(22,32,58,.48) 100%);
}
.photo-band__word {
  position: absolute;
  left: max(40px, calc((100% - 1200px) / 2));
  bottom: 30px;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: .08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.65);
}

/* 金の輪の装飾（paper系セクションの余白に） */
.section--rings { overflow: hidden; }
.section--rings::before,
.section--rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(191,160,99,.28);
  border-radius: 50%;
  pointer-events: none;
}
.section--rings::before { width: 420px; height: 420px; top: -160px; right: -140px; }
.section--rings::after { width: 220px; height: 220px; bottom: -90px; left: -80px; border-color: rgba(191,160,99,.18); }

/* ⑦ お客様の声 — 金のドットグリッド地 */
#voice {
  background-image: radial-gradient(rgba(191,160,99,.2) 1.2px, transparent 1.3px);
  background-size: 28px 28px;
}

/* ⑩ 採用バナーに写真下地 */
.recruit {
  background:
    linear-gradient(135deg, rgba(28,42,77,.93) 0%, rgba(22,32,58,.96) 100%),
    url('../images/fv-rental.jpg') center / cover no-repeat;
}

/* ⑪ 最終CTAに写真下地（パララックス） */
.section--cta {
  background:
    linear-gradient(180deg, rgba(22,32,58,.94) 0%, rgba(22,32,58,.97) 100%),
    url('../images/fv-reform.jpg') center / cover no-repeat;
  background-attachment: fixed;
}

/* タッチ端末・モバイルは fixed 背景を無効化（iOS対策） */
@media (hover: none), (max-width: 900px) {
  .photo-band__bg { background-attachment: scroll; }
  .section--cta { background-attachment: scroll; }
}
@media (max-width: 760px) {
  .photo-band { height: 240px; }
  .section--rings::before { width: 260px; height: 260px; top: -110px; right: -110px; }
  .section--rings::after { display: none; }
}

/* =========================================================
   ④ 訳あり買取ダイジェスト 刷新（2026-07）
   チェックリスト→白カード ／ 9種別アイコン→写真タイル
   ========================================================= */
.checklist--cards li {
  position: relative;
  padding: 13px 18px 13px 50px;
  margin-bottom: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border-radius: 12px;
}
.checklist--cards li::before {
  content: "✓";
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.kind--photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2px;
  min-height: 104px;
  padding: 14px 16px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy-deep);
  border: none;
  border-radius: 0 18px 0 0;
}
.kind__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.65,.3,1);
}
.kind--photo:hover .kind__bg { transform: scale(1.07); }
.kind--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(185deg, rgba(28,42,77,.16) 24%, rgba(10,16,32,.88) 100%);
}
.kind--photo small { color: rgba(255,255,255,.75); }
@media (max-width: 480px) {
  .kind--photo { min-height: 88px; padding: 12px 12px; font-size: 12px; }
}

/* =========================================================
   ★ SPサイズ最適化（2026-07-25）
   実機幅 375px 基準で全面見直し。以降のルールが最終上書き。
   ========================================================= */
@media (max-width: 760px) {
  /* 追尾CTAバー（下部固定）にフッターが隠れないよう逃がす */
  body { padding-bottom: 62px; }

  /* セクション余白：SPは詰める */
  .section { padding: 60px 0; }
  .section--tight { padding: 48px 0; }
  .container { width: min(1200px, 100% - 40px); }

  /* 見出し：長い日本語が崩れないようサイズと行間を調整 */
  .sec-head { margin-bottom: 32px; }
  .sec-head__title { font-size: 21px; line-height: 1.55; letter-spacing: .01em; }
  .sec-head__sub { margin-top: 12px; font-size: 13.5px; line-height: 1.8; }
  .sec-head__eyebrow { margin-bottom: 14px; font-size: 10.5px; letter-spacing: .3em; }
  .sec-head__eyebrow::before, .sec-head--center .sec-head__eyebrow::after { width: 22px; }
  .sec-head__num { font-size: 62px; top: -26px; left: -4px; }

  /* ボタン：SPは全幅・縦積み・タップしやすい高さに統一 */
  .btn { width: 100%; min-height: 54px; padding: 14px 20px; font-size: 15px; }
  .btn--lg { min-height: 58px; padding: 16px 22px; font-size: 15.5px; letter-spacing: .04em; }
  .btn--primary::before { transform: translate(3px, 3px); }
  .cta__actions { flex-direction: column; gap: 12px; }
  .sec-cta, .sec-cta--right { text-align: center; margin-top: 32px; }
  .sec-cta .btn, .sec-cta--right .btn { width: 100%; }

  /* 文中リンクのタップ領域を確保 */
  .link-arrow { padding: 6px 0; }

  /* 最終CTA */
  .section--cta { padding: 64px 0 60px; }
  .cta__title { font-size: 21px; line-height: 1.6; }
  .cta__sub { font-size: 13.5px; margin-bottom: 26px; }
  .cta__tel { font-size: 14px; }
  .cta__tel a { font-size: 21px; display: inline-block; padding: 4px 0; }
  .cta__tel-note { display: block; margin: 4px 0 0; font-size: 12px; }

  /* 装飾レイヤーはSPでは控えめに */
  .marquee { padding: 32px 0 0; }
  .marquee__item { font-size: 40px; gap: 22px; padding-right: 22px; }
  .section__wm { font-size: 74px; right: -8px; bottom: -16px; }
  .photo-band { height: 200px; }
  .photo-band__word { font-size: 34px; left: 20px; bottom: 18px; }
  .v-label { font-size: 12px; top: 16px; right: 12px; letter-spacing: .18em; }

  /* フッター */
  .footer { padding: 48px 0 24px; }
  .footer__cols { gap: 22px; margin-bottom: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---------- TOP 固有のSP調整 ---------- */
@media (max-width: 760px) {
  /* FV：キャッチと画像のバランス */
  .fv__center { padding: 34px 20px 26px; }
  .fv__catch { font-size: clamp(23px, 6vw, 30px); letter-spacing: .04em; }
  .fv__caption { margin-top: 24px; }
  .fv__cta { padding: 10px 0; }

  /* FV直下リード */
  .fv-lead__title { font-size: 22px; line-height: 1.6; }
  .fv-lead__text { font-size: 14.5px; line-height: 1.95; margin-bottom: 26px; }
  .fv-lead__actions { align-items: stretch; }
  .fv-lead__cta { width: 100%; }
  .fv-lead__license { font-size: 11px; text-align: left; }

  /* 3つの事業 */
  .biz { gap: 36px; }
  .biz-main__title { font-size: 19px; }
  .biz-main__text, .biz-sub__text { font-size: 13.5px; }

  /* 訳あり買取ダイジェスト */
  .wakeari__q { font-size: 20px; margin-bottom: 20px; }
  .wakeari__note { margin: 18px 0 24px; font-size: 13.5px; }
  .checklist--cards li { font-size: 13.5px; padding: 12px 16px 12px 46px; }
  .kinds { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .kind--photo { min-height: 92px; padding: 12px 13px; font-size: 12.5px; border-radius: 0 14px 0 0; }
  .wakeari__kinds-head span { font-size: 15px; }

  /* 選ばれる理由・実績・声・コラム */
  .reason__num { font-size: 32px; margin-bottom: 14px; }
  .reason__title { font-size: 15.5px; }
  .case__img { height: 200px; }
  .voice { padding: 52px 24px 26px; }
  .voice__quote { font-size: 14px; }
  .col-card__thumb { height: 180px; }

  /* 会社情報・採用 */
  .company { gap: 28px; }
  .company__map { height: 220px; }
  .recruit { padding: 32px 24px; }
  .recruit__title { font-size: 22px; }
  .recruit__lead { font-size: 13.5px; }
  .recruit .btn { width: 100%; }
}

@media (max-width: 380px) {
  .container { width: min(1200px, 100% - 32px); }
  .sec-head__title { font-size: 19.5px; }
  .fv__catch { font-size: 22px; }
  .kind--photo { min-height: 84px; font-size: 11.5px; }
}
