/* ==================================================
   買取チェスト 朝霞駅前店｜金・貴金属特化LP
   ================================================== */

:root {
  --green-900: #0f2119;
  --green-800: #163628;
  --green-700: #1c4433;
  --green-600: #23543f;
  --gold-700: #9c7a34;
  --gold-600: #b8923f;
  --gold-500: #c9a75c;
  --gold-100: #f2e6c8;
  --cream-50: #fbf8f1;
  --cream-100: #f5efe1;
  --white: #ffffff;
  --ink-900: #262420;
  --ink-700: #55524a;
  --ink-500: #78756b;
  --line: #e4dcc8;
  --line-soft: #ece5d4;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 12px rgba(22, 54, 40, 0.07);
  --shadow-md: 0 10px 28px rgba(22, 54, 40, 0.10);

  --container-w: 1160px;
  --gutter: 20px;

  --ff-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff-base);
  font-weight: 500;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.8;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sp-only { display: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-800);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 2px;
}

/* ---------- typography helpers ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--green-800);
}
.section-head__lead {
  margin-top: 16px;
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.9;
}
.underline-gold {
  position: relative;
  display: inline-block;
}
.underline-gold::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -4px;
  height: 6px;
  background: var(--gold-100);
  z-index: -1;
  border-radius: 3px;
}

/* ---------- badges ---------- */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 22px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 800;
  color: var(--green-800);
  background: var(--cream-100);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
}
.badge-list--dark .badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* FV安心訴求：チェックマーク＋テキストのシンプル表示（ボタン化しない） */
.fv__badges.badge-list {
  gap: 10px 32px;
  margin: 14px 0 26px;
}
.fv__badges .badge {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  gap: 8px;
}
.fv__badges .badge::before {
  content: "✓";
  color: var(--gold-600);
  font-size: 0.9em;
  font-weight: 700;
  flex: none;
}

/* ---------- CTA ---------- */
.cta-group__lead {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 14px;
}

/* FVのみ：CTA直前を「小見出し＋ゴールドの短いアクセントライン」として整える */
.fv__cta .cta-group__lead {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0;
}
.fv__cta .cta-group__lead::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #f2e6c8 0%, rgba(242, 230, 200, 0) 100%);
  margin-top: 2px;
  margin-bottom: 14px;
}
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 22px;
  border-radius: 999px;
  font-weight: 700;
  min-height: 62px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  border: 1px solid transparent;
}
.cta:hover { transform: translateY(-1px); }
.cta__text { display: flex; flex-direction: column; gap: 1px; line-height: 1.3; }
.cta__label { font-size: 14px; }
.cta__value { font-size: 15px; }

.cta--primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  min-height: 66px;
}
.cta--primary:hover { background: var(--green-700); }
.cta--primary .cta__label { font-size: 12.5px; opacity: 0.85; font-weight: 500; }
.cta--primary .cta__value { font-size: 21px; font-weight: 900; letter-spacing: 0.02em; }

.cta--secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--line);
}
.cta--secondary:hover { border-color: var(--gold-600); background: var(--cream-50); }
.fv__cta .cta--secondary { background: #f5efe1; border: 1px solid rgba(28, 68, 51, 0.18); }
.cta--secondary .cta__label { font-size: 14.5px; font-weight: 800; }
.cta--secondary .cta__value { font-size: 12px; color: var(--ink-500); font-weight: 500; }

.cta > .bi {
  flex: none;
  font-size: 20px;
  line-height: 1;
}
.cta--large > .bi { font-size: 22px; }

.cta--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--green-800);
  background: var(--cream-50);
  color: var(--green-800);
  font-weight: 800;
  font-size: 15px;
  width: fit-content;
}
.cta--outline:hover { background: var(--green-800); color: var(--white); }

.cta--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  font-weight: 800;
  font-size: 15.5px;
  box-shadow: var(--shadow-sm);
  min-height: 58px;
}
.cta--gold:hover { filter: brightness(1.05); }

/* FVのCTAのみ高さを抑える（最終CTAなど他箇所は変更しない） */
.fv__cta .cta {
  min-height: 52px;
  padding: 12px 20px;
}
.fv__cta .cta--primary {
  min-height: 56px;
}

/* ==================================================
   Header
   ================================================== */
