@charset "UTF-8";

/* ===== Base ===== */
:root {
  --gold: #A8842C;
  --gold-dark: #8F6E20;
  --gold-light: #C9A84C;
  --gold-pale: #F3EDDD;
  --ink: #2B2A26;
  --ink-soft: #5C594F;
  --muted: #8A8578;
  --cream: #F7F4EC;
  --cream-deep: #EFEADD;
  --line: #E4DFD2;
  --white: #FFFFFF;
  --green: #2E4A3A;
  --red: #C84B3A;
  --blue: #3A6BC8;
  --radius: 8px;
  --shadow: 0 8px 32px rgba(43, 42, 38, 0.10);
}

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

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.section { padding: 72px 0; }
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s, background 0.2s;
  border: 1px solid transparent;
}
.btn--gold {
  background: linear-gradient(180deg, #B8933A 0%, var(--gold) 100%);
  color: #fff;
}
.btn--gold:hover { opacity: 0.85; }
.btn--outline {
  border-color: var(--gold);
  color: var(--gold);
  background: #fff;
}
.btn--outline:hover { background: var(--gold-pale); }
.btn--outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  padding: 10px 20px;
}
.btn--outline-dark:hover { background: rgba(43, 42, 38, 0.06); }
.btn--lg { padding: 19px 56px; font-size: 17.5px; border-radius: 8px; }

.link-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* WordPress管理バー表示時にヘッダーが隠れないようにする */
body.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
}
.logo { display: inline-block; line-height: 1.3; }
.logo__main {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-image: linear-gradient(transparent 68%, rgba(200, 168, 76, 0.45) 68%);
}
.logo__sub { font-size: 15px; }
.gnav { margin-left: auto; }
.gnav__list {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  font-weight: 500;
}
.gnav__list a:hover { color: var(--gold); }
.header__actions { display: flex; gap: 12px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #DDD3BF;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* 少しズームして右寄せ表示にし、被写体をフォームより左に出す */
  background: url(../img/hero.jpg) right center / 114% auto no-repeat #E9E2D2;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 左側のコピー文の可読性を確保するオーバーレイ */
  background: linear-gradient(90deg, rgba(240, 234, 219, 0.85) 0%, rgba(240, 234, 219, 0.45) 34%, rgba(240, 234, 219, 0) 58%);
}
.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 56px;
  align-items: center;
}
.hero__lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero__title {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.hero__desc {
  font-size: 16.5px;
  margin-bottom: 32px;
  color: var(--ink-soft);
}
.hero__points { display: flex; flex-wrap: wrap; gap: 8px 0; align-items: center; }
.hero__point {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 700;
  padding: 0 20px;
}
.hero__point:first-child { padding-left: 0; }
.hero__point + .hero__point { border-left: 1px solid rgba(43, 42, 38, 0.25); }
.hero__point-icon {
  width: 29px;
  height: 29px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero__point-icon svg { width: 100%; height: 100%; display: block; }

/* Estimate card */
.estimate-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 30px 28px 28px;
}
.estimate-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
  white-space: nowrap;
}
.estimate-card__time {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.estimate-card__field { margin-bottom: 16px; }
.estimate-card__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.item-type {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.item-type__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 2px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  transition: all 0.15s;
}
.item-type__btn svg { width: 30px; height: 30px; }
.item-type__btn:hover { border-color: var(--gold-light); color: var(--gold); }
.item-type__btn.is-active {
  border: 2px solid var(--gold);
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-weight: 700;
  padding: 11px 1px 9px;
}
.item-type__btn.is-active svg { color: var(--gold); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.estimate-card__select,
.estimate-card__input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  appearance: none;
}
.estimate-card__select:focus,
.estimate-card__input:focus {
  outline: 2px solid var(--gold-light);
  outline-offset: -1px;
}
.estimate-card__input::placeholder { color: #B9B4A6; }
.estimate-card__input:disabled { background: #F4F1E9; color: var(--muted); }
.check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 9px;
  cursor: pointer;
}
.check input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.field-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 5px;
}
.input-unit { position: relative; }
.input-unit__unit {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--muted);
}
.estimate-card__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  margin-top: 6px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #B8933A 0%, var(--gold) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.estimate-card__submit:hover { opacity: 0.88; }
.estimate-card__submit svg { width: 14px; height: 14px; }