.site-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  display: inline-flex;
  color: var(--gold-600);
  flex: none;
}
.brand__mark img { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.3; }
.brand__name { font-weight: 800; font-size: 15px; color: var(--green-800); }
.brand__sub { font-size: 11.5px; color: var(--ink-500); }
.station-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-800);
}
.station-tag svg,
.station-tag .bi { color: var(--green-800); font-size: 16px; }
.station-tag--center { justify-content: center; margin-bottom: 10px; }

/* ==================================================
   01 FV
   ================================================== */
.fv {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--white) 100%);
  padding-block: 32px 40px;
}
.fv__bg { display: none; }
.fv__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0 56px;
  /* minmax(0, 1fr)：.fv__lead（nowrapの見出し）が丸め誤差でわずかに
     はみ出しても、グリッド列自体は広がらないようにする（CTA行の右余白が
     食われるのを防止）。見出し自身は視覚的に少しはみ出すのみで、
     兄弟要素の幅には影響しない。 */
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "eyebrow"
    "heading"
    "image"
    "body"
    "badges"
    "cta";
}
.fv__eyebrow { grid-area: eyebrow; }
.fv__heading { grid-area: heading; margin-top: 14px; }
.fv__image { grid-area: image; margin-top: 22px; }
.fv__body { grid-area: body; margin-top: 20px; }
.fv__badges { grid-area: badges; }
.fv__cta { grid-area: cta; margin-top: 6px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-700);
  padding: 6px 14px;
  border-radius: 999px;
}
.fv__title {
  font-size: clamp(24px, 5.6vw, 32px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink-900);
}
.fv__title .accent {
  color: var(--gold-600);
  display: inline-block;
  font-size: 1.18em;
  line-height: 1;
  vertical-align: baseline;
  position: relative;
  top: 0px;
}
.fv__lead {
  margin-top: 8px;
  font-size: clamp(20px, calc((100vw - 40px) / 13.5), 46px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--green-800);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.fv__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.fv__body p { font-size: 15px; color: var(--ink-700); margin-bottom: 10px; }
.fv__body p:last-child { margin-bottom: 0; }

/* 759px以下のみ短縮説明文に切り替える（760px以上は既存の説明文を維持） */
.fv-lead-break { display: none; }
.fv__body-short { display: none; }
.fv__body-short-emphasis { font-weight: 800; }

/* ==================================================
   02 買取できる金・貴金属
   ================================================== */
.items { padding-top: 64px; padding-bottom: 32px; }

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.item-card {
  display: flex;
  flex-direction: column;
}
.item-card__image {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}
.item-card__image img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.item-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-800);
  text-align: left;
  margin: 18px 0 9px;
}
.item-card h3::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 3px;
  height: 17px;
  border-radius: 1px;
  background: var(--gold-500);
}
.item-card__state {
  display: block;
  margin: 0;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.more-items {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.more-items__label {
  font-weight: 800;
  color: var(--white);
  background: var(--green-800);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  width: fit-content;
}
@media (max-width: 859px) {
  .more-items__label { width: 100%; }
  .item-grid { margin-bottom: 44px; }
}
.more-items__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 10px;
  justify-content: center;
}
.more-items__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* 4列（859px以下・423px以上）。列数が変わる帯（下記メディアクエリ）ごとに
     幅を列数ぴったりに合わせ、行が常に100%を均等に埋めるようにする。
     6件のうち最終行が半端な場合のみ justify-content: center が効いて中央に寄る。 */
  width: calc(25% - 7.5px);
  min-width: 78px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
}
@media (max-width: 424px) {
  .more-items__list li { width: calc(33.333% - 6.667px); } /* 3列 */
}
@media (max-width: 335px) {
  .more-items__list li { width: calc(50% - 5px); } /* 2列 */
}
.more-items__icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.more-items__icon img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
.more-items__icon--svg { color: var(--gold-600); }

.unusual {
  display: grid;
  grid-template-columns: auto 1fr 130px;
  grid-template-areas: "icon body image";
  gap: 14px 16px;
  background: var(--cream-50);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 20px 16px 20px 20px;
  margin-bottom: 0;
  align-items: center;
}
.unusual__icon {
  grid-area: icon;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-700);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.unusual__body { grid-area: body; margin-right: 4px; }
.unusual__body h3 { font-size: 16px; font-weight: 800; color: var(--green-800); margin-bottom: 8px; }
.unusual__body p { font-size: 13.5px; color: var(--ink-700); }
.unusual__image {
  grid-area: image;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.unusual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%);
  mask-image: linear-gradient(to right, transparent 0%, #000 18%);
}

/* 559px以下：画像を横並びから外し、見出し・本文の下に細いストリップとして配置 */
@media (max-width: 559px) {
  .unusual {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon body"
      "image image";
    padding: 0 0 0 20px;
    align-items: start;
  }
  .unusual__icon { margin-top: 22px; }
  .unusual__body { margin-top: 22px; margin-right: 20px; }
  .unusual__image { aspect-ratio: 3 / 2; border-radius: 0; margin-left: -20px; }
  .unusual__image img {
    object-fit: contain;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ==================================================
   03 金・プラチナ・銀も幅広く査定／金かどうかわからなくても大丈夫
   ================================================== */
.material { padding-top: 24px; padding-bottom: 40px; }

.material-panel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "head" "purity" "text";
  gap: 20px;
  border-radius: 20px;
  background: var(--white);
  padding: 24px;
}
.material__head {
  grid-area: head;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.purity {
  grid-area: purity;
  background: #1F4A38;
  border-radius: 16px;
  padding: 28px 22px;
  color: var(--white);
}
.purity__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.purity__badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--green-900);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.purity__head h3 { font-size: 17px; font-weight: 800; color: var(--white); }
.purity__rows { display: flex; flex-direction: column; gap: 14px; }
.purity__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.purity__row:not(:first-child) {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}
.purity__row-label {
  flex: none;
  width: 62px;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: 0.04em;
}
.purity__row--primary .purity__row-label {
  font-size: 15.5px;
  color: var(--gold-500);
}
.purity__pills {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
}
.purity__pills li {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.purity__pills li:not(:first-child)::before {
  content: "｜";
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.material__inner {
  grid-area: text;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 16px;
  padding: 8px 6px;
}
.material__question {
  font-size: clamp(15px, 3.6vw, 17px);
  font-weight: 700;
  color: var(--gold-700);
}
.material__answer {
  font-size: clamp(26px, 6vw, 32px);
  font-weight: 900;
  color: var(--green-800);
  line-height: 1.3;
  margin-top: -2px;
}
.material__text {
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.85;
}
.material__text--emphasis {
  font-weight: 700;
  color: var(--green-800);
  background: rgba(22, 54, 40, 0.07);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

@media (min-width: 760px) {
  .material-panel {
    grid-template-columns: 52fr 48fr;
    grid-template-areas:
      "head purity"
      "text text";
    align-items: center;
    gap: 28px;
    padding: 28px;
  }
  .material__head { justify-content: center; }
  .purity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
  }
  .material__inner {
    padding: 4px 8px 0;
  }
}

/* ==================================================
   04 査定額はどう決まる？
   ================================================== */
.criteria { padding-block: 64px 52px; }

.criteria-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "center center"
    "top    right"
    "left   bottom";
  gap: 14px;
  max-width: 560px;
  margin: 0 auto 26px;
}
.criteria-diagram__center {
  grid-area: center;
  background: #23543f;
  color: var(--white);
  border-radius: 50%;
  aspect-ratio: 1;
  width: min(208px, 62vw);
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--gold-500);
}
.criteria-diagram__item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.criteria-diagram__item--top { grid-area: top; }
.criteria-diagram__item--left { grid-area: left; }
.criteria-diagram__item--right { grid-area: right; }
.criteria-diagram__item--bottom { grid-area: bottom; }
.criteria-diagram__item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.criteria-diagram__item h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 6px;
}
.criteria-diagram__item p {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.7;
}
.criteria-summary {
  text-align: center;
  font-weight: 700;
  color: var(--green-800);
  font-size: 15px;
}

/* ==================================================
   05 買取実績
   ================================================== */
.results { background: var(--cream-100); padding-block: 64px; }

.result-grid { display: flex; flex-direction: column; gap: 16px; }