/* ===== Ticker ===== */
.ticker {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.ticker__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ticker__head { display: flex; align-items: center; gap: 14px; }
.ticker__title { font-size: 15px; font-weight: 900; }
.ticker__meta { font-size: 11.5px; color: var(--muted); line-height: 1.55; }
.ticker__disclaimer { font-size: 11.5px; color: var(--muted); margin-left: auto; }
.ticker__head::after {
  content: "";
  display: none;
}
.ticker__list {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.ticker__item { display: flex; align-items: center; gap: 10px; }
.ticker__tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 3px;
}
.ticker__tag--k24 { background: var(--gold-pale); color: var(--gold-dark); }
.ticker__tag--k18 { background: var(--gold-pale); color: var(--gold-dark); }
.ticker__tag--pt { background: #EAECEF; color: #5A6472; }
.ticker__price { font-size: 21px; font-weight: 900; letter-spacing: 0.01em; }
.ticker__price small { font-size: 12px; font-weight: 500; color: var(--muted); margin-left: 2px; }
.ticker__diff { font-size: 12.5px; font-weight: 700; }
.ticker__diff.is-up { color: var(--red); }
.ticker__diff.is-down { color: var(--blue); }

/* ===== Compare ===== */
.compare { background: var(--cream); padding-top: 56px; padding-bottom: 56px; }
.compare__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.compare__note {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-align: right;
}
.compare-cond {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 20px;
  margin-bottom: 12px;
}
.compare-cond__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border-radius: 4px;
  padding: 4px 11px;
  white-space: nowrap;
}
.compare-cond__value {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.compare-cond__edit {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: underline;
  white-space: nowrap;
}
.compare-cond__edit:hover { color: var(--gold); }
.compare-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(43, 42, 38, 0.06);
}
.compare-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  padding: 15px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: left;
  background: #FAF8F2;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.compare-table td {
  padding: 22px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr.is-selected { background: #FBF5E4; }
.compare-table tbody tr.is-selected td:first-child { border-left: 3px solid var(--gold); }
.compare-table tbody tr td:first-child { border-left: 3px solid transparent; }
.compare-table__select { width: 52px; text-align: center; }
.radio { display: inline-flex; cursor: pointer; }
.radio input { position: absolute; opacity: 0; }
.radio__mark {
  width: 18px;
  height: 18px;
  border: 2px solid #C9C3B4;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.15s;
}
.radio input:checked + .radio__mark { border-color: var(--gold); }
.radio input:checked + .radio__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.shop { display: flex; align-items: center; gap: 10px; }
.shop__logo {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.shop__logo--yamato { background: #2B2A33; }
.shop__logo--nanboya { background: #1E5B3C; }
.shop__logo--fuku { background: #8C2432; font-size: 16px; }
.shop__meta { display: flex; flex-direction: column; line-height: 1.4; }
.shop__name { font-size: 15.5px; font-weight: 700; }
.shop__desc { font-size: 12px; color: var(--muted); }
.compare-table__price strong { font-size: 17px; font-weight: 900; }
.compare-table__price small { font-size: 12px; font-weight: 500; }
.compare-table__net { line-height: 1.4; }
.net-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  border-radius: 3px;
  padding: 1px 8px;
  margin-bottom: 4px;
}
.net { font-size: 20px; font-weight: 900; color: var(--gold-dark); display: block; }
.net small { font-size: 12px; font-weight: 500; }
.net-note { font-size: 11px; color: var(--muted); }
.compare-table__rating b { font-size: 15px; }
.stars {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #DDD6C4;
  letter-spacing: 1px;
}
.stars::before {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--rate, 100%);
  overflow: hidden;
  color: #E5A83B;
  white-space: nowrap;
}
.rating-count { font-size: 12px; color: var(--muted); display: block; }
.compare__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.compare__disclaimer { font-size: 11.5px; color: var(--muted); }

/* ===== Flow ===== */
.flow { background: var(--white); }
.flow__grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 48px;
  align-items: center;
}
.flow__title { padding-top: 8px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  position: relative;
  padding: 0 20px;
  text-align: left;
}
.step + .step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 44px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #CFC8B6;
  border-right: 2px solid #CFC8B6;
  transform: translateX(-50%) rotate(45deg);
}
.step__num {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-bottom: 12px;
}
.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--ink);
  margin-bottom: 16px;
}
.step__icon svg { width: 54px; height: 54px; }
.step__title { font-size: 16.5px; font-weight: 900; margin-bottom: 8px; }
.step__desc { font-size: 13.5px; color: var(--ink-soft); }

/* ===== Items ===== */
.items { background: var(--cream); }
.items__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: center;
}
.items__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 16px 0 24px;
}
.items__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.item-card__photo {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #EEDFB8;
  background-size: cover;
  background-position: center;
}
.item-card__photo svg { display: none; }
.item-card__photo--necklace { background-image: url(../img/category-broken-necklace.jpg); }
.item-card__photo--ring { background-image: url(../img/category-gold-rings.jpg); }
.item-card__photo--ingot { background-image: url(../img/category-gold-ingot.jpg); }
.item-card__photo--coin { background-image: url(../img/category-gold-coins.jpg); }
.item-card__photo--scrap { background-image: url(../img/category-gold-scrap.jpg); }
.item-card__photo--other { background-image: url(../img/category-other-precious-metals.jpg); }
.item-card__name { font-size: 14.5px; font-weight: 700; }
.item-card__note { font-size: 12px; color: var(--muted); }