.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.result-card__image { background: var(--white); }
.result-card--main .result-card__image { aspect-ratio: 16 / 10; }
.result-card--sub .result-card__image { aspect-ratio: 4 / 3; }
.result-card__image img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.result-card__body { padding: 20px 22px 26px; text-align: center; background: var(--cream-50); }
.result-card--main .result-card__title { font-size: 17px; }
.result-card__title { font-weight: 700; color: var(--green-800); font-size: 15px; margin-bottom: 8px; }
.result-card__label { font-size: 11.5px; color: var(--ink-500); margin-bottom: 2px; letter-spacing: 0.02em; }
.result-card__price {
  font-weight: 900;
  color: var(--gold-700);
  font-size: 33px;
  letter-spacing: 0;
  display: block;
  margin-top: 2px;
}
.result-card__price span { font-size: 0.5em; margin-left: 2px; font-weight: 800; }

.result-grid__sub { display: flex; flex-direction: column; gap: 16px; }

.results-note {
  margin-top: 22px;
  font-size: 11.5px;
  color: var(--ink-500);
  line-height: 1.8;
  text-align: center;
}

/* ---------- 1点からOK ---------- */
.one-piece {
  padding-top: 32px;
  padding-bottom: 48px;
  background: var(--cream-100);
  position: relative;
}
.one-piece__inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.one-piece__illust { color: var(--gold-600); }
.one-piece__illust svg { width: 84px; height: 84px; }
.one-piece h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(29px, 7vw, 38px);
  font-weight: 900;
  color: var(--green-800);
  line-height: 1.35;
  text-align: left;
}
.one-piece__nowrap { white-space: nowrap; }
.one-piece h2::before {
  content: "";
  display: block;
  flex: none;
  width: 4px;
  height: 46px;
  border-radius: 2px;
  background: var(--gold-500);
}
.one-piece p {
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.9;
  margin-top: 2px;
}

/* ==================================================
   07 はじめての方にも安心
   ================================================== */
.trust { background: var(--white); padding-block: 64px; }

.trust-grid {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.trust-card:last-child { border-bottom: none; }
.trust-card__icon {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.trust-card__icon img { width: 68%; height: 68%; object-fit: contain; }
.trust-card__body h3 { font-size: 16px; font-weight: 900; color: var(--green-800); margin-bottom: 6px; }
.trust-card__body p { font-size: 13.5px; color: var(--ink-700); line-height: 1.7; }
.trust-card__body small { color: var(--ink-500); }

/* ==================================================
   08 33%UPキャンペーン
   ================================================== */
.campaign { padding-block: 56px; }
.campaign__inner {
  background: var(--green-800);
  border-radius: var(--radius-lg);
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.campaign__body { padding: 32px 26px; }
.campaign__lead { font-size: 13.5px; font-weight: 700; color: var(--gold-500); margin-bottom: 10px; }
.campaign__title {
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
}
.campaign__percent {
  display: inline-flex;
  align-items: baseline;
  color: var(--gold-500);
  font-size: 1.7em;
  font-weight: 900;
  margin-left: 6px;
}
.campaign__percent span { font-size: 0.5em; margin-left: 2px; }
.campaign__text { font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }
.campaign__note { margin-top: 14px; font-size: 12.5px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; }
.campaign__image {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
}
.campaign__image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }

/* ==================================================
   09 査定の流れ
   ================================================== */
.flow { padding-block: 64px; }

.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 6px 16px;
  background: var(--white);
  border: none;
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: none;
}
.flow-card__step {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  min-width: 44px;
}
.flow-card__step-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold-700);
  letter-spacing: 0.08em;
}
.flow-card__step-num {
  font-size: 27px;
  font-weight: 900;
  color: var(--green-800);
  margin-top: 2px;
}
.flow-card__icon {
  color: var(--green-700);
  grid-row: 1 / 3;
}
.flow-card__icon svg { width: 34px; height: 34px; }
.flow-card__icon img { width: 38px; height: 38px; object-fit: contain; }
.flow-card h3 { font-size: 16px; font-weight: 800; color: var(--green-800); }
.flow-card p { font-size: 13.5px; color: var(--ink-700); line-height: 1.7; grid-column: 3; }

/* ==================================================
   10 お客様の声
   ================================================== */
.voice { background: var(--cream-100); padding-block: 56px; }