/* ===== Trust ===== */
.trust { background: var(--white); }
.trust__grid {
  display: grid;
  grid-template-columns: 350px 230px 1fr;
  gap: 36px;
  align-items: center;
}
.trust__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 16px;
}
.trust__photo {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: url(../img/trust-appraisal.jpg) center / cover no-repeat #E8E2D2;
}
.trust__photo svg { display: none; }
.trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 4px 18px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.trust-item__icon {
  display: block;
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 18px;
}
.trust-item__icon svg { width: 100%; height: 100%; }
.trust-item__title { font-size: 15px; font-weight: 900; margin-bottom: 8px; }
.trust-item__desc { font-size: 12.5px; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.faq__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 14px 0 24px;
}
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(43, 42, 38, 0.05);
}
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__mark {
  color: var(--gold);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item__toggle {
  margin-left: auto;
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform 0.2s;
}
.faq-item__toggle::before {
  left: 0; top: 6px; width: 14px; height: 2px;
}
.faq-item__toggle::after {
  left: 6px; top: 0; width: 2px; height: 14px;
}
.faq-item[open] .faq-item__toggle::after { transform: scaleY(0); }
.faq-item[open] .faq-item__a { animation: faq-open 0.18s ease; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.faq-item__a {
  padding: 0 24px 20px 57px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background:
    radial-gradient(ellipse 400px 300px at 8% 100%, rgba(90, 130, 100, 0.35), transparent 70%),
    radial-gradient(ellipse 400px 300px at 95% 0%, rgba(70, 110, 85, 0.4), transparent 70%),
    var(--green);
  color: #fff;
  overflow: hidden;
}
.cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.cta__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.6;
}
.cta__inner .btn--gold { margin-left: auto; }
.cta__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.cta__deco {
  width: 176px;
  height: 120px;
  background: url(../img/cta-rings.png) center / contain no-repeat;
  flex-shrink: 0;
}
.cta__deco svg { display: none; }

/* ===== 記事本文（投稿・固定ページ） ===== */
/* 黄色マーカー（蛍光ペン風）: エディタで <mark>テキスト</mark> または「追加CSSクラス」で marker */
mark,
.marker {
  background: linear-gradient(transparent 62%, #FFE968 62%);
  color: inherit;
  padding: 0 2px;
}
/* サイトの金色に合わせたマーカー: .marker-gold */
.marker-gold {
  background: linear-gradient(transparent 62%, rgba(200, 168, 76, 0.45) 62%);
  padding: 0 2px;
}
.entry-content {
  font-size: 16px;
  line-height: 1.9;
}
.entry-content h2 {
  font-size: 24px;
  font-weight: 900;
  margin: 2em 0 0.8em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.entry-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 1.8em 0 0.7em;
  padding-left: 12px;
  border-left: 4px solid var(--gold);
}
.entry-content p { margin: 0 0 1.4em; }
.entry-content a { color: var(--gold-dark); text-decoration: underline; }
.entry-content a:hover { color: var(--gold); }
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content img { border-radius: 8px; }
.entry-content blockquote {
  margin: 0 0 1.4em;
  padding: 16px 20px;
  background: var(--cream);
  border-left: 4px solid var(--gold-light);
  border-radius: 0 8px 8px 0;
  color: var(--ink-soft);
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo--footer .logo__main { font-size: 18px; }
.footer__nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer__nav a:hover { color: var(--gold); }
.footer__copy { font-size: 11.5px; color: var(--muted); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__bg { background-size: cover; background-position: center; }
  .hero__inner { grid-template-columns: 1fr 350px; gap: 36px; }
  .hero__title { font-size: 46px; }
  .flow__grid, .items__grid, .trust__grid, .faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .items__list { grid-template-columns: repeat(3, 1fr); }
  .trust__list { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 16px; border: none; }
  .trust__photo { max-width: 460px; }
}

@media (max-width: 768px) {
  .gnav { display: none; }
  .header__actions { margin-left: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
  }
  .hero__title { font-size: 34px; }
  .hero__desc br { display: none; }
  .section { padding: 48px 0; }
  .section__inner { padding: 0 20px; }
  .section__title { font-size: 22px; }
  .compare__head { flex-direction: column; align-items: flex-start; }
  .compare__note { text-align: left; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 0; }
  .step + .step::before { display: none; }
  .items__list { grid-template-columns: repeat(2, 1fr); }
  .trust__list { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta__inner .btn--gold { margin-left: 0; }
  .cta__note { padding-left: 0; border-left: none; }
  .cta__deco { position: absolute; right: 16px; bottom: 12px; width: 60px; height: 60px; opacity: 0.4; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer__nav { justify-content: center; }
}

/* wp_nav_menu が出力する ul/li をフラット扱いにする */
.footer__nav ul { display: contents; }