.voice-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}
.voice-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
}
.voice-card__stars {
  color: var(--gold-600);
  font-size: 21px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.voice-card blockquote p { font-size: 14.5px; color: var(--ink-700); line-height: 1.9; }
.voice-card figcaption {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-100);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-500);
}
.voice-cta { text-align: center; }
.voice-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.voice-cta a:hover { border-color: var(--gold-600); background: var(--cream-50); }

/* ==================================================
   11 FAQ
   ================================================== */
.faq { padding-block: 64px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 16px;
  color: var(--green-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q::before { content: "Q. "; color: var(--gold-600); font-weight: 800; }
.faq-item__icon {
  flex: none;
  position: relative;
  width: 24px;
  height: 24px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.faq-item__icon::before { left: 0; top: 50%; width: 100%; height: 2.4px; transform: translateY(-50%); }
.faq-item__icon::after { top: 0; left: 50%; width: 2.4px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item__a {
  padding: 0 22px 22px 22px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.faq-item__a p { font-size: 14px; color: var(--ink-700); line-height: 1.9; margin-bottom: 8px; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* ==================================================
   12 店舗情報・アクセス
   ================================================== */
.shop { background: var(--cream-100); padding-top: 64px; padding-bottom: 32px; }

.shop-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.shop-panel__image { aspect-ratio: 4 / 3; }
.shop-panel__image img { width: 100%; height: 100%; object-fit: cover; }
.shop-panel__info { padding: 4px 22px 26px; }

.shop-info-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
.shop-info-list > div {
  display: flex;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.shop-info-list > div:last-child { border-bottom: none; padding-bottom: 0; }
.shop-info-list dt {
  flex: none;
  width: 88px;
  font-weight: 700;
  color: var(--gold-700);
}
.shop-info-list dd { color: var(--ink-900); }
.shop-info-list dd a { color: var(--green-800); font-weight: 700; }
.shop-info-list__name dd {
  font-size: 18px;
  font-weight: 900;
  color: var(--green-800);
}

/* ==================================================
   13 駐車場
   ================================================== */
.parking { background: var(--cream-100); padding-top: 32px; padding-bottom: 60px; }
.parking__inner {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 15px 11px;
  box-shadow: var(--shadow-sm);
}
.parking__content { margin-inline: auto; }
.parking__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.parking__content h2 { font-size: 20px; font-weight: 800; color: var(--green-800); }
.parking__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.parking__body p { font-size: 14.5px; color: var(--ink-700); margin-bottom: 0; line-height: 1.85; }
.parking__emphasis {
  display: block;
  width: 100%;
  font-weight: 900;
  color: var(--green-800);
  background: var(--gold-100);
  border-left: 4px solid var(--gold-500);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15.5px !important;
  margin-top: 14px;
  box-sizing: border-box;
}
.parking__note { font-size: 13px !important; color: var(--ink-500) !important; margin-top: 18px; }

/* ==================================================
   14 お問い合わせフォーム
   ================================================== */
.contact { background: var(--white); padding-block: 64px; }
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row { display: flex; flex-direction: column; gap: 8px; }
.contact-form__label {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--green-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form__required {
  background: var(--gold-100);
  color: var(--gold-700);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--cream-50);
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-form__input { height: 52px; }
.contact-form__textarea { min-height: 140px; resize: vertical; line-height: 1.7; }
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  background: var(--white);
}
.contact-form__submit { margin-top: 4px; }
.contact-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: var(--green-800);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.contact-form__btn:hover { background: var(--green-700); transform: translateY(-1px); }

/* ==================================================
   15 最終CTA
   ================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  background-image:
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.131) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.189) 0%, transparent 32%);
  color: var(--white);
  padding-block: 55px;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.16);
  pointer-events: none;
  z-index: 0;
}
.final-cta::before {
  width: 420px;
  height: 420px;
  right: -200px;
  top: -200px;
}
.final-cta::after {
  width: 400px;
  height: 400px;
  left: -180px;
  bottom: -200px;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; text-align: center; }
.final-cta h2 {
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
}
.final-cta h2 .final-cta__emphasis {
  display: block;
  font-size: 1.18em;
  font-weight: 900;
  margin-top: 4px;
}
.final-cta__text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 14px;
}
.final-cta .badge-list { justify-content: center; margin: 26px 0; gap: 12px 40px; }
.final-cta .badge-list--dark .badge {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  font-weight: 800;
  font-size: 16.5px;
  gap: 8px;
  color: var(--white);
}
.final-cta .badge-list--dark .badge::before {
  content: "✓";
  color: var(--gold-600);
  font-size: 0.9em;
  font-weight: 700;
  flex: none;
}
.final-cta .cta-group { margin-top: 28px; }
.final-cta .cta-group__lead { color: rgba(255, 255, 255, 0.75); text-align: center; }
.final-cta .cta--primary {
  background: #f5efe1;
  color: var(--green-800);
  box-shadow: none;
}
.final-cta .cta--primary:hover { background: var(--cream-50); }
.final-cta .cta--primary .cta__value { color: var(--green-900); }
.final-cta .cta--primary .cta__label { font-size: 15px; opacity: 1; font-weight: 800; }

@media (min-width: 760px) {
  .final-cta::before { width: 600px; height: 600px; right: -280px; top: -280px; }
  .final-cta::after { width: 580px; height: 580px; left: -260px; bottom: -300px; }
}

.cta-row.cta-row--final {
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
}
.cta-row__sub { display: flex; flex-direction: column; gap: 18px; margin-top: 0; }
.cta--large { min-height: 68px; }
.cta--primary.cta--large .cta__value { font-size: 22px; }
.cta--secondary.cta--large .cta__label { font-size: 15px; }

/* ==================================================
   Footer
   ================================================== */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 28px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.brand--footer { color: var(--white); }
.brand--footer .brand__name { color: var(--white); font-size: 14px; }
.brand--footer .brand__mark { color: var(--gold-500); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-nav a:hover { color: var(--white); }
.copyright { font-size: 12px; color: rgba(255, 255, 255, 0.45); }

/* ==================================================================
   Tablet / Desktop breakpoints
   ================================================================== */
@media (min-width: 560px) {
  .item-grid { gap: 22px; }
  .voice-grid { flex-direction: row; }
  .voice-card { flex: 1 1 0; }

  /* 実績3枚：560px以上は常に横並び（859px以下も含む）。真のスマホ幅のみ縦積み。 */
  .result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
  .result-card { display: flex; flex-direction: column; }
  .result-card__image,
  .result-card--main .result-card__image { flex: none; aspect-ratio: 4 / 3; min-height: 0; overflow: hidden; }
  .result-grid__sub { display: contents; }
  .result-card__body { flex: 1; }
}

/* 560〜859px：3枚横並びでカード幅が狭くなる分、価格が折り返さないよう縮小 */
@media (min-width: 560px) and (max-width: 859px) {
  .result-card__price { font-size: 24px; white-space: nowrap; }
  .result-card__body { padding: 16px 12px 20px; }
}

@media (min-width: 620px) {
  .criteria-diagram {
    max-width: 700px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "top    top"
      "left   right"
      "bottom bottom";
  }
  .criteria-diagram__center { grid-column: 1 / 3; order: initial; }
  .criteria-diagram__item--top { grid-area: top; }
  .criteria-diagram__item--left { grid-area: left; }
  .criteria-diagram__item--right { grid-area: right; }
  .criteria-diagram__item--bottom { grid-area: bottom; }
}

@media (min-width: 700px) {
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .trust-card {
    align-items: flex-start;
    border-bottom: 1px solid var(--line-soft);
  }
  .trust-card:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .trust-card:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .trust-card:nth-child(n+3) { border-bottom: none; }

  .flow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .flow-card {
    align-items: flex-start;
  }
}

/* 899px以下：FV画像を独立表示せず、全面のごく薄い背景として使う。
   主役はキャッチコピー・本文・安心材料・CTAに戻す。900px以上は一切変更しない。 */
@media (max-width: 899px) {
  .fv {
    position: relative;
    background-image:
      radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.58) 40%, rgba(255, 255, 255, 0) 68%),
      linear-gradient(to right, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.12) 45%, rgba(255, 255, 255, 0) 75%),
      linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)),
      url("images/FV.png");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: 0 0, 0 0, 0 0, center 35%;
    background-size: 100% 100%, 100% 100%, 100% 100%, cover;
    padding-block: 28px 32px;
  }
  .fv__image { display: none; }

  /* キャッチコピーを主役にするためのメリハリ調整（スマホのみ） */
  .fv__heading { margin-top: 10px; }

  .fv__title {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 700;
    color: var(--ink-700);
  }
  .fv__title .accent {
    color: var(--gold-600);
  }

  .fv__lead {
    white-space: normal;
    font-size: clamp(26px, 7.5vw, 30px);
    line-height: 1.35;
    margin-top: 6px;
  }

  .fv__eyebrow { font-size: 12px; }

  .fv__body { margin-top: 14px; }
  .fv__body p { font-size: 14px; margin-bottom: 8px; }

  .fv__badges.badge-list { margin: 10px 0 20px; }
  .fv__badges .badge { font-size: 14px; }
}

/* 759px以下のみ：キャッチを意図した位置で改行し、説明文を短縮版に切り替える。
   760px以上（899px以下の既存レイアウトを含む）には影響しない。 */
@media (max-width: 759px) {
  .fv-lead-break { display: inline; }

  .fv__body-full { display: none; }
  .fv__body-short { display: block; }
  .fv__body-short p { margin-bottom: 4px; }
  .fv__body-short p:last-child { margin-bottom: 0; }
}

@media (min-width: 900px) {
  .fv__bg {
    /* 「わからないままで大丈夫」までは必ず避け、末尾の「です。」は
       フェードにわずかにかかってもよい前提で少し手前から柔らかく画像を出す。
       画面幅が縮んでもテキストの右端付近に合わせてグラデーションの開始位置が追従する。 */
    --fv-text-safe: calc(clamp(35px, 3vw + 15px, 71px) + 400px);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url("images/FV.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;

    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      transparent var(--fv-text-safe),
      rgba(0, 0, 0, 0.1) calc(var(--fv-text-safe) + 120px),
      rgba(0, 0, 0, 0.4) calc(var(--fv-text-safe) + 320px),
      rgba(0, 0, 0, 0.75) calc(var(--fv-text-safe) + 520px),
      #000 calc(var(--fv-text-safe) + 720px),
      #000 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      transparent var(--fv-text-safe),
      rgba(0, 0, 0, 0.1) calc(var(--fv-text-safe) + 120px),
      rgba(0, 0, 0, 0.4) calc(var(--fv-text-safe) + 320px),
      rgba(0, 0, 0, 0.75) calc(var(--fv-text-safe) + 520px),
      #000 calc(var(--fv-text-safe) + 720px),
      #000 100%
    );
  }
  /* FVのテキスト列は、他セクションの中央寄せコンテナ幅に連動させず、
     ビューポート左端からの固定寄りガター基準で配置する（広い画面でも中央寄りに見えないように） */
  .fv__grid {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(35px, calc(3vw + 15px), 71px);
    box-sizing: border-box;
    grid-template-columns: minmax(0, 600px) 1fr;
    grid-template-areas:
      "eyebrow ."
      "heading ."
      "body    ."
      "badges  ."
      "cta     .";
    gap: 0;
    align-items: start;
  }
  .fv__image { display: none; }
  .fv__eyebrow { align-self: start; }
}

@media (min-width: 760px) {
  .cta-row { flex-direction: row; flex-wrap: wrap; }
  .cta-row .cta { flex: 0 1 auto; min-width: 200px; }

  /* FVのCTAのみ：1段目にLINE/フォームを均等2分割、2段目に電話ボタンを全幅で配置 */
  .fv__cta .cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 480px;
  }
  .fv__cta .cta-row .cta {
    flex: none;
    min-width: 0;
    width: 100%;
  }
  .fv__cta .cta-row .cta--primary {
    grid-column: 1 / -1;
  }

  .unusual {
    grid-template-columns: auto 1fr 260px;
    grid-template-areas: "icon body image";
    align-items: center;
  }
  .unusual__icon { margin-top: 0; }
  .unusual__body { margin-top: 0; }
  .unusual__image { aspect-ratio: 16 / 9; }

  .campaign__inner { flex-direction: row; align-items: stretch; }
  .campaign__body { flex: 1 1 55%; padding: 40px 40px; }
  .campaign__image { flex: 1 1 45%; aspect-ratio: auto; }

  .shop-panel { flex-direction: row; }
  .shop-panel__image { flex: 1 1 42%; aspect-ratio: auto; }
  .shop-panel__info { flex: 1 1 58%; padding: 30px 34px 30px 8px; align-self: center; }

  .parking__inner { text-align: left; padding: 24px 20px; }
  .parking__content { max-width: 1040px; }
  .parking__heading { margin-bottom: 28px; }
  .parking__icon { width: 44px; height: 44px; font-size: 17px; }

  .one-piece__inner {
    max-width: 720px;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 48px;
  }
  .one-piece__inner h2 { flex: 1 1 42%; font-size: 24px; }
  .one-piece__inner p { flex: 1 1 62%; margin-top: 0; }

  .cta-row__sub { flex-direction: row; }
  .cta-row__sub .cta { flex: 1 1 0; }

  .final-cta .cta--large { min-height: 80px; border-radius: 22px; }
  .final-cta .cta-row__sub .cta { border-radius: 22px; }

  .final-cta .cta--primary { padding-inline: 30px; }
  .final-cta .cta--primary .cta__text {
    flex: 1;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }
  .final-cta .cta--primary .cta__label,
  .final-cta .cta--primary .cta__value { white-space: nowrap; }

  .final-cta .cta-row__sub .cta__label,
  .final-cta .cta-row__sub .cta__value { white-space: nowrap; }

  .final-cta .cta-row--final { max-width: min-content; }
}

@media (min-width: 860px) {
  .item-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: none;
    margin-inline: 0;
  }
  .item-card__image { aspect-ratio: 5 / 4; }

  .more-items { flex-direction: row; align-items: stretch; padding: 0; gap: 20px; }
  .more-items__label { flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 0; font-size: 13px; padding: 0 22px; }
  .more-items__list { flex: 1; flex-wrap: nowrap; gap: 8px; padding: 24px 26px 24px 0; }
  .more-items__list li { flex: 1 1 0; width: auto; min-width: min-content; gap: 6px; font-size: 11px; }
  .more-items__list li span:last-child { white-space: nowrap; }

  .site-header__inner { padding-block: 2px; }
}

/* 999px以下：「金・貴金属の価値」を4要素より前（見出し帯）として配置。
   1000px以上のクロス型レイアウト（円形）には一切影響しない。 */
@media (max-width: 999px) {
  .criteria-diagram {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "center center"
      "top    top"
      "left   right"
      "bottom bottom";
  }
  .criteria-diagram__center {
    grid-area: center;
    grid-column: 1 / 3;
    width: 100%;
    max-width: 700px;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    border-radius: 12px;
    border-width: 2px;
    padding: 18px 24px;
    margin: 0 auto 14px;
  }
}

@media (min-width: 1000px) {
  .criteria { padding-top: 28px; }
  .criteria .section-head { margin-bottom: 14px; }
  .criteria .section-head__lead { margin-top: 4px; }

  .criteria-diagram {
    max-width: 740px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      ".    top    ."
      "left center right"
      ".    bottom .";
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 10px;
  }
  .criteria-diagram__center {
    grid-area: center;
    grid-column: auto;
    width: 190px;
    font-size: 16px;
  }
  .criteria-diagram__item { padding: 12px 14px; }
  .criteria-diagram__item img { width: 42px; height: 42px; margin-bottom: 4px; }
  .criteria-diagram__item h3 { font-size: 15px; line-height: 1.2; margin-bottom: 3px; }
  .criteria-diagram__item p { font-size: 14px; line-height: 1.5; }
  .criteria-diagram__item--top { grid-area: top; }
  .criteria-diagram__item--left { grid-area: left; }
  .criteria-diagram__item--right { grid-area: right; }
  .criteria-diagram__item--bottom { grid-area: bottom; }

  .footer-nav { flex-direction: row; gap: 26px; }
  .site-footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ========================================
   FV CTA：PC時は上2つ＋下1つの固定グリッド
   ======================================== */

@media (min-width: 760px) {
  .fv__cta .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 480px;

    flex-direction: unset;
    flex-wrap: unset;
  }

  .fv__cta .cta-row .cta {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  /* 3番目＝電話ボタン */
  .fv__cta .cta-row .cta:nth-child(3) {
    grid-column: 1 / -1;
  }
}
