/* ============================================================
   KAITORI v3 — Refined & Polished
   Premium Japanese Buy-back Site
============================================================ */

/* Google Fonts: Noto Sans JP (primary) + Shippori Mincho (accent) + Cormorant Garamond (display) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;700;900&display=swap');

:root {
  /* ── Palette ─────────────────────────── */
  --navy-900: #0d1628;
  --navy-800: #14213d;
  --navy-700: #1e2f52;
  --navy-600: #2c3e6b;

  --gold-700: #8a6d2c;
  --gold-600: #a68535;
  --gold-500: #c9a961;
  --gold-400: #dcc489;
  --gold-300: #e8d5a8;
  --gold-200: #f0e0b8;
  --gold-100: #f5ead0;

  --bg:        #ffffff;
  --bg-alt:    #fafaf7;
  --paper:     #f7efd8;
  --ivory:     #fbf8f0;
  --beige:     #e8dcc0;
  --border:    #e5dcc5;
  --border-soft: #eee7d3;

  --ink:       #333333;
  --ink-2:     #333333;
  --ink-3:     #333333;
  --ink-4:     #333333;

  --rose:      #c73e62;
  --rose-dark: #a02d4e;
  --green:     #2d8a5e;
  --green-dark:#1e6a46;

  /* ── Japanese accent colors (used sparingly) ── */
  --shu:       #c8453c;   /* 朱赤 vermilion */
  --shu-dark:  #9d342d;
  --fuka:      #1f4c3a;   /* 深緑 deep green */
  --fuka-dark: #123627;

  /* ── Type ─────────────────────────── */
 /*--serif:   'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', serif;
  --sans:    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'YuGothic', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  display: 'Cormorant Garamond', 'Shippori Mincho', serif;
  --latin:   'Cormorant Garamond', serif;*/

/* ============================================================
   FONT OVERRIDE — Noto Sans Japanese as primary
   Mincho only for specific accents (numbers, key headlines)
============================================================ */
:root {
  --sans:    'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'YuGothic', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:   'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  /*--mincho:  'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', serif;
  --display: 'Cormorant Garamond', 'Shippori Mincho', serif;*/
}


  /* ── Shadows ─────────────────────────── */
  --sh-sm: 0 1px 3px rgba(20, 33, 61, 0.06);
  --sh-md: 0 4px 12px rgba(20, 33, 61, 0.08);
  --sh-lg: 0 10px 28px rgba(20, 33, 61, 0.12);
  --sh-xl: 0 20px 50px -12px rgba(20, 33, 61, 0.22);

  /* ── Geometry ─────────────────────────── */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-pill: 999px;

  --container: 1120px;
}

/* ── Reset & Base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body, html {
  overflow-x: hidden;
}
body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 1000px 500px at 10% 0%, rgba(201, 169, 97, 0.06), transparent 55%),
    radial-gradient(ellipse 900px 700px at 90% 60%, rgba(20, 33, 61, 0.02), transparent 55%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ── Layout primitives ───────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.gap-sm { gap: 12px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 32px; }

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: #fff;
  position: relative; /* PC: 通常配置（吸着なし） */
  z-index: 200;
  box-shadow: var(--sh-md);
}
/* Mobile: ヘッダー吸着 */
@media (max-width: 960px) {
  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
/* Push body content below the fixed header — only on mobile */
body { padding-top: 0; }
@media (max-width: 960px) {
  body { padding-top: 78px; }
}
@media (max-width: 600px) {
  body { padding-top: 70px; }
}
/* WP admin bar offset */
@media (max-width: 782px) {
  body.admin-bar .top-bar { top: 46px; }
}
.top-bar::after {
  content: "";
  display: block;
  height: 3px;
  background:
    linear-gradient(90deg, var(--gold-700), var(--gold-500) 30%, var(--gold-400) 50%, var(--gold-500) 70%, var(--gold-700));
}

/* Row 1: logo + utility */
.top-bar__row--top {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Row 2: navigation */
.top-bar__row--nav {
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  background: #fff;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand__logo {
  display: block;
  height: 65px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 960px) {
  .brand__logo { height: 45px; }
}
@media (max-width: 600px) {
  .brand__logo { height: 42px; }
}

/* Global nav */
.gnav {
  display: flex;
  justify-content: center;
}
.gnav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  width: 100%;
  justify-content: space-around;
}
.gnav__item {
  position: relative;
  flex: 1;
}
/* Vertical divider between items (gold thin line) */
.gnav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: var(--gold-500);
  opacity: 0.6;
}
.gnav__item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
  font-family: var(--serif);
  letter-spacing: 0.1em;
  position: relative;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.gnav__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  width: 28px;
  height: 28px;
}
.gnav__ico svg { width: 100%; height: 100%; }
.gnav__label {
  font-family: var(--serif);
  letter-spacing: 0.1em;
}
.gnav__item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .3s, left .3s;
}
.gnav__item:hover > a,
.gnav__item > a.is-active {
  color: var(--gold-700);
}
.gnav__item:hover > a::after,
.gnav__item > a.is-active::after {
  width: 40%;
  left: 30%;
}

/* Dropdown panel */
.gnav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .25s ease,
    transform .25s cubic-bezier(.16, 1, .3, 1),
    visibility .25s;
  z-index: 50;
  padding-top: 8px;
}
.gnav__dropdown--wide { min-width: 640px; }

.gnav__item:hover .gnav__dropdown,
.gnav__item:focus-within .gnav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gnav__dropdown-inner {
  background: #fff;
  border: 1px solid var(--gold-300);
  border-top: 3px solid var(--gold-500);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 40px -8px rgba(20, 33, 61, 0.2);
  padding: 22px 24px;
  position: relative;
}
.gnav__dropdown-inner::before {
  /* small arrow pointer */
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold-500);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.gnav__dropdown-inner--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 24px 28px;
}

.gnav__dropdown-title {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}

.gnav__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gnav__dropdown-list li a {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--navy-800);
  text-decoration: none;
  border-radius: 4px;
  transition: background .18s, color .18s, padding-left .2s;
  letter-spacing: 0.04em;
}
.gnav__dropdown-list li a:hover {
  background: var(--paper);
  color: var(--gold-700);
  padding-left: 16px;
}

.gnav-dd-label {
  font-weight: 700;
  font-size: 13px;
}
.gnav-dd-desc {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.gnav__dropdown-list li a:hover .gnav-dd-desc {
  color: var(--ink-2);
}

/* Icon variant — for lists with SVG icons */
.gnav__dropdown-list--icons li a {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.gnav-dd-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--paper), var(--ivory));
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.gnav-dd-ico svg {
  width: 18px;
  height: 18px;
}
.gnav__dropdown-list--icons li a:hover .gnav-dd-ico {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  border-color: var(--gold-500);
  color: #fff;
  transform: scale(1.05);
}
.gnav-dd-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.utility {
  display: flex !important;
  align-items: stretch;
  gap: 18px;
  visibility: visible !important;
}

/* New tel block: gold lines + label, then icon + number */
.utility__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.utility__tel-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 12px;
  color: var(--gold-700);
  letter-spacing: 0.06em;
  margin: 0;
  font-weight: 500;
}
.utility__tel-deco {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: var(--gold-500);
}
.utility__tel-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.utility__tel-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  flex-shrink: 0;
}
.utility__tel-ico svg { width: 18px; height: 18px; }
.utility__tel-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
}
.utility__tel-num:hover { color: var(--gold-700); }

/* Shop button (navy with gold corners) */
.utility__shop-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: linear-gradient(180deg, #1d2b4a 0%, #14223e 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: filter .2s, transform .2s;
  border: 1px solid rgba(201, 169, 97, 0.3);
}
.utility__shop-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}
.utility__shop-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.utility__shop-corner--tl {
  top: 4px; left: 4px;
  border-top: 1.5px solid var(--gold-400);
  border-left: 1.5px solid var(--gold-400);
}
.utility__shop-corner--tr {
  top: 4px; right: 4px;
  border-top: 1.5px solid var(--gold-400);
  border-right: 1.5px solid var(--gold-400);
}
.utility__shop-corner--bl {
  bottom: 4px; left: 4px;
  border-bottom: 1.5px solid var(--gold-400);
  border-left: 1.5px solid var(--gold-400);
}
.utility__shop-corner--br {
  bottom: 4px; right: 4px;
  border-bottom: 1.5px solid var(--gold-400);
  border-right: 1.5px solid var(--gold-400);
}
.utility__shop-ico,
.utility__shop-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.utility__shop-ico svg { width: 18px; height: 18px; color: var(--gold-300); }
.utility__shop-arrow svg { width: 16px; height: 16px; color: #fff; transition: transform .2s; }
.utility__shop-btn:hover .utility__shop-arrow svg { transform: translateX(4px); }

/* Legacy classes kept for compatibility (now hidden) */
.utility__label, .utility__num, .btn-pill { display: none; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background:
    linear-gradient(180deg, rgba(249, 243, 227, 0.4), rgba(236, 219, 168, 0.6)),
    linear-gradient(135deg, #f6eccf 0%, #e5cc8a 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 3px double var(--gold-400);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(20, 33, 61, 0.06));
  pointer-events: none;
}
.hero__ribbon {
  background: linear-gradient(90deg, transparent, var(--navy-800) 20%, var(--navy-800) 80%, transparent);
  text-align: center;
  padding: 11px;
  position: relative;
  z-index: 2;
}
.hero__ribbon span {
  color: var(--gold-300);
  font-size: 12px;
  font-family: var(--serif);
  letter-spacing: 0.3em;
}

.hero__inner {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { padding-left: 90px; }
.hero__lead {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--navy-800);
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}
.hero__lead::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 1px;
  background: var(--gold-700);
}
.hero__main {
  position: relative;
  display: inline-block;
}
.hero__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
}
.badge-round {
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 30% 30%, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2),
              inset 0 -3px 6px rgba(0, 0, 0, 0.15),
              inset 0 3px 6px rgba(255, 255, 255, 0.25);
  border: 2px solid #fff;
  font-family: var(--serif);
  position: relative;
  letter-spacing: 0.05em;
}
.badge-round::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
}
.badge-round--gold { background: radial-gradient(circle at 30% 30%, var(--gold-500), var(--gold-700)); }

.hero__title {
  font-family: var(--serif);
  font-size: 92px;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 3px 3px 0 var(--gold-300);
}
.hero__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  width: 240px;
}
.hero__divider::before,
.hero__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
}
.hero__divider span { color: var(--gold-700); font-size: 10px; }
.hero__tagline {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--navy-800);
  letter-spacing: 0.2em;
  font-weight: 500;
}
.hero__items {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-400);
  border-radius: var(--r-sm);
  padding: 8px 16px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-800);
  font-family: var(--serif);
  letter-spacing: 0.1em;
  box-shadow: var(--sh-sm);
  transition: transform .2s;
}
.hero-item:hover { transform: translateY(-2px); }
.hero-item img {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid var(--gold-400);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}
.hero__portrait {
  width: 280px;
  height: 360px;
  border-radius: 140px 140px 12px 12px;
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.hero__circle--1 {
  width: 90px; height: 90px;
  top: 10px; right: 10px;
  background: radial-gradient(circle, var(--gold-300), transparent 70%);
}
.hero__circle--2 {
  width: 160px; height: 160px;
  bottom: 0; left: -20px;
  background: radial-gradient(circle, rgba(20, 33, 61, 0.12), transparent 70%);
}

/* ============================================================
   CAMPAIGN
============================================================ */
.campaign { padding: 28px 0 0; }
.campaign__inner {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent 50%),
    linear-gradient(135deg, #2d4a2e 0%, #1e3420 100%);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg), inset 0 0 0 1px rgba(201, 169, 97, 0.3);
}
.campaign__inner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 255, 255, 0.025) 14px 15px);
}
.campaign__inner::after {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 6px;
  pointer-events: none;
}
.campaign__stamps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 280px;
  position: relative;
  z-index: 1;
}
.campaign__stamps img {
  aspect-ratio: 1.2;
  width: 100%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.campaign__stamps img:nth-child(1) { transform: rotate(-3deg); }
.campaign__stamps img:nth-child(2) { transform: rotate(2deg); margin-top: 8px; }

.campaign__text { position: relative; z-index: 1; text-align: center; }
.campaign__small {
  color: var(--gold-300);
  font-size: 12px;
  letter-spacing: 0.3em;
  font-family: var(--serif);
}
.campaign__title {
  color: #fff;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.15;
  margin: 10px 0;
  text-shadow: 3px 3px 0 var(--gold-700);
}
.campaign__title span { color: var(--gold-300); }
.campaign__note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-family: var(--serif);
}

/* ============================================================
   LAYOUT
============================================================ */
.layout {
  padding-top: 32px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
}

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 18px; }

/* Side card (tabs) */
.side-card {
  background: var(--navy-800);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gold-700);
}
.side-card__head {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}
.side-card__head span {
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-family: var(--serif);
}
.side-tabs { display: flex; }
.side-tab {
  flex: 1;
  padding: 12px 4px;
  background: var(--navy-700);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--serif);
  letter-spacing: 0.08em;
  transition: background .2s;
  position: relative;
}
.side-tab.is-active {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
}
.side-tab.is-active::after {
  content: "▼";
  position: absolute;
  left: 50%; bottom: -7px;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--gold-700);
}
.side-tab:not(.is-active):hover { background: var(--navy-600); }
.side-card__note {
  padding: 10px;
  font-size: 10px;
  color: var(--gold-300);
  text-align: center;
  background: var(--navy-900);
  letter-spacing: 0.12em;
}

/* Quick contact */
.side-quick {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: var(--sh-sm);
}
.side-quick__title {
  font-size: 11px;
  color: var(--gold-700);
  text-align: center;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.18em;
  font-family: var(--serif);
}
.quick-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: var(--r-sm);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--serif);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform .2s, box-shadow .2s;
}
.quick-btn:last-child { margin-bottom: 0; }
.quick-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }
.quick-btn__ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.quick-btn__text { line-height: 1.3; }
.quick-btn__text small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  opacity: .9;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.quick-btn--mail { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }
.quick-btn--line { background: linear-gradient(135deg, var(--green), var(--green-dark)); }

/* Side blocks */
.side-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.side-block__title {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 12px;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: var(--serif);
  border-bottom: 1px solid var(--gold-700);
  margin-bottom: 0;
}

.side-list li,
.side-brand li {
  padding: 9px 14px;
  font-size: 12px;
  border-bottom: 1px dotted var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  cursor: pointer;
  transition: background .2s, color .2s, padding-left .2s;
}
.side-list li:last-child,
.side-brand li:last-child { border-bottom: none; }
.side-list li:hover,
.side-brand li:hover {
  background: var(--paper);
  color: var(--gold-700);
  padding-left: 18px;
}

.thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--gold-400);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.thumb--gold    { background-image: url("https://images.unsplash.com/photo-1610375461369-d1859ab41f4c?w=80&h=80&fit=crop"); }
.thumb--jewel   { background-image: url("https://images.unsplash.com/photo-1605100804763-247f67b3557e?w=80&h=80&fit=crop"); }
.thumb--watch   { background-image: url("https://images.unsplash.com/photo-1523170335258-f5ed11844a49?w=80&h=80&fit=crop"); }
.thumb--bag     { background-image: url("https://images.unsplash.com/photo-1584917865442-de89df76afd3?w=80&h=80&fit=crop"); }
.thumb--cloth   { background-image: url("https://images.unsplash.com/photo-1601924994987-69e26d50dc26?w=80&h=80&fit=crop"); }
.thumb--shoe    { background-image: url("https://images.unsplash.com/photo-1543163521-1bf539c55dd2?w=80&h=80&fit=crop"); }
.thumb--wear    { background-image: url("https://images.unsplash.com/photo-1445205170230-053b83016050?w=80&h=80&fit=crop"); }
.thumb--diamond { background-image: url("https://images.unsplash.com/photo-1602752250015-52934bc45613?w=80&h=80&fit=crop"); }
.thumb--wine    { background-image: url("https://images.unsplash.com/photo-1569529465841-dfecdab7503b?w=80&h=80&fit=crop"); }
.thumb--stamp   { background-image: url("https://images.unsplash.com/photo-1579447293580-3555c03fe20e?w=80&h=80&fit=crop"); }
.thumb--antique { background-image: url("https://images.unsplash.com/photo-1584992236310-6ded1d34e1b5?w=80&h=80&fit=crop"); }
.thumb--inst    { background-image: url("https://images.unsplash.com/photo-1511192336575-5a79af67a629?w=80&h=80&fit=crop"); }
.thumb--camera  { background-image: url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=80&h=80&fit=crop"); }

.side-brand li {
  font-family: var(--serif);
  font-weight: 500;
}
.side-brand li::before {
  content: "―";
  color: var(--gold-500);
  font-size: 10px;
  margin-right: 4px;
}

/* Side CTAs */
.side-ctas { display: flex; flex-direction: column; gap: 6px; }
.side-cta {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  color: #fff;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  letter-spacing: 0.06em;
  box-shadow: 0 2px 4px rgba(166, 133, 53, 0.25);
  transition: transform .2s, background .2s;
}
.side-cta:hover {
  background: linear-gradient(180deg, var(--gold-700), #6d5520);
  transform: translateX(2px);
}
.side-cta__ico {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.side-cta__badge {
  margin-left: auto;
  background: var(--rose);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 700;
  font-family: var(--latin);
  letter-spacing: 0.05em;
}

/* ============================================================
   MAIN
============================================================ */
.main { min-width: 0; display: flex; flex-direction: column; }
.main > * + * { margin-top: 24px; }

/* Headings */
.heading {
  text-align: center;
  position: relative;
  font-family: var(--serif);
  color: var(--navy-800);
  margin-bottom: 24px;
}
.heading span {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  padding: 0 36px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  letter-spacing: 0.18em;
}
.heading::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-500) 30%, var(--gold-500) 70%, transparent 95%);
}
.heading::after {
  content: "✦";
  display: block;
  color: var(--gold-500);
  font-size: 11px;
  margin-top: 10px;
  letter-spacing: 1em;
  padding-left: 1em;
}
.heading--dark span { background: transparent; color: #fff; }
.heading--dark::before {
  background: linear-gradient(90deg, transparent 5%, var(--gold-400) 30%, var(--gold-400) 70%, transparent 95%);
}
.heading--dark::after { color: var(--gold-400); }

.subheading {
  text-align: center;
  font-size: 13px;
  color: var(--navy-800);
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.subheading::before,
.subheading::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  opacity: .8;
}

.more-link { text-align: right; margin-top: 16px; }
.more-link a {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-700);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--serif);
  padding: 5px 12px;
  border-bottom: 1px solid var(--gold-400);
  transition: color .2s, border-color .2s;
}
.more-link a:hover { color: var(--navy-800); border-color: var(--navy-800); }
.more-link--dark a { color: var(--gold-300); border-bottom-color: var(--gold-500); }
.more-link--dark a:hover { color: #fff; border-color: #fff; }

/* ============================================================
   BRAND CARDS (Featured)
============================================================ */
.brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.brand-card::before {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  pointer-events: none;
  transition: border-color .3s;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.brand-card:hover::before { border-color: var(--gold-500); }
.brand-card__img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--paper);
}
.brand-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.brand-card:hover .brand-card__img img { transform: scale(1.05); }
.brand-card__name {
  font-family: var(--latin);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.18em;
}
.brand-card__sub {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 3px;
  font-family: var(--serif);
  letter-spacing: 0.1em;
}

/* ============================================================
   CALLOUT
============================================================ */
.callout {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 243, 227, 0.92));
  border: 2px solid var(--gold-500);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 28px;
  align-items: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.18);
}
.callout::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px dashed var(--gold-400);
  border-radius: 7px;
  pointer-events: none;
}
.callout__small {
  font-size: 11px;
  color: var(--gold-700);
  font-family: var(--serif);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.callout__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.callout__emph {
  color: var(--rose);
  font-size: 34px;
  padding: 0 6px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.callout__emph::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 3px;
  background: var(--rose);
  border-radius: 2px;
}
.callout__tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.callout__tags span {
  font-size: 10px;
  padding: 5px 12px;
  background: var(--gold-100);
  color: var(--gold-700);
  border-radius: var(--r-pill);
  border: 1px solid var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--serif);
}

.callout__visual {
  position: relative;
  text-align: center;
}
.callout__visual img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 80px 80px 8px 8px;
  border: 3px solid #fff;
  box-shadow: var(--sh-lg);
  margin: 0 auto;
}
.callout__seal {
  position: absolute;
  top: -4px;
  right: 4px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--gold-300);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  border: 3px solid var(--gold-500);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  font-family: var(--serif);
  letter-spacing: 0.08em;
}
.callout__seal strong {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: 1px;
}

/* ============================================================
   CONTACT BLOCKS
============================================================ */
.contact-block {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform .25s, box-shadow .25s;
  color: #fff;
}
.contact-block::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}
.contact-block:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.contact-block--green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.contact-block--rose  { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }
.contact-block__ico {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.32);
}
.contact-block__body { flex: 1; position: relative; z-index: 1; }
.contact-block__small {
  font-size: 10px;
  opacity: .92;
  letter-spacing: 0.18em;
  font-family: var(--serif);
}
.contact-block__large {
  font-size: 17px;
  font-weight: 700;
  margin: 4px 0 4px;
  font-family: var(--serif);
  letter-spacing: 0.1em;
}
.contact-block__num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.contact-block__cta {
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  font-family: var(--serif);
  letter-spacing: 0.05em;
}

/* ============================================================
   PLAN BUTTONS (店頭/出張)
============================================================ */
.plan-btn {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gold-700);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.plan-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.15), transparent);
  transition: left .55s;
}
.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold-400);
}
.plan-btn:hover::before { left: 100%; }
.plan-btn__ico {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
}
.plan-btn__ico svg { width: 24px; height: 24px; }
.plan-btn__text { display: flex; flex-direction: column; flex: 1; }
.plan-btn__title {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--serif);
  letter-spacing: 0.12em;
}
.plan-btn__sub {
  font-size: 11px;
  opacity: .85;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.plan-btn__arrow {
  color: var(--gold-400);
  font-size: 20px;
  font-family: var(--latin);
}

/* ============================================================
   ITEM CARDS
============================================================ */
.item-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-800);
  font-family: var(--serif);
  letter-spacing: 0.06em;
  box-shadow: var(--sh-sm);
  display: block;
  transition: transform .25s, box-shadow .25s, border-color .25s, color .25s;
}
.item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--gold-500);
  color: var(--gold-700);
}
.item-card__img {
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
  background-color: #fbf6ec;
  background-image: url("../img/silk-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.item-card__img::before {
  /* White veil to fade silk texture (adjust alpha to taste) */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 0;
}
.item-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s;
  position: relative;
  z-index: 1;
}
.item-card:hover .item-card__img img { transform: scale(1.08); }

/* ============================================================
   RESULTS
============================================================ */
.results {
  background: #fff;
  border: 2px solid var(--gold-500);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.15);
}
.results::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed var(--gold-400);
  border-radius: 7px;
  pointer-events: none;
}
.results__head { text-align: center; margin-bottom: 22px; position: relative; z-index: 1; }
.results__lead {
  font-size: 13px;
  color: var(--gold-700);
  font-family: var(--serif);
  letter-spacing: 0.28em;
}
.results__title {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--navy-800);
  font-weight: 800;
  margin-top: 8px;
  letter-spacing: 0.08em;
}
.results__title span {
  color: var(--rose);
  font-family: var(--display);
  font-size: 54px;
  font-style: italic;
  margin: 0 8px;
  font-weight: 700;
}

.results__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 0 4px;
  border-bottom: 2px solid var(--gold-500);
  position: relative;
  z-index: 1;
}
.result-tab {
  padding: 10px 20px;
  background: var(--paper);
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-800);
  font-family: var(--serif);
  border-radius: 4px 4px 0 0;
  letter-spacing: 0.12em;
  transition: background .2s, color .2s;
}
.result-tab.is-active {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  color: #fff;
}
.result-tab:not(.is-active):hover { background: var(--gold-300); color: var(--gold-700); }

.result-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 12px;
  text-align: center;
  font-size: 11px;
  position: relative;
  z-index: 1;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.result-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
  box-shadow: var(--sh-md);
}
.result-card__img {
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  margin-bottom: 10px;
}
.result-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-card__brand {
  font-family: var(--latin);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-800);
  letter-spacing: 0.18em;
}
.result-card__model {
  font-size: 10px;
  color: var(--ink-3);
  margin: 4px 0 10px;
  font-family: var(--serif);
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-card__price {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  padding: 7px 4px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--display);
  letter-spacing: 0.03em;
}
.result-card__price small {
  font-size: 9px;
  margin-left: 5px;
  opacity: .92;
  font-family: var(--serif);
}

/* ============================================================
   VALUE-KNOW
============================================================ */
.value-know {
  background: linear-gradient(180deg, #fff, var(--paper));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.value-know__head { margin-bottom: 20px; }
.value-know__lead {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 8px;
  letter-spacing: 0.12em;
}
.value-know__sub {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

.vk-btn {
  padding: 18px;
  border-radius: var(--r-md);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 1.3;
  font-family: var(--serif);
  letter-spacing: 0.12em;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.vk-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.vk-btn__ico {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.vk-btn__text { text-align: left; }
.vk-btn--rose  { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }
.vk-btn--green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }

/* ============================================================
   BRAND GRID
============================================================ */
/* Brand grid is now a semantic ul/li — reset list defaults */
ul.brand-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.brand-grid > li {
  list-style: none;
  margin: 0;
}

.brand-grid .brand-cell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 24px 16px 20px;
  min-height: 130px;
  text-decoration: none;
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}
/* Subtle gold corner accent */
.brand-grid .brand-cell::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--gold-500);
  border-left: 1px solid var(--gold-500);
  opacity: 0.4;
  transition: opacity .25s;
}
.brand-grid .brand-cell::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid var(--gold-500);
  border-right: 1px solid var(--gold-500);
  opacity: 0.4;
  transition: opacity .25s;
}
.brand-grid .brand-cell__name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  transition: color .25s;
}
.brand-grid .brand-cell__kana {
  display: block;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-700);
  letter-spacing: 0.12em;
  text-align: center;
  transition: color .25s;
}
.brand-grid .brand-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--gold-500);
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}
.brand-grid .brand-cell:hover::before,
.brand-grid .brand-cell:hover::after {
  opacity: 1;
}
.brand-grid .brand-cell:hover .brand-cell__name {
  color: var(--gold-700);
}

@media (max-width: 600px) {
  .brand-grid .brand-cell {
    padding: 15px 10px;
    min-height: 60px;
  }
  .brand-grid .brand-cell__name { font-size: 15px; }
  .brand-grid .brand-cell__kana { font-size: 10px; }
  .brand-grid .brand-cell {
    gap: 0;
}
}

/* ============================================================
   BEST BUY
============================================================ */
.best-buy {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), transparent 50%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-radius: var(--r-lg);
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.best-buy::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(201, 169, 97, 0.32);
  border-radius: 6px;
  pointer-events: none;
}
.best-buy__sub {
  text-align: center;
  font-size: 11px;
  color: var(--gold-300);
  margin-bottom: 22px;
  letter-spacing: 0.22em;
  font-family: var(--serif);
}

.bb-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.32);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .25s, background .25s, border-color .25s;
}
.bb-card:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--gold-400);
  transform: translateY(-3px);
}
.bb-card__img {
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.bb-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bb-card__price {
  color: var(--gold-300);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.bb-card__model {
  font-size: 11px;
  margin-top: 4px;
  opacity: .9;
  font-family: var(--serif);
  letter-spacing: 0.08em;
}

/* ============================================================
   REASONS (6 つの理由)
============================================================ */
.reasons {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh-sm);
}
.reasons__lead {
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 26px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  line-height: 1;
}
.reasons__orn { color: var(--gold-500); font-size: 14px; }
.reasons__strong { font-weight: 700; }
.reasons__six {
  font-family: var(--display);
  color: var(--rose);
  font-size: 52px;
  font-style: italic;
  font-weight: 700;
  margin: 0 8px;
  vertical-align: -6px;
}

.reasons__list { display: grid; gap: 12px; }
.reason {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 20px 22px;
  background: linear-gradient(90deg, #f6f3ec, var(--ivory));
  border-left: 4px solid var(--gold-500);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
  transition: transform .25s, background .25s, border-left-color .25s;
  align-items: center;
}
.reason:hover {
  background: linear-gradient(90deg, var(--gold-100), var(--paper));
  border-left-color: var(--gold-700);
  transform: translateX(3px);
}
.reason__num {
  text-align: center;
  font-family: var(--display);
  color: var(--navy-800);
  line-height: 1;
}
.reason__num span {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--gold-700);
}
.reason__num strong {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-700);
  margin-top: 4px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold-500);
  font-style: italic;
}
.reason__body h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.reason__body p {
  font-size: 14px;
  color: #333333;
  line-height: 1.85;
}

/* ============================================================
   FLOW (店頭/出張)
============================================================ */
.flow {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-sm);
}
.flow__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold-500);
  letter-spacing: 0.12em;
}
.flow__ico {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold-500);
}
.flow__ico svg { width: 20px; height: 20px; }
.flow__sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.flow__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}
.step {
  background: linear-gradient(180deg, var(--paper), var(--ivory));
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 18px 12px;
  text-align: center;
  transition: transform .2s, border-color .2s;
}
.step:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.step__ico {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--gold-700);
}
.step__ico svg { width: 22px; height: 22px; }
.step__num {
  font-family: var(--latin);
  font-size: 10px;
  color: var(--gold-700);
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 4px;
}
.step__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.4;
  font-family: var(--serif);
  letter-spacing: 0.06em;
}
.step-arrow {
  color: var(--gold-500);
  font-size: 14px;
  align-self: center;
}
.flow__note {
  font-size: 10px;
  color: var(--ink-3);
  padding: 11px 14px;
  background: var(--paper);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold-400);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: linear-gradient(180deg, var(--gold-600), #836827);
  color: var(--gold-100);
  padding: 56px 0 28px;
  margin-top: 60px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300), var(--gold-400));
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer__brand {
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer__brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  /* If logo is dark, brighten it for dark footer background */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
@media (max-width: 600px) {
  .footer__brand-logo { height: 48px; }
}
.footer__addr {
  font-size: 14px;
  line-height: 1.95;
  opacity: .92;
}
.footer__sns {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer__sns a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s, color .2s, border-color .2s;
}
.footer__sns a:hover {
  background: #fff;
  color: var(--gold-700);
  border-color: #fff;
}

.footer__h {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  letter-spacing: 0.18em;
}
.footer__col ul li {
  font-size: 11px;
  padding: 5px 0;
  opacity: .92;
}
.footer__col ul li a {
  font-family: var(--serif);
  letter-spacing: 0.05em;
  transition: color .2s, padding-left .2s;
}
.footer__col ul li a::before {
  content: "›";
  color: var(--gold-300);
  margin-right: 6px;
}
.footer__col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer__tel {
  font-family: var(--mincho);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer__hours {
  font-size: 11px;
  opacity: .92;
  font-family: var(--serif);
}

.footer__copy {
  max-width: var(--container);
  margin: 36px auto 0;
  padding: 22px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: .85;
  font-family: var(--serif);
}

/* ============================================================
   HAMBURGER BUTTON (mobile only)
============================================================ */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  border: 1px solid var(--gold-600);
  border-radius: var(--r-sm);
  position: relative;
  z-index: 1001;
  padding: 0;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.hamburger:hover { background: var(--navy-700); }
.hamburger__lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger__lines span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-300);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform .45s cubic-bezier(.68,-.4,.27,1.4),
    opacity .25s ease,
    background-color .25s ease,
    width .35s ease;
}
/* Hover micro-interaction: lines shift to suggest interactivity */
.hamburger:hover .hamburger__lines span:nth-child(1) { width: 18px; transform: translateX(-2px); }
.hamburger:hover .hamburger__lines span:nth-child(3) { width: 18px; transform: translateX(2px); }

/* Active state: morph hamburger -> X with staggered timing */
.hamburger.is-active { background: var(--gold-600); border-color: var(--gold-400); }
.hamburger.is-active .hamburger__lines span {
  background: #fff;
  width: 22px;
  transform: translateX(0);
}
.hamburger.is-active .hamburger__lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  transition-delay: .05s;
}
.hamburger.is-active .hamburger__lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger__lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  transition-delay: .05s;
}

/* ============================================================
   MOBILE OVERLAY MENU
   - Circular reveal from hamburger button position
   - Glassmorphism backdrop
   - Staggered content reveal
============================================================ */
.m-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
  --origin-x: 100%;
  --origin-y: 0%;
}
/* CRITICAL: when overlay is closed, force ALL descendants to be non-interactive */
.m-overlay:not(.is-open):not(.is-closing) {
  display: none !important;
}
.m-overlay.is-open,
.m-overlay.is-closing { visibility: visible; }
.m-overlay.is-open { pointer-events: auto; }

/* Backdrop layer (clip-path circular reveal) — WHITE theme */
.m-overlay__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  clip-path: circle(0 at var(--origin-x) var(--origin-y));
  transition: clip-path .65s cubic-bezier(.77, 0, .175, 1);
}
.m-overlay__bg::before {
  /* very subtle gold accent at top right */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.08), transparent 50%);
  pointer-events: none;
}
.m-overlay.is-open .m-overlay__bg {
  clip-path: circle(150% at var(--origin-x) var(--origin-y));
}
.m-overlay.is-closing .m-overlay__bg {
  clip-path: circle(0 at var(--origin-x) var(--origin-y));
}

/* Scroll-able panel (stays clipped under bg until reveal completes enough) */
.m-overlay__panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity .3s ease .25s;
}
.m-overlay.is-open .m-overlay__panel { opacity: 1; }
.m-overlay.is-closing .m-overlay__panel { transition-delay: 0s; opacity: 0; }

.m-overlay__inner {
  padding: 80px 22px 40px;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Staggered reveal — each block fades + slides in */
.m-block {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .55s cubic-bezier(.16, 1, .3, 1),
    transform .55s cubic-bezier(.16, 1, .3, 1);
}
.m-overlay.is-open .m-block { opacity: 1; transform: translateY(0); }
.m-overlay.is-open .m-block[data-stagger="1"] { transition-delay: .35s; }
.m-overlay.is-open .m-block[data-stagger="2"] { transition-delay: .42s; }
.m-overlay.is-open .m-block[data-stagger="3"] { transition-delay: .49s; }
.m-overlay.is-open .m-block[data-stagger="4"] { transition-delay: .56s; }
.m-overlay.is-open .m-block[data-stagger="5"] { transition-delay: .63s; }
.m-overlay.is-open .m-block[data-stagger="6"] { transition-delay: .70s; }
.m-overlay.is-closing .m-block { opacity: 0; transform: translateY(20px); transition-delay: 0s; }

/* ── M-card (tabs) ─────────── */
.m-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.5);
  box-shadow: 0 4px 12px rgba(20, 33, 61, 0.06);
}
.m-card__head {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  background: #fff;
}
.m-card__head span {
  color: var(--gold-700);
  font-size: 14px;
  letter-spacing: 0.18em;
  font-family: var(--serif);
  font-weight: 700;
}
.m-card__tabs { display: flex; }
.m-tab {
  flex: 1;
  padding: 14px 4px;
  background: #fff;
  color: var(--navy-800);
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--serif);
  letter-spacing: 0.1em;
  transition: background .2s, color .2s;
  position: relative;
  cursor: pointer;
}
.m-tab.is-active {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  color: #fff;
}
.m-tab:not(.is-active):hover { background: rgba(201, 169, 97, 0.08); color: var(--gold-700); }
.m-card__note {
  padding: 11px;
  font-size: 14px;
  color: var(--navy-800);
  text-align: center;
  background: #fff;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

/* ── M-quick (mail / line) ─────────── */
.m-quick__title {
  font-size: 14px;
  color: var(--gold-700);
  text-align: center;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.18em;
  font-family: var(--serif);
}
.m-quick {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: var(--r-sm);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--serif);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 10px rgba(20, 33, 61, 0.15);
  transition: transform .2s;
}
.m-quick:last-child { margin-bottom: 0; }
.m-quick:active { transform: scale(0.98); }
.m-quick__ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.m-quick__text { line-height: 1.3; }
.m-quick__text small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  opacity: .9;
  margin-top: 2px;
}
.m-quick--mail { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }
.m-quick--line { background: linear-gradient(135deg, var(--green), var(--green-dark)); }

/* ── M-section title ─────────── */
.m-section-title {
  background: transparent;
  color: var(--navy-800);
  font-size: 16px;
  font-weight: 700;
  padding: 12px;
  text-align: center;
  letter-spacing: 0.18em;
  font-family: var(--serif);
  border-top: 1px solid rgba(201, 169, 97, 0.4);
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
  margin-bottom: 10px;
  position: relative;
}
.m-section-title::before,
.m-section-title::after {
  content: "—";
  color: var(--gold-500);
  margin: 0 8px;
}

/* ── M-list (items) ─────────── */
.m-list:not(.m-list--items) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 169, 97, 0.4);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.m-list:not(.m-list--items) li {
  background: #fff;
  padding: 14px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  cursor: pointer;
  transition: background .2s, padding-left .2s;
  font-family: var(--serif);
  font-weight: 700;
}
.m-list:not(.m-list--items) li:hover {
  background: rgba(201, 169, 97, 0.1);
  padding-left: 16px;
  color: var(--gold-700);
}

/* ── M-brand ─────────── */
.m-brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: var(--r-sm);
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-brand li {
  background: #fff;
  padding: 14px 14px;
  font-size: 14px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s, color .2s;
  border-right: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  display: flex;
  align-items: center;
}
.m-brand li:nth-child(2n) { border-right: none; }
.m-brand li:nth-last-child(-n+2) { border-bottom: none; }
.m-brand li:nth-last-child(1):nth-child(2n+1) {
  /* odd last item that fills only first column */
  border-right: 1px solid rgba(201, 169, 97, 0.2);
}
.m-brand li::before {
  content: "―";
  color: var(--gold-500);
  margin-right: 6px;
  flex-shrink: 0;
}
.m-brand li:hover {
  background: rgba(201, 169, 97, 0.08);
  color: var(--gold-700);
}

/* ── M-cta (gold buttons) ─────────── */
.m-block--ctas { display: flex; flex-direction: column; gap: 8px; }
.m-cta {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  color: #fff;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  letter-spacing: 0.06em;
  box-shadow: 0 3px 10px rgba(166, 133, 53, 0.35);
  transition: transform .2s;
}
.m-cta:active { transform: scale(0.98); }
.m-cta__ico {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.m-cta__badge {
  margin-left: auto;
  background: var(--rose);
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
  font-family: var(--latin);
}

/* ── M-tel-cta (bottom) ─────────── */
.m-block--bottom { padding-top: 8px; }
.m-tel-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: var(--r-md);
  color: var(--navy-800);
  transition: background .2s, border-color .2s;
  box-shadow: 0 4px 12px rgba(20, 33, 61, 0.06);
}
.m-tel-cta:hover {
  background: rgba(201, 169, 97, 0.05);
  border-color: var(--gold-500);
}
.m-tel-cta__ico {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.m-tel-cta__text { display: flex; flex-direction: column; line-height: 1.2; }
.m-tel-cta__text small {
  font-size: 14px;
  color: var(--gold-700);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-weight: 700;
}
.m-tel-cta__text strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
}

/* ── Close button (×) ─────────── */
.m-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.6);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(20, 33, 61, 0.12);
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
  transition:
    opacity .35s ease .35s,
    transform .55s cubic-bezier(.34, 1.56, .64, 1) .35s,
    background .2s,
    border-color .2s;
}
.m-overlay.is-open .m-close {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.m-overlay.is-closing .m-close {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
  transition-delay: 0s, 0s, 0s, 0s;
  transition-duration: .25s;
}
.m-close:hover {
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--gold-500);
}
.m-close:hover .m-close__lines { transform: rotate(90deg); }
.m-close__lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.68, -.4, .27, 1.4);
}
.m-close__lines span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
}
.m-close__lines span:nth-child(1) { transform: rotate(45deg); }
.m-close__lines span:nth-child(2) { transform: rotate(-45deg); }


body.is-menu-open { overflow: hidden; }

/* Bottom padding for sticky CTA (all viewports) */
body { padding-bottom: 88px; }
body.is-menu-open { padding-bottom: 0; }

/* ── Reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  .m-overlay__bg { transition-duration: .25s; }
  .m-block { transition-duration: .2s; }
  .m-overlay.is-open .m-block { transition-delay: 0s !important; }
  .hamburger__lines span { transition-duration: .2s; }
}

/* ============================================================
   STICKY CTA BAR
   - Visible on both desktop and mobile
   - Desktop: centered pill-style with phone number displayed
   - Mobile:  full-width two-button layout, thumb-friendly
   - Scroll-aware: slides up when user is in content area
============================================================ */
/* ============================================================
   STICKY CTA — Premium 3-column overlay
============================================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(calc(100% + 30px));
  z-index: 90;
  width: calc(100% - 28px);
  max-width: 1180px;
  padding: 14px 14px;
  background: linear-gradient(180deg, #1d2b4a 0%, #14223e 100%);
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
/* Inner gold frame line */
.sticky-cta::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 97, 0.28);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1.15fr;
  align-items: stretch;
  gap: 12px;
  position: relative;
}

/* === Left: ribbon + headline === */
.sticky-cta__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 8px;
  text-align: center;
}
.sticky-cta__ribbon {
  position: relative;
  background: linear-gradient(180deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 18px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(185, 29, 58, 0.4);
}
.sticky-cta__ribbon::before,
.sticky-cta__ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--rose-dark);
  transform: translateY(-50%) rotate(45deg);
}
.sticky-cta__ribbon::before { left: -3px; }
.sticky-cta__ribbon::after  { right: -3px; }

.sticky-cta__lead-main {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.sticky-cta__diamond {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* === Buttons (shared) === */
.sticky-cta__btn {
  display: grid;
  grid-template-columns: 60px 1fr 18px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, filter .2s;
  min-height: 84px;
}
.sticky-cta__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.sticky-cta__btn:active { transform: scale(0.98); }

.sticky-cta__btn::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  animation: cta-shine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-shine {
  0%, 80% { left: -80%; }
  90%     { left: 130%; }
  100%    { left: 130%; }
}

/* Tel button (red) */
.sticky-cta__btn--tel {
  background: linear-gradient(135deg, #b91d3a 0%, #8b1029 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 6px 18px rgba(139, 16, 41, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* Shop button (green) */
.sticky-cta__btn--shop {
  background: linear-gradient(135deg, #2d6a4a 0%, #1f4d36 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 6px 18px rgba(31, 77, 54, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* White circular icon */
.sticky-cta__ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.sticky-cta__btn--tel .sticky-cta__ico { color: var(--rose); }
.sticky-cta__btn--shop .sticky-cta__ico { color: var(--green-dark); }
.sticky-cta__ico svg { width: 26px; height: 26px; }

.sticky-cta__ico--pulse::before,
.sticky-cta__ico--pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: cta-ring 2s ease-out infinite;
  pointer-events: none;
}
.sticky-cta__ico--pulse::after { animation-delay: 1s; }
@keyframes cta-ring {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Text inside buttons */
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  position: relative;
  z-index: 1;
  min-width: 0;
  gap: 2px;
}
.sticky-cta__text-main {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.95;
  white-space: nowrap;
}
.sticky-cta__text-main strong {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.sticky-cta__phone-num {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  margin-top: 2px;
}
.sticky-cta__text-sub {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 11px;
  letter-spacing: 0.02em;
  opacity: 0.85;
  white-space: nowrap;
  margin-top: 3px;
}
.sticky-cta__text-shop-main {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: 2px;
}

.sticky-cta__arrow {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.sticky-cta__arrow svg { width: 100%; height: 100%; }
.sticky-cta__btn:hover .sticky-cta__arrow { opacity: 1; transform: translateX(2px); }

@media (prefers-reduced-motion: reduce) {
  .sticky-cta__ico--pulse::before,
  .sticky-cta__ico--pulse::after { animation: none; opacity: 0; }
  .sticky-cta__btn::before { animation: none; }
}


@media (max-width: 960px) {
  .top-bar__row--top { gap: 14px; }
  .top-bar__row--nav { display: none; }
  .btn-pill--desktop { display: none; }
  .hamburger { display: block !important; }
  .utility { gap: 12px; }
  .utility__tel { display: none !important; }
  .utility__shop-btn { display: none !important; }
  .hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .hero__visual { order: -1; height: 280px; }
  .hero__portrait { width: 220px; height: 260px; }
  .hero__copy { padding-left: 90px; text-align: left; }
  .hero__title { font-size: 64px; }
  .hero__badges { left: -84px; }
  .badge-round { width: 60px; height: 60px; font-size: 11px; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .campaign__inner { grid-template-columns: 1fr; text-align: center; }

  /* Sticky CTA — mobile layout */
  .sticky-cta {
    width: calc(100% - 16px);
    bottom: 8px;
    padding: 10px 8px;
    border-radius: 12px;
  }
  .sticky-cta::before { inset: 3px; }
  .sticky-cta__inner {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sticky-cta__lead { display: none; }
  .sticky-cta__btn {
    grid-template-columns: 40px 1fr 16px;
    gap: 8px;
    padding: 10px 10px;
    min-height: 60px;
  }
  .sticky-cta__ico { width: 40px; height: 40px; }
  .sticky-cta__ico svg { width: 18px; height: 18px; }
  .sticky-cta__text-main { font-size: 11px; }
  .sticky-cta__text-main strong { font-size: 12px; }
  .sticky-cta__phone-num { font-size: 18px; }
  .sticky-cta__text-sub { display: none; }
  .sticky-cta__text-shop-main { font-size: 14px; }
  .sticky-cta__arrow { width: 16px; height: 16px; }
  body { padding-bottom: 82px; }
  body.is-menu-open { padding-bottom: 0; }
  .campaign__stamps { margin: 0 auto; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; text-align: center; }
  .callout__tags { justify-content: center; }
  .callout__visual { display: flex; justify-content: center; }
  .reason { grid-template-columns: 80px 1fr; gap: 16px; padding: 16px; }
  .reason__num strong { font-size: 36px; }
}
@media (max-width: 600px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .m-overlay__inner { padding: 76px 18px 32px; }
  .hero__copy { padding-left: 78px; }
  .hero__title { font-size: 52px; }
  .hero__badges { left: -72px; }
  .badge-round { width: 56px; height: 56px; font-size: 10px; }
  .campaign__title { font-size: 38px; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .brand-grid {grid-template-columns: repeat(2, 1fr);}
  .flow__steps { grid-template-columns: 1fr; gap: 8px; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .heading span { font-size: 18px; padding: 0 10px; }
  .results { padding: 22px 14px; }
  .reasons { padding: 22px; }
  .results__title { font-size: 24px; }
  .results__title span { font-size: 38px; }
  .reasons__lead { font-size: 17px; gap: 8px; flex-wrap: wrap; }
  .reasons__six { font-size: 40px; }
  .results__tabs { overflow-x: auto; flex-wrap: nowrap; }
  .result-tab { white-space: nowrap; }
}

/* ============================================================
   SVG ICONS — Unified Lucide-style
============================================================ */
/* All icon containers render SVG with proper sizing */
.quick-btn__ico > svg,
.side-cta__ico > svg,
.m-quick__ico > svg,
.m-cta__ico > svg,
.m-tel-cta__ico > svg,
.vk-btn__ico > svg,
.contact-block__ico > svg { display: block; }

/* Small (22-28px containers) */
.side-cta__ico > svg,
.m-cta__ico > svg { width: 14px; height: 14px; }

.quick-btn__ico > svg,
.m-quick__ico > svg { width: 16px; height: 16px; }

/* Medium (38-46px containers) */
.contact-block__ico > svg,
.vk-btn__ico > svg,
.m-tel-cta__ico > svg { width: 24px; height: 24px; }

/* Inline arrow next to "詳しく見てみる" */
.inline-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  margin-left: 4px;
  transition: transform .2s;
}
.contact-block:hover .inline-arrow { transform: translateX(3px); }

/* Chevron inside more-links */
.link-chev {
  width: 11px;
  height: 11px;
  display: inline-block;
  vertical-align: -1px;
  margin-left: 2px;
  transition: transform .2s;
}
.more-link a:hover .link-chev { transform: translateX(3px); }

/* Plan button arrow — make it cleaner */
.plan-btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: transform .25s;
}
.plan-btn__arrow > svg { width: 20px; height: 20px; display: block; }
.plan-btn:hover .plan-btn__arrow { transform: translateX(4px); }

/* Step arrow (flow) */
.step-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}
.step-arrow > svg { width: 18px; height: 18px; display: block; }

/* Footer SNS — SVG icons */
.footer__sns a > svg { width: 16px; height: 16px; display: block; }

/* Sticky CTA text-desktop / text-mobile — keep default hidden initially */
@media (min-width: 961px) {
  .sticky-cta__btn--tel .sticky-cta__text-mobile { display: none; }
}


/* ============================================================
   DECORATIVE LABEL STYLES (line accents instead of ◆/―)
============================================================ */
/* Small labels: short lines on both sides */
.campaign__small,
.best-buy__sub,
.results__lead,
.callout__small,
.m-quick__title,
.side-quick__title,
.m-card__head span,
.side-card__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.campaign__small::before,
.campaign__small::after,
.best-buy__sub::before,
.best-buy__sub::after,
.results__lead::before,
.results__lead::after,
.callout__small::before,
.callout__small::after,
.m-quick__title::before,
.m-quick__title::after,
.side-quick__title::before,
.side-quick__title::after,
.m-card__head span::before,
.m-card__head span::after,
.side-card__head span::before,
.side-card__head span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  flex-shrink: 0;
}
.campaign__small::before,
.campaign__small::after { background: var(--gold-300); }
.best-buy__sub::before,
.best-buy__sub::after { background: var(--gold-300); }
.results__lead::before,
.results__lead::after { background: var(--gold-600); }
.callout__small::before,
.callout__small::after { background: var(--gold-600); }
.m-quick__title::before,
.m-quick__title::after,
.side-quick__title::before,
.side-quick__title::after { background: var(--gold-400); width: 16px; }
.m-card__head span::before,
.m-card__head span::after,
.side-card__head span::before,
.side-card__head span::after { background: rgba(201, 169, 97, 0.5); width: 16px; }

/* Hero ribbon: add small diamond centerpiece via CSS */
.hero__ribbon span::before,
.hero__ribbon span::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold-400);
  vertical-align: middle;
  margin: 0 12px;
  opacity: .7;
}


/* ============================================================
   TYPOGRAPHY HIERARCHY — refined scale
============================================================ */
/* Eyebrow: small tagline above section headings */
.eyebrow {
  text-align: center;
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Heading — made slightly smaller so h3 feels closer in scale */
.heading span { font-size: 22px; letter-spacing: 0.16em; }

/* Section intro paragraph (between heading and content) */
.section-intro {
  text-align: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
  max-width: 620px;
  margin: -8px auto 24px;
  letter-spacing: 0.05em;
}

/* h3 — stronger hierarchy with new tag */
.reason__body h3 {
  font-size: 19px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.reason__body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.reason:hover .reason__body h3::after {
  background: var(--shu);
  width: 48px;
  transition: width .3s, background .3s;
}
/* Gold-bordered tag (renders as 【...】 visually) */
.reason__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-700);
  padding: 4px 12px;
  background: linear-gradient(135deg, #fff, #fbf6ec);
  border: 1px solid var(--gold-500);
  border-radius: 4px;
  white-space: nowrap;
  font-family: 'Noto Sans JP', var(--sans);
}
.reason:hover .reason__tag {
  background: linear-gradient(135deg, #fdf3d9, #f5e2a8);
  border-color: var(--shu);
  color: var(--shu);
  transition: background .3s, border-color .3s, color .3s;
}

/* Flow title — stronger */
.flow__title { font-size: 22px; letter-spacing: 0.14em; }

/* Results title a touch less massive */
.results__title { font-size: 28px; }
.results__title span { font-size: 48px; }

/* Reasons lead */
.reasons__lead { font-size: 23px; letter-spacing: 0.12em; }


/* ============================================================
   SPACING RHYTHM — breathing room for key sections
============================================================ */
/* Default main gap is 36px from .main > * + *.
   Increase space around "hero" sections for visual weight. */
.main > .results,
.main > .best-buy,
.main > .reasons {
  margin-top: 72px;
}
.main > .results + *,
.main > .best-buy + *,
.main > .reasons + * {
  margin-top: 72px;
}
.main > .callout,
.main > .value-know {
  margin-top: 56px;
}
.main > .flow + .flow {
  margin-top: 16px; /* related flows should stay close */
}

@media (max-width: 960px) {
  .main > .results,
  .main > .best-buy,
  .main > .reasons { margin-top: 52px; }
  .main > .results + *,
  .main > .best-buy + *,
  .main > .reasons + * { margin-top: 52px; }
  .main > .callout,
  .main > .value-know { margin-top: 40px; }
}


/* ============================================================
   SECTION DIVIDERS — Japanese motifs (subtle)
============================================================ */

/* Divider component — wave pattern (seigaiha — 青海波 in concept) */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  gap: 14px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 50%, transparent);
}
.divider__mark {
  font-family: var(--display);
  color: var(--gold-600);
  font-size: 18px;
  letter-spacing: 0.3em;
  opacity: .7;
}

/* Wave pattern strip — for section transitions */
.wave-divider {
  height: 32px;
  margin: 8px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='32' viewBox='0 0 80 32'%3E%3Cg fill='none' stroke='%23a68535' stroke-width='1' stroke-opacity='0.28'%3E%3Cpath d='M0 16 Q 20 4, 40 16 T 80 16'/%3E%3Cpath d='M0 22 Q 20 10, 40 22 T 80 22'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 80px 32px;
  background-position: center;
  opacity: .8;
}

/* Asanoha-inspired pattern as section background */
.pattern-asanoha {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23a68535' stroke-width='0.6' stroke-opacity='0.18'%3E%3Cpath d='M30 0 L30 30 M0 15 L30 30 L60 15 M0 45 L30 30 L60 45 M30 30 L30 60'/%3E%3C/g%3E%3C/svg%3E");
}

/* Reasons & Best-buy get subtle asanoha overlay */
.reasons::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23a68535' stroke-width='0.6' stroke-opacity='0.08'%3E%3Cpath d='M30 0 L30 30 M0 15 L30 30 L60 15 M0 45 L30 30 L60 45 M30 30 L30 60'/%3E%3C/g%3E%3C/svg%3E");
  border-radius: var(--r-lg);
  pointer-events: none;
  opacity: .6;
}
.reasons { position: relative; }
.reasons > * { position: relative; z-index: 1; }

.best-buy { position: relative; }
.best-buy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23dcc489' stroke-width='0.6' stroke-opacity='0.08'%3E%3Cpath d='M30 0 L30 30 M0 15 L30 30 L60 15 M0 45 L30 30 L60 45 M30 30 L30 60'/%3E%3C/g%3E%3C/svg%3E");
  border-radius: var(--r-lg);
  pointer-events: none;
}
.best-buy > * { position: relative; z-index: 1; }


/* ============================================================
   IMAGE TONE UNIFICATION
   Slight saturation drop + warm shift for premium consistency
============================================================ */
.item-card__img img,
.brand-card__img img,
.brand-grid .brand-cell img,
.result-card__img img,
.bb-card__img img,
.hero-item img,
.thumb,
.campaign__stamps img {
  filter: saturate(0.85) contrast(1.02) brightness(0.98);
  transition: filter .35s, transform .4s;
}
.item-card:hover .item-card__img img,
.brand-card:hover .brand-card__img img,
.brand-grid .brand-cell:hover img,
.result-card:hover .result-card__img img,
.bb-card:hover .bb-card__img img {
  filter: saturate(1.0) contrast(1.05) brightness(1.0);
}

/* Callout + hero portraits: slightly warmer */
.callout__visual img,
.hero__portrait img {
  filter: saturate(0.9) contrast(1.02);
}


/* ============================================================
   JAPANESE ACCENT INJECTIONS (subtle, strategic)
============================================================ */
/* Campaign banner: shift to deeper 深緑 */
.campaign__inner {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent 50%),
    linear-gradient(135deg, var(--fuka) 0%, var(--fuka-dark) 100%);
}

/* Hero gold badge: shift to shu (vermilion) for one-of-two contrast */
.badge-round {
  background: radial-gradient(circle at 30% 30%, var(--shu), var(--shu-dark));
}

/* Callout emphasis: 朱赤 instead of rose for "価値だけ" */
.callout__emph { color: var(--shu); }
.callout__emph::after { background: var(--shu); }

/* Results "950" — use 朱赤 for the number */
.results__title span { color: var(--shu); }

/* Reasons "6" — shu */
.reasons__six { color: var(--shu); }

/* Result price badge — shu tint */
.result-card__price {
  background: linear-gradient(135deg, var(--shu), var(--shu-dark));
}


/* ============================================================
   SCROLL REVEAL — Intersection Observer targets
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
              transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1),
              transform .6s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal-stagger].is-revealed > *     { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: .08s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: .24s; }
[data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: .32s; }
[data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: .40s; }
[data-reveal-stagger].is-revealed > *:nth-child(7) { transition-delay: .48s; }
[data-reveal-stagger].is-revealed > *:nth-child(8) { transition-delay: .56s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Small hover polish additions */
.item-card { transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, border-color .3s, color .25s; }
.item-card:hover { transform: translateY(-4px) scale(1.01); }

.brand-cell { transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, border-color .3s; }
.brand-cell:hover { transform: translateY(-4px); }




/* ============================================================
   IMAGE SLIDER — Coverflow carousel with image banners
   Center banner emphasized, sides scaled/rotated
   PC: 750x300 image  /  SP: 300x200 image
============================================================ */
.slider {
  padding: 44px 0 20px;
  overflow: hidden;
}
.slider__stage {
  position: relative;
  perspective: 1400px;
  overflow: visible;
  margin: 0 -12px;
  padding: 24px 0 28px;
}
.slider__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  transform-style: preserve-3d;
}

.slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 960px;
  max-width: 75vw;
  aspect-ratio: 960 / 380;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform .7s cubic-bezier(.25, .1, .25, 1),
    opacity .6s ease,
    filter .6s ease,
    box-shadow .5s ease;
  will-change: transform, opacity, filter;
  transform-origin: center center;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  background: var(--paper);
}

.slide__link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.slide__link picture,
.slide__link picture img {
  display: block;
  width: 100%;
  height: 100%;
}
.slide__link img {
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

/* Position states (applied by JS) */
.slide.is-center {
  transform: translate(-50%, -50%) translateX(0) scale(1);
  opacity: 1;
  z-index: 10;
  filter: saturate(1) brightness(1);
  box-shadow: 0 18px 50px -8px rgba(20, 33, 61, 0.35);
  pointer-events: auto;
}
.slide.is-center .slide__link:hover img {
  transform: scale(1.04);
}
.slide.is-prev,
.slide.is-next {
  opacity: .4;
  z-index: 5;
  filter: saturate(0.55) brightness(0.85);
  box-shadow: 0 10px 30px rgba(20, 33, 61, 0.18);
  pointer-events: auto;
}
.slide.is-prev {
  transform: translate(-50%, -50%) translateX(-58%) scale(0.78) rotateY(18deg);
}
.slide.is-next {
  transform: translate(-50%, -50%) translateX(58%) scale(0.78) rotateY(-18deg);
}
.slide.is-far-prev,
.slide.is-far-next {
  opacity: 0;
  z-index: 1;
  filter: saturate(0.3) brightness(0.7);
  pointer-events: none;
}
.slide.is-far-prev {
  transform: translate(-50%, -50%) translateX(-95%) scale(0.55) rotateY(28deg);
}
.slide.is-far-next {
  transform: translate(-50%, -50%) translateX(95%) scale(0.55) rotateY(-28deg);
}
.slide.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.4);
}

/* Controls */
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}
.slider__nav {
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--navy-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(20, 33, 61, 0.1);
  transition: all .2s;
  padding: 0;
}
.slider__nav:hover {
  background: var(--gold-500);
  color: #fff;
  transform: scale(1.08);
}
.slider__nav:active { transform: scale(0.95); }
.slider__nav svg { width: 18px; height: 18px; }

.slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  border: none;
  transition: all .25s;
}
.slider__dot.is-active {
  background: var(--gold-600);
  width: 24px;
  border-radius: 4px;
}
.slider__dot:hover { background: var(--gold-500); }

@media (max-width: 960px) {
  .slider__track { min-height: 360px; }
  .slide { max-width: 82vw; }
  .slide.is-prev { transform: translate(-50%, -50%) translateX(-54%) scale(0.74) rotateY(16deg); }
  .slide.is-next { transform: translate(-50%, -50%) translateX(54%) scale(0.74) rotateY(-16deg); }
}
@media (max-width: 600px) {
  .slider { padding: 28px 0 10px; }
  .slider__stage { margin: 0 -8px; padding: 18px 0; }
  .slider__track { min-height: 260px; }
  .slide {
    width: 380px;
    max-width: 94vw;
    aspect-ratio: 380 / 220;
    border-radius: 8px;
  }
  .slide.is-prev { transform: translate(-50%, -50%) translateX(-58%) scale(0.7) rotateY(14deg); }
  .slide.is-next { transform: translate(-50%, -50%) translateX(58%) scale(0.7) rotateY(-14deg); }
  .slider__controls { gap: 14px; margin-top: 8px; }
  .slider__nav { width: 36px; height: 36px; }
  .slider__nav svg { width: 16px; height: 16px; }
}

/* ============================================================
   TRUST SIGNALS BANNER
============================================================ */
.trust {
  padding: 44px 0 32px;
  position: relative;
}
.trust::before,
.trust::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.trust::before { top: 0; }
.trust::after { bottom: 0; }

.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}
/* Dividers between stats */
.trust__stats::before,
.trust__stats::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-400), transparent);
}
.trust__stats::before { left: 33.33%; }
.trust__stats::after  { left: 66.66%; }

.trust-stat {
  text-align: center;
  padding: 16px;
  transition: transform .3s;
}
.trust-stat:hover { transform: translateY(-3px); }

.trust-stat--featured .trust-stat__value {
  color: var(--shu);
}
.trust-stat--featured::after {
  content: "人気No.1";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--shu), var(--shu-dark));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-family: var(--serif);
  box-shadow: 0 2px 6px rgba(200, 69, 60, 0.35);
  white-space: nowrap;
}
.trust-stat--featured { position: relative; padding-top: 28px; }

.trust-stat__label {
  font-size: 11px;
  color: var(--gold-600);
  letter-spacing: 0.18em;
  font-family: var(--serif);
  margin-bottom: 6px;
  font-weight: 500;
}
.trust-stat__value {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.trust-stat__value small {
  font-size: 15px;
  font-family: var(--serif);
  color: var(--ink-2);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.trust-stat__value--stars {
  color: var(--gold-500);
  gap: 8px;
}
.trust-stat__value--stars svg { width: 32px; height: 32px; }
.trust-stat__value--stars strong {
  color: var(--navy-800);
  font-family: var(--display);
  font-weight: 700;
}
.trust-stat__desc {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 8px;
  font-family: var(--serif);
  letter-spacing: 0.08em;
}

/* Media section */
.trust__media {
  text-align: center;
  padding-top: 12px;
}
.trust__media-label {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust__media-label::before,
.trust__media-label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}
.trust__media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.media-logo {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  padding: 8px 20px;
  letter-spacing: 0.1em;
  position: relative;
  opacity: .7;
  transition: opacity .2s;
}
.media-logo:hover { opacity: 1; color: var(--navy-800); }
.media-logo:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background: var(--border);
}

@media (max-width: 960px) {
  .trust { padding: 36px 0 28px; }
  .trust__stats { grid-template-columns: 1fr; gap: 18px; margin-bottom: 26px; }
  .trust__stats::before,
  .trust__stats::after { display: none; }
  .trust-stat { padding: 12px 16px; border-bottom: 1px solid var(--border-soft); }
  .trust-stat:last-child { border-bottom: none; }
  .trust-stat--featured { padding-top: 28px; border-top: 1px solid var(--border-soft); }
  .trust-stat__value { font-size: 40px; }
  .trust__media-logos { gap: 0; flex-wrap: wrap; }
  .media-logo { font-size: 12px; padding: 6px 14px; }
}


/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq { padding: 8px 0; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: var(--gold-500);
  box-shadow: var(--sh-md);
}

/* Remove default disclosure marker */
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0;
  line-height: 1.5;
  transition: background .2s, color .2s;
}
.faq-item__q:hover { background: var(--ivory); color: var(--gold-700); }
.faq-item[open] .faq-item__q {
  background: linear-gradient(90deg, var(--paper), var(--ivory));
  border-bottom: 1px solid var(--border-soft);
}

.faq-item__badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--gold-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}
.faq-item__badge--a {
  background: linear-gradient(135deg, var(--shu), var(--shu-dark));
  color: #fff;
}

.faq-item__text { flex: 1; }

.faq-item__chev {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  transition: transform .35s cubic-bezier(.68, -.4, .27, 1.4);
}
.faq-item__chev svg { width: 18px; height: 18px; }
.faq-item[open] .faq-item__chev { transform: rotate(180deg); color: var(--gold-700); }

/* Answer area */
.faq-item__a {
  display: flex;
  gap: 16px;
  padding: 20px 22px 22px;
  animation: faq-slide-down .3s ease;
}
@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-item__a-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-2);
  font-family: var(--serif);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.faq-item__a-text strong {
  color: var(--shu);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(200, 69, 60, 0.15) 60%);
  padding: 0 2px;
}

/* Footer CTA */
.faq__footer {
  margin-top: 32px;
  padding: 26px 24px;
  background: linear-gradient(135deg, var(--paper), var(--ivory));
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  text-align: center;
}
.faq__footer-text {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--navy-800);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.faq__footer-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq__footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--serif);
  letter-spacing: 0.1em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--sh-sm);
}
.faq__footer-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.faq__footer-btn svg { width: 16px; height: 16px; }
.faq__footer-btn--tel  { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.faq__footer-btn--line { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }

@media (max-width: 600px) {
  .faq-item__q { padding: 14px 16px; font-size: 14px; gap: 12px; }
  .faq-item__a { padding: 16px 16px 20px; gap: 12px; }
  .faq-item__badge { width: 28px; height: 28px; font-size: 14px; }
  .faq-item__chev { width: 24px; height: 24px; }
  .faq__footer { padding: 20px 16px; }
}


/* ============================================================
   WHITE-BG FINE ADJUSTMENTS
============================================================ */
/* On white bg, heading span needs a transparent-ish border to blend with divider line */
.heading::before {
  background: linear-gradient(90deg, transparent 5%, var(--gold-500) 30%, var(--gold-500) 70%, transparent 95%);
  opacity: .7;
}

/* Callout on white: give it more presence */
.callout {
  background: linear-gradient(135deg, #fff 0%, var(--paper) 100%);
  box-shadow: 0 10px 28px rgba(201, 169, 97, 0.12);
}

/* Value-know on white bg: stronger border */
.value-know {
  border-color: var(--gold-400);
}

/* Trust stats separator needs to be slightly darker on white bg */
.trust__stats::before,
.trust__stats::after {
  background: linear-gradient(180deg, transparent, var(--gold-500), transparent);
  opacity: .6;
}

/* Flow and reasons on white bg: subtle shadow */
.flow { box-shadow: 0 2px 8px rgba(20, 33, 61, 0.04); }
.reasons { box-shadow: 0 2px 10px rgba(20, 33, 61, 0.05); }




/* Apply Mincho only to specific premium elements */
body,html,.hero__title,
.hero__title-jp,
.results__title,
.reasons__lead,
.heading span,
.flow-tabs__title,
.faq-item__q,
.brand-grid .brand-cell,
.callout__emph,
.phone-cta__title,
.phone-cta__title-emph,
.phone-cta__staff-bubble strong {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'YuGothic', -apple-system, BlinkMacSystemFont, sans-serif;;
}




/* ============================================================
   KAITORI CTA — v3 final, pixel-perfect with reference image
============================================================ */
.kaitori-cta {
  --kc-cream: #faf2dc;
  --kc-cream-light: #fdf8e6;
  --kc-gold: #c9a961;
  --kc-gold-dark: #a68535;
  --kc-gold-deep: #8a6d2a;
  --kc-gold-light: #e8c878;
  --kc-rose: #b91d3a;
  --kc-rose-dark: #8b1029;
  --kc-rose-deep: #5a0a1c;
  --kc-green: #2d6a4a;
  --kc-green-dark: #1c4d33;
  --kc-navy: #1a2847;
  --kc-shu: #c8453c;

  position: relative;
  margin: 100px 0 32px;
  padding: 14px 28px 22px;
  background-color: #fdfaf0;
  background-image: url("../img/cta-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: padding-box;
  border-radius: 16px;
  border: 2px solid var(--kc-gold);
  box-shadow:
    0 2px 8px rgba(20, 33, 61, 0.04),
    0 18px 40px -16px rgba(166, 133, 53, 0.25);
  /* overflow: hidden removed so staff head can bleed out the top */
}
.kaitori-cta::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 200, 120, 0.7);
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
}
.kaitori-cta > * { position: relative; z-index: 2; }

/* ─── Hero ─────────────────── */
.kaitori-cta__hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0;
  margin-bottom: 14px;
  min-height: 15px;
  position: relative;
}

.kaitori-cta__copy {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  position: relative;
  z-index: 4;
}

.kaitori-cta__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--kc-navy);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.kaitori-cta__ribbon-orn {
  color: var(--kc-gold);
  width: 70px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
}
.kaitori-cta__ribbon-orn svg { width: 100%; height: 100%; display: block; }

.kaitori-cta__headline {
  font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--kc-navy);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(253, 250, 240, 0.6);
}
.kaitori-cta__emph {
  position: relative;
  color: var(--kc-gold-dark);
  display: inline-block;
  padding: 0 6px;
}
.kaitori-cta__emph::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 7px;
  background: linear-gradient(180deg, var(--kc-gold) 0%, var(--kc-gold-dark) 100%);
  border-radius: 3px;
}

.kaitori-cta__copy::after { display: none; }

/* Staff — positioned absolute on the right, head bleeds out top */
.kaitori-cta__staff {
  position: absolute;
  right: -8px;
  top: -90px;
  width: 340px;
  height: 540px;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}
.kaitori-cta__staff-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(#000 88%, transparent 100%);
  mask-image: linear-gradient(#000 88%, transparent 100%);
}
.kaitori-cta__staff-badge {
  position: absolute;
  top: 38%;
  right: -10px;
  width: 135px;
  height: 135px;
  z-index: 5;
  filter: drop-shadow(0 8px 18px rgba(20, 33, 61, 0.4));
}

/* ─── Steps — compact arrows with chevron between ─────────────────── */
.kaitori-cta__steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 32px 0 22px;
  position: relative;
  z-index: 5;
}
.kaitori-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 32px 18px 22px;
  min-height: 70px;
}
.kaitori-step::before {
  /* arrow-shaped background (clipped) */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--kc-cream-light);
  border: 1px solid var(--kc-gold);
  border-right: none;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  z-index: -1;
}
.kaitori-step:not(:first-child) {
  margin-left: -16px;
  padding-left: 38px;
}
.kaitori-step:not(:first-child)::before {
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 16px 50%);
}
.kaitori-step:last-child::before {
  border-right: 1px solid var(--kc-gold);
}
.kaitori-step__tab {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--kc-gold-light) 0%, var(--kc-gold) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 20px;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(166, 133, 53, 0.4);
  white-space: nowrap;
  z-index: 2;
}
.kaitori-step__tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: var(--kc-gold);
  border-bottom: 0;
}
.kaitori-step__ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--kc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kc-gold-dark);
  flex-shrink: 0;
}
.kaitori-step__ico svg { width: 22px; height: 22px; }
.kaitori-step__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--kc-navy);
  letter-spacing: 0.02em;
  line-height: 1.35;
  white-space: normal;
}

/* ─── Phone CTA panel ─────────────────── */
.kaitori-cta__tel {
  /* CRITICAL: tight grid layout matching reference */
  display: grid;
  grid-template-columns: 96px auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 16px 20px 16px;
  margin-bottom: 12px;
  background:
    radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(135deg, var(--kc-rose) 0%, var(--kc-rose-dark) 60%, var(--kc-rose-deep) 100%);
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 22px rgba(139, 16, 41, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(201, 169, 97, 0.4);
  transition: transform .25s, box-shadow .25s;
}
.kaitori-cta__tel:hover { transform: translateY(-2px); }

.kaitori-cta__tel-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 240, 200, 0.18), transparent);
  transform: skewX(-20deg);
  animation: tel-shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tel-shine {
  0%, 80% { left: -50%; }
  100% { left: 130%; }
}

/* phone icon: smaller, fixed size, NOT overlapping */
.kaitori-cta__tel-ico {
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kc-rose-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.kaitori-cta__tel-ico::before,
.kaitori-cta__tel-ico::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  inset: -6px;
  pointer-events: none;
  opacity: 0;
}
.kaitori-cta__tel-ico.is-pulsing::before,
.kaitori-cta__tel-ico.is-pulsing::after {
  animation: tel-ring 2s ease-out infinite;
  opacity: 1;
}
.kaitori-cta__tel-ico.is-pulsing::after { animation-delay: 1s; inset: -12px; }
@keyframes tel-ring {
  0%   { opacity: 0.7; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(1.3); }
}
.kaitori-cta__tel-ico svg { width: 50px; height: 50px; }

/* Text body — fixed width auto, no wrapping */
.kaitori-cta__tel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.kaitori-cta__tel-small {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.kaitori-cta__tel-main {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 1px 0;
  white-space: nowrap;
}
.kaitori-cta__tel-main strong {
  font-weight: 700;
  background: linear-gradient(180deg, #fff5d4 0%, var(--kc-gold-light) 50%, #d4a655 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kaitori-cta__tel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 2px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}
.kaitori-cta__tel-lamp {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6ee69a, #22c55e 60%, #16a34a);
  box-shadow:
    0 0 8px rgba(34, 197, 94, 0.9),
    0 0 0 0 rgba(34, 197, 94, 0.6);
  position: relative;
  flex-shrink: 0;
  animation: tel-lamp-pulse 1.6s ease-out infinite;
}
@keyframes tel-lamp-pulse {
  0%   { box-shadow: 0 0 8px rgba(34, 197, 94, 0.9), 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 8px rgba(34, 197, 94, 0.9), 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.9), 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .kaitori-cta__tel-lamp { animation: none; }
}

.kaitori-cta__tel-hours {
  background: rgba(0, 0, 0, 0.28);
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  margin-top: 4px;
  white-space: nowrap;
}

/* Gold pill button — auto width, end of row */
.kaitori-cta__tel-btn {
  justify-self: end;
  background:
    /* main gold gradient */
    linear-gradient(180deg,
      #ffeb9b 0%,
      #ffd966 22%,
      #f5c842 50%,
      #d49d28 80%,
      #a87519 100%);
  border: 2px solid var(--kc-rose-deep);
  border-radius: 100px;
  padding: 12px 56px 12px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.32),
    inset 0 2px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 0 rgba(120, 70, 0, 0.4),
    inset 0 -6px 12px rgba(140, 90, 10, 0.35);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  min-height: 76px;
  z-index: 2;
  overflow: hidden;
}
/* Top highlight stripe — the bright reflection on luxury gold buttons */
.kaitori-cta__tel-btn::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 14px;
  right: 14px;
  height: 30%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 250, 220, 0.45) 50%,
    rgba(255, 245, 200, 0) 100%);
  border-radius: 100px;
  pointer-events: none;
  z-index: 1;
}
/* Bottom inner shadow for depth */
.kaitori-cta__tel-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(120, 70, 0, 0.15) 100%);
  border-radius: 0 0 100px 100px;
  pointer-events: none;
  z-index: 1;
}
.kaitori-cta__tel-btn > * { position: relative; z-index: 2; }
.kaitori-cta__tel:hover .kaitori-cta__tel-btn {
  transform: scale(1.02);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.38),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(120, 70, 0, 0.4),
    inset 0 -6px 12px rgba(140, 90, 10, 0.35);
}
.kaitori-cta__tel-btn-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--kc-rose-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.kaitori-cta__tel-btn-top svg { width: 14px; height: 14px; }
.kaitori-cta__tel-num {
  font-size: 34px;
  font-weight: 700;
  color: var(--kc-rose-dark);
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.kaitori-cta__tel-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(180deg, var(--kc-rose) 0%, var(--kc-rose-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: transform .2s;
  z-index: 3;
}
.kaitori-cta__tel:hover .kaitori-cta__tel-arrow {
  transform: translateY(-50%) translateX(2px);
}
.kaitori-cta__tel-arrow svg { width: 14px; height: 14px; }

/* ─── Store CTA row ─────────────────── */
.kaitori-cta__store {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf0 100%);
  border-radius: 14px;
  border: 2px solid var(--kc-gold);
  text-decoration: none;
  margin-bottom: 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.kaitori-cta__store:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(45, 106, 74, 0.15);
  border-color: var(--kc-green);
}
.kaitori-cta__store-ico {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fff 0%, #f0f7f3 100%);
  border-radius: 50%;
  border: 2px solid var(--kc-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kc-green);
  flex-shrink: 0;
}
.kaitori-cta__store-ico svg { width: 32px; height: 32px; }

.kaitori-cta__store-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.kaitori-cta__store-small {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.kaitori-cta__store-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--kc-navy);
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}
.kaitori-cta__store-main strong {
  color: var(--kc-green);
  font-weight: 800;
}

.kaitori-cta__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(180deg, var(--kc-green) 0%, var(--kc-green-dark) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow:
    0 4px 10px rgba(28, 77, 51, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  transition: filter .2s;
}
.kaitori-cta__store:hover .kaitori-cta__store-btn { filter: brightness(1.08); }
.kaitori-cta__store-btn svg { width: 16px; height: 16px; }

/* ─── 3 trust badges (assurance) ─────────────────── */
.kaitori-cta__assurance {
  list-style: none;
  margin: 0;
  padding: 22px 0 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--kc-gold);
}
.kaitori-cta__assurance li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 12px;
  position: relative;
}
.kaitori-cta__assurance li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--kc-gold), transparent);
  opacity: .4;
}
.kaitori-cta__assurance-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--kc-gold);
  background: linear-gradient(135deg, #fff 0%, var(--kc-cream-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kc-gold-dark);
  flex-shrink: 0;
}
.kaitori-cta__assurance-ico svg { width: 28px; height: 28px; }
.kaitori-cta__assurance-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 2px;
}
.kaitori-cta__assurance-text small {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.kaitori-cta__assurance-text strong {
  font-size: 19px;
  color: var(--kc-navy);
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .kaitori-cta__tel-shine,
  .kaitori-cta__tel-ico::before,
  .kaitori-cta__tel-ico::after { animation: none; }
}

.main > .kaitori-cta + .kaitori-cta { margin-top: 56px; }
.faq__footer-cta { margin-top: 24px; }
.faq__footer-cta .kaitori-cta { margin: 0; }

/* ─── Responsive ─────────────────── */
@media (max-width: 1100px) {
  .kaitori-cta { margin-top: 90px; }
  .kaitori-cta__staff { width: 300px; height: 480px; right: -8px; top: -80px; bottom: auto; }
  .kaitori-cta__staff-badge { width: 120px; height: 120px; right: -8px; top: 38%; left: auto; }
  .kaitori-cta__headline { font-size: 46px; }
  .kaitori-cta__tel { grid-template-columns: 84px auto 1fr; gap: 14px; padding: 18px; }
  .kaitori-cta__tel-ico { width: 84px; height: 84px; }
  .kaitori-cta__tel-ico svg { width: 42px; height: 42px; }
  .kaitori-cta__tel-main { font-size: 26px; }
  .kaitori-cta__tel-num { font-size: 22px; }
  .kaitori-cta__tel-btn { padding: 10px 42px 10px 20px; min-height: 64px; }
  .kaitori-cta__tel-btn-top { font-size: 11px; }
  .kaitori-cta__store-main { font-size: 24px; }
  .kaitori-cta__store-btn { font-size: 17px; padding: 14px 26px; }
}
@media (max-width: 960px) {
  .kaitori-cta { padding: 24px 20px 18px; margin-top: 70px; }
  .kaitori-cta__hero {
    min-height: 240px;
    margin-bottom: 24px;
  }
  .kaitori-cta__headline {
    font-size: 32px;
    white-space: normal;
  }
  .kaitori-cta__staff { width: 200px; height: 360px; right: -8px; top: -60px; bottom: auto; }
  .kaitori-cta__staff-badge { width: 88px; height: 88px; top: 38%; right: -6px; left: auto; }
  .kaitori-cta__ribbon { font-size: 12px; gap: 8px; }
  .kaitori-cta__ribbon-orn { width: 50px; }

  .kaitori-cta__steps { margin: 32px 0 18px; }
  .kaitori-step { padding: 14px 26px 14px 18px; min-height: 60px; gap: 10px; }
  .kaitori-step:not(:first-child) { padding-left: 30px; }
  .kaitori-step__ico { width: 36px; height: 36px; }
  .kaitori-step__ico svg { width: 18px; height: 18px; }
  .kaitori-step__label { font-size: 13px; }
  .kaitori-step__tab { font-size: 11px; padding: 4px 14px; top: -14px; }

  .kaitori-cta__tel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    padding: 22px 18px;
  }
  .kaitori-cta__tel-ico { margin: 0 auto; width: 72px; height: 72px; }
  .kaitori-cta__tel-ico svg { width: 36px; height: 36px; }
  .kaitori-cta__tel-body { align-items: center; }
  .kaitori-cta__tel-hours { align-self: center; }
  .kaitori-cta__tel-status { align-self: center; }
  .kaitori-cta__tel-main { font-size: 24px; }
  .kaitori-cta__tel-btn { width: 100%; padding: 12px 42px 12px 20px; justify-self: stretch; }

  .kaitori-cta__store { grid-template-columns: 1fr; text-align: center; gap: 12px; padding: 18px; }
  .kaitori-cta__store-ico { margin: 0 auto; width: 60px; height: 60px; }
  .kaitori-cta__store-ico svg { width: 28px; height: 28px; }
  .kaitori-cta__store-main { font-size: 22px; white-space: normal; }
  .kaitori-cta__store-btn { width: 100%; justify-content: center; font-size: 16px; padding: 12px 22px; }

  .kaitori-cta__assurance { grid-template-columns: repeat(3, 1fr); gap: 0; padding-top: 16px; }
}
@media (max-width: 600px) {
  .kaitori-cta { padding: 20px 12px 16px; border-radius: 12px; margin: 18px 0 24px; }

  /* Hero: text on top, staff below centered */
  .kaitori-cta__hero {
    min-height: 0;
    margin-bottom: 16px;
    padding-bottom: 0px;
  }
  .kaitori-cta__staff {
    width: 200px;
    height: 240px;
    top: auto;
    position: absolute;
    right: -25px;
    bottom: 0;
  }
  .kaitori-cta__staff-img {
    object-position: top center;
    position: absolute;
    right: 0;
    bottom: -50px;
  }
  /* Badge on left side of staff so it doesn't cover the face */
  .kaitori-cta__staff-badge {
    width: 88px;
    height: 88px;
    bottom: -22px;
    left: auto;
    right: 15px;
    position: absolute;
    top: auto;
}
  .kaitori-cta__copy::after { width: 120px; }
  .kaitori-cta__ribbon { font-size: 11px; gap: 8px; }
  .kaitori-cta__ribbon-orn { width: 28px; }
  .kaitori-cta__headline {
    font-size: 28px;
    line-height: 1.5;
    white-space: normal;
    padding-left: 10px;
  }
  .kaitori-cta__emph::after { height: 4px; }

  /* Steps */
  .kaitori-cta__steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0 14px;
    display: none;
  }
  .kaitori-step {
    padding: 14px 16px !important;
    margin-left: 0 !important;
    gap: 14px;
    justify-content: flex-start;
    min-height: 56px;
  }
  .kaitori-step::before {
    clip-path: none !important;
    border-right: 1px solid var(--kc-gold) !important;
    border-radius: 8px;
  }
  .kaitori-step:last-child::before { border-right: 1px solid var(--kc-gold); }
  .kaitori-step__tab { left: 16px; transform: none; top: -12px; }
  .kaitori-step__tab::after { left: 30px; transform: none; }
  .kaitori-step__label { font-size: 14px; white-space: normal; line-height: 1.35; }

  /* Phone CTA — stack vertically with proper spacing */
  .kaitori-cta__tel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    padding: 22px 14px;
  }
  .kaitori-cta__tel-ico { margin: 0 auto; width: 64px; height: 64px; }
  .kaitori-cta__tel-ico svg { width: 32px; height: 32px; }
  .kaitori-cta__tel-body { align-items: center; }
  .kaitori-cta__tel-status { align-self: center; }
  .kaitori-cta__tel-hours { align-self: center; }
  .kaitori-cta__tel-main { font-size: 22px; }

  /* Gold pill button: full width, fits inside red panel */
  .kaitori-cta__tel-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 50px 10px 18px;
    min-height: 64px;
    justify-self: stretch;
  }
  .kaitori-cta__tel-num { font-size: 24px; }
  .kaitori-cta__tel-btn-top { font-size: 11px; }
  .kaitori-cta__tel-arrow { width: 28px; height: 28px; right: 10px; }
  .kaitori-cta__tel-arrow svg { width: 12px; height: 12px; }

  /* Store CTA */
  .kaitori-cta__store {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    padding: 18px 14px;
  }
  .kaitori-cta__store-ico { margin: 0 auto; width: 60px; height: 60px; }
  .kaitori-cta__store-ico svg { width: 28px; height: 28px; }
  .kaitori-cta__store-main { font-size: 20px; white-space: normal; }
  .kaitori-cta__store-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 18px;
    white-space: nowrap;
  }
  .kaitori-cta__store-btn svg { flex-shrink: 0; }

  /* 3 trust badges — STACK vertically on mobile to avoid cramped wrap */
  .kaitori-cta__assurance {
    grid-template-columns: 1fr;
    padding-top: 16px;
    gap: 12px;
  }
  .kaitori-cta__assurance li {
    padding: 0 8px;
    gap: 12px;
    justify-content: flex-start;
  }
  .kaitori-cta__assurance li:not(:last-child)::after {
    /* Convert vertical separator to horizontal underline */
    right: auto;
    left: 50%;
    top: auto;
    bottom: -6px;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--kc-gold), transparent);
  }
  .kaitori-cta__assurance-ico { width: 44px; height: 44px; }
  .kaitori-cta__assurance-ico svg { width: 22px; height: 22px; }
  .kaitori-cta__assurance-text small { font-size: 12px; }
  .kaitori-cta__assurance-text strong { font-size: 16px; }
}

/* ============================================================
   ITEMS SECTION — Section wrapper (cards have silk background)
============================================================ */
.items-section {
  position: relative;
  margin: 56px 0 56px;
}

/* ─── Responsive ─────────────────── */
@media (max-width: 960px) {
  .items-section { margin: 44px 0 44px; }
}
@media (max-width: 600px) {
  .items-section { margin: 32px 0 32px; }
}

/* ============================================================
   SIDEBAR ITEMS LIST — image thumbnails
============================================================ */
.side-list--items {
  padding: 0;
  margin-bottom: 0;
}
.side-list--items li {
  padding: 0;
  display: block;
  border-bottom: 1px dotted var(--border);
  margin: 0;
}
.side-list--items li:last-child { border-bottom: none; }

/* ============================================================
   HEADER DROPDOWN — image-based icons for buyback items
============================================================ */
.gnav-dd-ico--img {
  background: linear-gradient(135deg, #fff, #fbf6ec) !important;
  padding: 3px;
  overflow: hidden;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-300);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.gnav-dd-ico--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gnav__dropdown-list--icons li:hover .gnav-dd-ico--img {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, #fff, #fdf3d9) !important;
}

/* ============================================================
   HEADER DROPDOWN ITEMS (買取品目) — wide horizontal grid 3x5
============================================================ */
.gnav__dropdown--xwide { min-width: 1100px; }

.gnav__dropdown-inner--items {
  background: #fff;
  border: 1px solid var(--gold-300);
  border-top: 3px solid var(--gold-500);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 40px -8px rgba(20, 33, 61, 0.2);
  padding: 28px;
}

.gnav-items-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
}
.gnav-items-grid > li { margin: 0; padding: 0; }

.gnav-item-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 16px 0 0;
  background: linear-gradient(135deg, #fff 0%, #fbf6ec 100%);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  min-height: 80px;
  overflow: hidden;
}
.gnav-item-card:hover {
  border-color: var(--gold-500);
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(166, 133, 53, 0.15);
}
.gnav-item-card__img {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.gnav-item-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.4);
  transition: transform .3s;
}
.gnav-item-card:hover .gnav-item-card__img img {
  transform: scale(1.5);
}
.gnav-item-card__label {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.gnav-item-card:hover .gnav-item-card__label { color: var(--gold-700); }
.gnav-item-card__arrow {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gold-500);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.gnav-item-card:hover .gnav-item-card__arrow {
  color: var(--gold-700);
  transform: translateX(2px);
}

/* ============================================================
   SIDEBAR ITEMS — simple flex: [img] | [label] [arrow]
============================================================ */
.side-list--items a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--navy-800);
  transition: background .2s;
}
.side-list--items a:hover {
  background: linear-gradient(90deg, transparent, rgba(232, 200, 120, 0.08));
}
.side-list__thumb {
  width: 56px;
  height: 56px;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
}
.side-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* vertical gold line right after thumbnail */
.side-list__thumb::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--gold-500);
}
.side-list__label {
  flex: 1;
  min-width: 0;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  padding-left: 6px;
}
.side-list--items a::after {
  content: "›";
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gold-500);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.side-list--items a:hover .side-list__label { color: var(--gold-700); }
.side-list--items a:hover::after {
  color: var(--gold-700);
  transform: translateX(2px);
}

/* Header dropdown items grid responsive */
@media (max-width: 1200px) {
  .gnav__dropdown--xwide { min-width: 92vw; }
  .gnav-items-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* On mobile the desktop dropdown is hidden anyway, the menu uses overlay */
  .gnav-items-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE FONT-SIZE FLOOR — 14px minimum across the board
   - Targets text that historically was 10-13px on mobile
   - Keeps headings/numbers larger
============================================================ */
@media (max-width: 600px) {
  /* Item card labels */
  .item-card span { font-size: 14px; }
  /* Result/best-buy labels */
  .result-card__brand,
  .result-card__model,
  .bb-card__brand,
  .bb-card__model { font-size: 14px; }
  /* Reasons body */
  .reason__body p { font-size: 14px; line-height: 1.7; }
  /* Footer */
  .footer__nav a,
  .footer__copy,
  .footer small { font-size: 14px; }
  /* Sticky CTA */
  .sticky-cta__btn { font-size: 14px; }
  .sticky-cta__btn small { font-size: 12px; }
  /* General tightenings — make sure no text dips below 14px */
  body { font-size: 15px; }
  p { font-size: 15px; line-height: 1.75; }
  small { font-size: 13px; }
  /* Voice (testimonials) */
  .voice-card__text,
  .voice-card__name { font-size: 14px; }
  /* FAQ */
  .faq-item__q,
  .faq-item__a { font-size: 14px; }
}

/* ============================================================
   MOBILE MENU — Items list with images (m-list--items)
   1-column list matching sidebar layout
============================================================ */
.m-list--items {
  display: block;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: var(--r-sm);
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-list--items li {
  background: #fff;
  padding: 0;
  margin: 0;
  display: block;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.m-list--items li:last-child {
  border-bottom: none;
}
.m-list--items li:hover {
  background: transparent;
  padding-left: 0;
}
.m-list--items a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--navy-800);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--serif);
  transition: background .2s, padding-left .2s;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.m-list--items a:hover,
.m-list--items a:active {
  background: rgba(201, 169, 97, 0.08);
  padding-left: 22px;
  color: var(--gold-700);
}
.m-list__thumb {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.m-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* vertical gold line right after thumbnail (matches sidebar) */
.m-list__thumb::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--gold-500);
}
.m-list__label {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.04em;
  padding-left: 6px;
}
.m-list--items a::after {
  content: "›";
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gold-500);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.m-list--items a:hover::after {
  color: var(--gold-700);
  transform: translateX(2px);
}

/* ============================================================
   FLOW V2 — 3-column step cards with photo
============================================================ */
.flow-v2 {
  background: #fbf6ec;
  border-radius: 14px;
  padding: 32px 36px 28px;
  margin-bottom: 32px;
  border: 1px solid rgba(201, 169, 97, 0.25);
}

/* Header: navy circle icon + title + subtitle */
.flow-v2__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.flow-v2__ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(20, 33, 61, 0.2);
}
.flow-v2__ico svg { width: 26px; height: 26px; }
.flow-v2__title-wrap { display: flex; flex-direction: column; gap: 4px; }
.flow-v2__title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1;
  border-top: 0;
}
.flow-v2__sub {
  font-family: var(--serif);
  font-size: 14px;
  color: #333;
  letter-spacing: 0.04em;
  margin: 0;
}
.flow-v2__divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 169, 97, 0.5) 10%,
    rgba(201, 169, 97, 0.5) 90%,
    transparent);
  margin-bottom: 24px;
}

/* Steps row — 3 columns with arrows between */
.flow-v2__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.flow-v2__step {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(20, 33, 61, 0.06);
  display: flex;
  flex-direction: column;
}
.flow-v2__step-num {
  font-family: var(--latin);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 0.18em;
  text-align: center;
  padding: 10px 0 8px;
  background: linear-gradient(180deg, #fffaee, #fff);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  margin: 0;
}
.flow-v2__step-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f0e3;
}
.flow-v2__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flow-v2__step-label {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 14px 8px;
  margin: 0;
  background: #fff;
}

/* Arrow between steps */
.flow-v2__arrow {
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-v2__arrow svg { width: 28px; height: 28px; }

/* Bottom note bar */
.flow-v2__note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(232, 200, 120, 0.18), rgba(232, 200, 120, 0.08));
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
}
.flow-v2__note-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.25);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-v2__note-ico svg { width: 18px; height: 18px; }
.flow-v2__note p {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 960px) {
  .flow-v2 { padding: 24px 20px 20px; }
  .flow-v2__title { font-size: 26px; }
  .flow-v2__steps { gap: 10px; }
  .flow-v2__arrow svg { width: 22px; height: 22px; }
  .flow-v2__step-label { font-size: 14px; }
}

/* Mobile — stack vertically */
@media (max-width: 600px) {
  .flow-v2 { padding: 20px 14px 16px; border-radius: 10px; }
  .flow-v2__head { gap: 12px; margin-bottom: 14px; }
  .flow-v2__ico { width: 44px; height: 44px; }
  .flow-v2__ico svg { width: 22px; height: 22px; }
  .flow-v2__title { font-size: 22px; }
  .flow-v2__sub { font-size: 12px; }
  .flow-v2__divider { margin-bottom: 4px; }
  .flow-v2__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow-v2__arrow {
    transform: rotate(90deg);
  }
  .flow-v2__arrow svg { width: 20px; height: 20px; }
  .flow-v2__step-num { font-size: 14px; padding: 8px 0; }
  .flow-v2__step-label { font-size: 15px; padding: 12px 8px; }
  .flow-v2__note { padding: 12px 14px; gap: 10px; }
  .flow-v2__note-ico { width: 28px; height: 28px; }
  .flow-v2__note-ico svg { width: 16px; height: 16px; }
  .flow-v2__note p { font-size: 14px; }
}

/* ============================================================
   TEMP: Hide results sections
============================================================ */
.results,
.best-buy {
  display: none !important;
}

/* ============================================================
   SHOP PAGE STYLES
============================================================ */

/* Breadcrumbs */
.shop-hero__crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  margin-bottom: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gold-700);
}
.shop-hero__crumbs a {
  color: var(--navy-800);
  text-decoration: none;
  transition: color .2s;
}
.shop-hero__crumbs a:hover { color: var(--gold-700); }
.shop-hero__crumbs .is-current {
  color: #999;
  font-weight: 500;
}

/* Shop hero title */
.shop-hero { margin-bottom: 36px; }
.shop-hero__pretitle {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  padding: 4px 14px;
  background: linear-gradient(135deg, #fff, #fbf6ec);
  border: 1px solid var(--gold-500);
  border-radius: 4px;
}
.shop-hero__title {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 33px;
  font-weight: 700;
  color: #8a6d2c;
  letter-spacing: 0;
  margin: 0 0 12px;
  line-height: 1.3;
  display: block;
}
.shop-hero__title .shop-hero__pretitle {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  width: fit-content;
}
.shop-hero__lead {
  font-family: var(--serif);
  font-size: 16px;
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Gallery: main image + thumbs row */
.shop-gallery {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  align-items: stretch;
  position: relative;
}
.shop-gallery__main {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f0e3;
  border: 1px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 6px 18px rgba(20, 33, 61, 0.1);
  position: relative;
}
.shop-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .35s ease;
}
/* Auto-progress bar at bottom of main image */
.shop-gallery__progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.shop-gallery__progress-bar {
  height: 100%;
  background: var(--gold-500);
  width: 0;
  transition: width .1s linear;
  border-radius: 2px;
}
.shop-gallery.is-paused .shop-gallery__progress { opacity: 0.4; }

/* Vertical thumb column with scroll */
.shop-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 4px;
  /* custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--gold-500) rgba(201, 169, 97, 0.15);
}
.shop-gallery__thumbs::-webkit-scrollbar { width: 6px; }
.shop-gallery__thumbs::-webkit-scrollbar-track {
  background: rgba(201, 169, 97, 0.15);
  border-radius: 3px;
}
.shop-gallery__thumbs::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 3px;
}
.shop-gallery__thumbs::-webkit-scrollbar-thumb:hover { background: var(--gold-700); }

.shop-gallery__thumb {
  background: none;
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  width: 100%;
  flex-shrink: 0;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.shop-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s, opacity .2s;
  opacity: 0.7;
}
.shop-gallery__thumb:hover {
  border-color: var(--gold-500);
  transform: translateX(-2px);
  box-shadow: 0 4px 12px rgba(166, 133, 53, 0.2);
}
.shop-gallery__thumb:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.shop-gallery__thumb.is-active {
  border-color: var(--gold-700);
  box-shadow: 0 0 0 2px rgba(166, 133, 53, 0.25);
}
.shop-gallery__thumb.is-active img { opacity: 1; }

/* ============================================================
   SHOP INFO
============================================================ */
.shop-info { margin-bottom: 48px; }
.shop-info__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: start;
}
.shop-info__list {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 10px;
  overflow: hidden;
}
.shop-info__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.shop-info__row:last-child { border-bottom: none; }
.shop-info__row dt {
  background: linear-gradient(180deg, #fffaee, #fdf3d9);
  padding: 14px 16px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(201, 169, 97, 0.2);
}
.shop-info__row dd {
  margin: 0;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--navy-800);
  font-family: var(--serif);
  line-height: 1.7;
}
.shop-info__row dd small {
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
  color: #888;
}
.shop-info__row dd a {
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.shop-info__parking {
  background: linear-gradient(135deg, #fff, #fbf6ec);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 10px;
  padding: 18px 20px;
}
.shop-info__sub {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
}

.parking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.parking-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.parking-list__ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.parking-list__name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 2px;
}
.parking-list__meta {
  font-size: 13px;
  color: #333;
  margin: 0;
}

.shop-info__map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 4px 12px rgba(20, 33, 61, 0.06);
}

/* ============================================================
   ROUTE GUIDE — 4 step cards stacked vertically with images
============================================================ */
.route { margin-bottom: 48px; }
.route__lead {
  font-family: var(--serif);
  font-size: 15px;
  color: #333;
  text-align: center;
  line-height: 1.7;
}
.route__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.route__steps::before {
  /* vertical timeline */
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
    transparent,
    var(--gold-500) 10%,
    var(--gold-500) 90%,
    transparent);
  z-index: 0;
}
.route-step {
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  position: relative;
  z-index: 1;
  transition: transform .2s, box-shadow .2s;
}

.route-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(166, 133, 53, 0.3);
}
.route-step__img {
  width: 200px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f0e3;
  border: 1px solid rgba(201, 169, 97, 0.3);
}
.route-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.route-step__title {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0;
  margin: 0 0 6px;
}
.route-step__desc {
  font-family: var(--serif);
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   VOICE MARQUEE — auto-scrolling carousel
============================================================ */
.voice-carousel { margin-bottom: 48px; }
.voice-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -32px;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.voice-marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: voice-scroll 60s linear infinite;
}
.voice-marquee.is-paused .voice-marquee__track {
  animation-play-state: paused;
}
@keyframes voice-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.voice-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(20, 33, 61, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.voice-card__head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
}
.voice-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.voice-card__name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0;
}
.voice-card__meta {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.voice-card__rating {
  display: flex;
  gap: 1px;
  font-size: 14px;
  color: var(--gold-500);
}
.voice-card__text {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--navy-800);
  line-height: 1.75;
  margin: 0;
}
.voice-card__item {
  font-size: 14px;
  color: var(--gold-700);
  font-weight: 700;
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(201, 169, 97, 0.4);
}

/* ============================================================
   REQUIRED DOCS — illustrated ID cards
============================================================ */
.required-docs { margin-bottom: 48px; }

.required-docs__why {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  background: linear-gradient(135deg, #fff, #fbf6ec);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 28px;
  align-items: start;
}
.required-docs__why-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.required-docs__why-ico svg { width: 26px; height: 26px; }
.required-docs__why-body h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.required-docs__why-body p {
  font-family: var(--serif);
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}
.required-docs__why-body strong {
  color: var(--rose);
  font-weight: 700;
}

.required-docs__sub {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 20px;
  padding-bottom: 10px;
  position: relative;
}
.required-docs__sub::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold-500);
  margin: 10px auto 0;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.doc-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.doc-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
  box-shadow: 0 6px 18px rgba(166, 133, 53, 0.15);
}
.doc-card__illust {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdfaf0, #fbf6ec);
  padding: 12px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}
.doc-card__illust svg {
  width: 100%;
  height: auto;
  max-height: 110px;
  display: block;
}
.doc-card__name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin: 0;
}
.doc-card__name small {
  display: block;
  font-size: 13px;
  color: #888;
  font-weight: 500;
  margin-top: 4px;
}

.required-docs__note {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  background: linear-gradient(90deg, rgba(232, 200, 120, 0.18), rgba(232, 200, 120, 0.08));
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 8px;
  padding: 14px 18px;
  align-items: start;
}
.required-docs__note-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.required-docs__note-ico svg { width: 18px; height: 18px; }
.required-docs__note p {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--navy-800);
  line-height: 1.7;
  margin: 0;
}
.required-docs__note strong {
  color: var(--gold-700);
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .shop-hero__title { font-size: 24px; }
  .shop-info__grid { grid-template-columns: 1fr; }
  .route-step { grid-template-columns: 50px 160px 1fr; gap: 14px; padding: 14px 16px; }
  .route-step__num { width: 50px; height: 50px; font-size: 18px; }
  .route-step__img { width: 160px; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-card { width: 280px; }
}
@media (max-width: 600px) {
  .shop-hero__title { font-size: 20px;}
  .shop-hero__lead { font-size: 14px; }
  .shop-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .shop-gallery__thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 6px;
    padding-right: 0;
  }
  .shop-gallery__thumb {
    flex: 0 0 90px;
    aspect-ratio: 3 / 2;
  }
  .shop-info__row { grid-template-columns: 100px 1fr; }
  .shop-info__row dt { padding: 12px 10px; font-size: 14px; }
  .shop-info__row dd { padding: 12px 12px; font-size: 14px; }
  .route-step {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "num title"
      "img img"
      "desc desc";
    gap: 12px;
  }
  .route-step__num { grid-area: num; width: 40px; height: 40px; font-size: 15px; }
  .route-step__img { grid-area: img; width: 100%; }
  .route-step__title { grid-area: title; align-self: center; font-size: 15px; margin: 0 0 5px 0; }
  .route-step__desc { grid-column: 1 / -1; font-size: 12px; }
  .route__steps::before { left: 20px; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .doc-card { padding: 14px 10px; }
  .doc-card__name { font-size: 14px; }
  .voice-card { width: 260px; padding: 16px; }
  .required-docs__why { grid-template-columns: 1fr; padding: 16px; }
  .required-docs__why-ico { width: 44px; height: 44px; margin: 0 auto; }
}

/* ============================================================
   IMAGE FALLBACK — when img src missing/broken, show placeholder
============================================================ */
/* Pretty placeholder background for shop gallery & route */
.shop-gallery__main,
.shop-gallery__thumb,
.route-step__img {
  background:
    linear-gradient(135deg, #fbf6ec 0%, #f5e8c8 100%);
  position: relative;
}
.shop-gallery__main::before,
.shop-gallery__thumb::before,
.route-step__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(201, 169, 97, 0.08) 20px 21px);
  pointer-events: none;
  z-index: 0;
}
/* Camera icon when image fails or before loads */
.shop-gallery__main::after,
.shop-gallery__thumb::after,
.route-step__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: no-repeat center / 48px 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z'/><circle cx='12' cy='13' r='4'/></svg>");
  z-index: 0;
  opacity: 0.5;
}
.shop-gallery__thumb::after { background-size: 28px 28px; }
.route-step__img::after { background-size: 36px 36px; }

/* Image is on top */
.shop-gallery__main img,
.shop-gallery__thumb img,
.route-step__img img {
  position: relative;
  z-index: 1;
}
/* When image errors out, JS will add this class — hide broken icon */
.is-image-error {
  visibility: hidden;
}

/* ============================================================
   SHOP MAP LINK CARD (replaces iframe)
============================================================ */
.shop-info__map-link {
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #fff 0%, #fbf6ec 100%);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy-800);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.shop-info__map-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
  box-shadow: 0 6px 18px rgba(166, 133, 53, 0.18);
}
.shop-info__map-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shop-info__map-ico svg { width: 26px; height: 26px; }
.shop-info__map-text { display: flex; flex-direction: column; gap: 4px; line-height: 1.4; }
.shop-info__map-text strong {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0;
}
.shop-info__map-text small {
  font-family: var(--serif);
  font-size: 14px;
  color: #666;
}
.shop-info__map-arrow {
  color: var(--gold-500);
  display: flex;
  align-items: center;
}
.shop-info__map-arrow svg { width: 20px; height: 20px; }

/* ============================================================
   data-reveal FALLBACK — show content even if JS errors out
   (e.g. cross-origin iframe blocks main.js)
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* If JS works, normal reveal animations apply */
}
/* Force-show fallback after a short delay regardless of JS state */
[data-reveal] {
  opacity: 1 !important;
  visibility: visible !important;
}
[data-reveal-stagger] > * {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============================================================
   FINAL OVERRIDES — Mobile/tablet utility hide
   Ensures shop button NEVER shows on smaller screens
============================================================ */
@media (max-width: 1100px) {
  .utility__shop-btn,
  .utility__tel { display: none !important; }
  .hamburger { display: block !important; }
  .top-bar__row--nav { display: none !important; }
}

/* ============================================================
   ROUTE collapse — Read More pattern
============================================================ */
.route__collapse {
  position: relative;
  overflow: hidden;
  transition: max-height .5s ease;
}
.route__collapse[data-collapsed="true"] {
  max-height: 420px;  /* shows STEP 1 fully + STEP 2 title with fade */
}
.route__collapse[data-collapsed="false"] {
  max-height: 9999px;
}
.route__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 15%,
    rgba(255,255,255,0.4) 35%,
    rgba(255,255,255,0.7) 60%,
    rgba(255,255,255,0.92) 80%,
    #fff 100%);
  pointer-events: none;
  transition: opacity .35s ease;
}
.route__collapse[data-collapsed="false"] .route__fade {
  opacity: 0;
}

.route__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -25px auto 24px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(166, 133, 53, 0.3);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.route__toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(166, 133, 53, 0.4);
}
.route__toggle:active { transform: translateY(0); }
.route__toggle-chev {
  width: 16px;
  height: 16px;
  transition: transform .3s ease;
}
.route__toggle[aria-expanded="true"] .route__toggle-chev {
  transform: rotate(180deg);
}
.route__toggle-text-less { display: none; }
.route__toggle[aria-expanded="true"] .route__toggle-text-more { display: none; }
.route__toggle[aria-expanded="true"] .route__toggle-text-less { display: inline; }

@media (max-width: 600px) {
  .route__collapse[data-collapsed="true"] {
    max-height: 320px;
  }
}

/* ============================================================
   FEATURED BRANDS — Sketch illustration cards (TOP)
============================================================ */
.featured-brands__lead {
  text-align: center;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 16px;
  color: #333;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
}

.featured-brands__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.featured-brands__grid > li {
  list-style: none;
  margin: 0;
  display: flex;
}
.featured-brands__grid > li > .featured-card {
  width: 100%;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-items: center;
  justify-items: center;
  padding: 28px 22px 24px;
  min-height: 175px;
  text-decoration: none;
  border-radius: 6px;
  background-color: #fbf6ec;
  background-image: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.4) 55%, transparent 75%),
  url("../img/silk-bg.png");
  background-size: 120% 120%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid var(--gold-500);
  box-shadow: 0 8px 22px rgba(20, 33, 61, 0.1),
  0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s, border-color .35s;
}

/* L-shaped corner ornaments — 4 corners with elegant gold lines */
.featured-card__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.featured-card__corners > span {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201, 169, 97, 0.7);
  transition: border-color .35s, width .35s, height .35s;
}
.featured-card__corners > span:nth-child(1) {
  top: 14px; left: 14px;
  border-right: 0; border-bottom: 0;
}
.featured-card__corners > span:nth-child(2) {
  top: 14px; right: 14px;
  border-left: 0; border-bottom: 0;
}
.featured-card__corners > span:nth-child(3) {
  bottom: 14px; left: 14px;
  border-right: 0; border-top: 0;
}
.featured-card__corners > span:nth-child(4) {
  bottom: 14px; right: 14px;
  border-left: 0; border-top: 0;
}

/* Product sketch — main visual */
.featured-card__media {
  position: absolute;
  z-index: 1;
  width: 300px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  align-self: end;
  opacity: 0.7;
  bottom: -110px;
  left: 85px;
  transform: rotateZ(18deg);
}
.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

/* Brand name — main accent, mincho */
.featured-card__name {
  display: flex;
  justify-content: flex-start;
  font-family: var(--mincho);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  align-self: center;
  margin: 0 0 6px;
  text-shadow: 0px 0px 7px #ffffff;
  text-align: left;
}

/* Kana — mincho subtitle in gold */
.featured-card__kana {
  display: block;
  font-family: var(--mincho);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-700);
  letter-spacing: 0.14em;
  text-align: left;
  position: relative;
  z-index: 2;
  margin: auto;
  padding-top: 5px;
}
.featured-card__kana::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 97, 0.2) 15%,
    rgba(201, 169, 97, 0.7) 50%,
    rgba(201, 169, 97, 0.2) 85%,
    transparent 100%
  );
}
.featured-card__box2 {
  margin: 0 auto 0 0;
}
/* Arrow — bottom indicator */
.featured-card__arrow {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  transition: transform .35s, color .35s;
}
.featured-card__arrow svg {
  width: 18px;
  height: 18px;
}

/* Hover effects */
.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-700);
  box-shadow:
    0 18px 40px rgba(166, 133, 53, 0.2),
    0 0 0 1px rgba(201, 169, 97, 0.3) inset;
}
.featured-card:hover .featured-card__corners > span {
  border-color: var(--gold-700);
  width: 30px;
  height: 30px;
}
.featured-card:hover .featured-card__media img {
  transform: scale(1.05);
}
.featured-card:hover .featured-card__arrow {
  transform: translateX(4px);
  color: var(--gold-700);
}

@media (max-width: 900px) {
  .featured-brands__grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-card {
    padding: 24px 20px 20px;
  }
  .featured-card__media { max-width: 200px; margin-bottom: 12px; }
  .featured-card__name { font-size: 22px; }
  .featured-card__corners > span { width: 20px; height: 20px; }
  .featured-card__corners > span:nth-child(1),
  .featured-card__corners > span:nth-child(2) { top: 10px; }
  .featured-card__corners > span:nth-child(3),
  .featured-card__corners > span:nth-child(4) { bottom: 10px; }
  .featured-card__corners > span:nth-child(1),
  .featured-card__corners > span:nth-child(3) { left: 10px; }
  .featured-card__corners > span:nth-child(2),
  .featured-card__corners > span:nth-child(4) { right: 10px; }
  .featured-card__media {
    bottom: -50px;
}
}
@media (max-width: 600px) {
  .featured-card__box2 {
    margin: 0 auto 0 15px;
  }
  .featured-card__kana::before {
    transform: translateX(-20%);
    width: 100%;
    height: 1px;
  }
  .featured-card__media {
    max-width: 200px;
    right: -150px;
    left: 0;
    margin: auto;
    bottom: -45px;
    opacity: 1;
  }
  .featured-card {
    min-height: 125px;
}
.featured-card__name {
  font-size: 18px;
}
.featured-card__kana {
  font-size: 12px;
}
}
/* ============================================================
   SIDE HERO — Premium dark luxury sidebar header
============================================================ */
.side-hero {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(15, 26, 48, 0.18);
}

/* Top: dark navy header with ornament */
.side-hero__head {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 97, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #1d2b4a 0%, #14223e 100%);
  padding: 22px 18px 18px;
  text-align: center;
  overflow: hidden;
}
/* Subtle texture / brushed effect */
.side-hero__head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0px, transparent 3px, rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px);
  pointer-events: none;
}
.side-hero__orn {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--gold-500);
  position: relative;
  z-index: 1;
}
.side-hero__orn svg { width: 60px; height: 16px; }
.side-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 0 4px;
  padding: 0 0 12px;
}
/* Gold gradient line under title */
.side-hero__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.side-hero__sub {
  position: relative;
  z-index: 1;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 12px;
  color: var(--gold-300);
  letter-spacing: 0.12em;
  margin: 0;
  font-weight: 500;
}

/* Body: cream background with method buttons */
.side-hero__body {
  background-color: #fbf6ec;
  background-image: url("../img/silk-bg.png");
  background-size: cover;
  background-position: center;
  padding: 16px;
  position: relative;
}
.side-hero__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  pointer-events: none;
}
.side-hero__body > * { position: relative; z-index: 1; }

/* Method buttons (店頭買取 / 出張買取) */
.side-method {
  display: grid;
  grid-template-columns: 52px 1fr 18px;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gold-500);
  border-radius: var(--r-sm);
  padding: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.side-method:hover {
  transform: translateX(2px);
  border-color: var(--gold-700);
  box-shadow: 0 4px 12px rgba(166, 133, 53, 0.15);
}
.side-method__ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1d2b4a 0%, #14223e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(15, 26, 48, 0.15);
}
.side-method__ico svg { width: 24px; height: 24px; }
.side-method__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.side-method__text strong {
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.side-method__text small {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 10px;
  color: #333;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.side-method__arrow {
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-method__arrow svg { width: 16px; height: 16px; }

/* "Find a store" button - dark navy with gold border */
.side-stores-btn {
  display: grid;
  grid-template-columns: 24px 1fr 18px;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #1d2b4a 0%, #14223e 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--r-sm);
  color: #fff;
  text-decoration: none;
  font-family: var(--mincho);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  transition: transform .25s, filter .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
/* Inner gold frame */
.side-stores-btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  pointer-events: none;
}
.side-stores-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 26, 48, 0.3);
  color: #fff;
}
.side-stores-btn__ico {
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.side-stores-btn__ico svg { width: 20px; height: 20px; }
.side-stores-btn__text {
  position: relative;
  z-index: 1;
}
.side-stores-btn__arrow {
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.side-stores-btn__arrow svg { width: 16px; height: 16px; }

/* ============================================================
   SIDE-TEL — Phone CTA block in sidebar
============================================================ */
.side-tel {
  background: #fff;
  border: 1px solid var(--gold-500);
  border-radius: var(--r-sm);
  padding: 14px 16px 16px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.side-tel__intro {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 12px;
  color: #333;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.side-tel__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.side-tel__free {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, var(--paper) 100%);
  border: 1px solid var(--gold-500);
  color: var(--gold-700);
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
  flex-shrink: 0;
}
.side-tel__num {
  font-family: var(--mincho);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
}
.side-tel__hours {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 11px;
  color: #333;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}
.side-tel__btn {
  display: grid;
  grid-template-columns: 20px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #1d2b4a 0%, #14223e 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--r-sm);
  color: #fff;
  text-decoration: none;
  font-family: var(--mincho);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  transition: filter .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.side-tel__btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  pointer-events: none;
}
.side-tel__btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 26, 48, 0.3);
  color: #fff;
}
.side-tel__btn-ico {
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.side-tel__btn-ico svg { width: 18px; height: 18px; }
.side-tel__btn-text {
  position: relative;
  z-index: 1;
}
.side-tel__btn-arrow {
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.side-tel__btn-arrow svg { width: 14px; height: 14px; }

/* ============================================================
   SIDEBAR FIXES — 2026-04-26
   - .side-stores-btn の改行位置修正(nowrap + サイズ調整)
   - .side-hero のドロップシャドウを薄めに変更
   - .side-tel__num を1行に収める
   - メール無料査定ブロックを電話CTAカードに統合した際のレイアウト調整
============================================================ */

/* 「お近くの店舗を確認する」を1行に固定 */
.side-stores-btn {
  padding: 14px 10px;
  letter-spacing: 0.02em;
  font-size: 13px;
}
.side-stores-btn__text {
  white-space: nowrap;
}

/* side-hero のドロップシャドウを薄めに */
.side-hero {
  box-shadow: 0 2px 8px rgba(15, 26, 48, 0.08);
}

/* フリーダイヤル番号を1行に固定 */
.side-tel__num {
  font-size: 24px;
  white-space: nowrap;
}

/* 電話CTAカード内に取り込んだメール無料査定ブロックの調整 */
.side-tel .side-quick__title {
  margin: 16px 0 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}
.side-tel .quick-btn {
  box-shadow: none;
  margin-bottom: 0;
}
.side-tel .quick-btn:hover {
  box-shadow: none;
}

/* ============================================================
   MOBILE MENU — ハンバーガーメニュー内にサイドバーを表示する際の調整
   モバイル時は通常 .sidebar が display:none になっているため強制表示。
   余白・文字サイズはモバイルに最適化して引き締める。
============================================================ */

/* 強制表示と余白の引き締め */
.m-overlay__inner .sidebar {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
}

/* オーバーレイの内側パディングを少しだけ詰める */
.m-overlay__inner {
  padding: 80px 24px 32px;
}

/* ── side-hero ヘッダー(紺背景) ── */
.m-overlay__inner .side-hero__head {
  padding: 16px 14px 14px;
}
.m-overlay__inner .side-hero__title {
  font-size: 21px;
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-top: 0px;
}
.m-overlay__inner .side-hero__sub {
  font-size: 11px;
}
.m-overlay__inner .side-hero__orn svg { width: 50px; height: 14px; }

/* ── side-hero 本体(出張買取・店頭買取ボタン) ── */
.m-overlay__inner .side-hero__body {
  padding: 12px;
}
.m-overlay__inner .side-method {
  grid-template-columns: 44px 1fr 14px;
  gap: 10px;
  padding: 10px;
  margin-bottom: 8px;
}
.m-overlay__inner .side-method__ico {
  width: 44px;
  height: 44px;
}
.m-overlay__inner .side-method__ico svg { width: 20px; height: 20px; }
.m-overlay__inner .side-method__text strong { font-size: 21px; line-height: 27px;}
.m-overlay__inner .side-method__text small { font-size: 13px; }

/* お近くの店舗を確認するボタン */
.m-overlay__inner .side-stores-btn {
  padding: 16px 10px;
  font-size: 16px;
}

/* ── side-tel(電話CTAカード) ── */
.m-overlay__inner .side-tel {
  padding: 12px 14px 14px;
  margin-top: 10px;
}
.m-overlay__inner .side-tel__intro { font-size: 11px; margin-bottom: 6px; }
.m-overlay__inner .side-tel__free {
  width: 45px;
  height: 45px;
  font-size: 11px;
}
.m-overlay__inner .side-tel__num { font-size: 37px; }
.m-overlay__inner .side-tel__hours {
  font-size: 10px;
  margin: 0 0 10px;
  padding-bottom: 10px;
}
.m-overlay__inner .side-tel__btn {
  padding: 16px 12px;
  font-size: 16px;
}
.m-overlay__inner .side-tel .side-quick__title {
  font-size: 10px;
  margin: 12px 0 8px;
  padding-top: 12px;
}
.m-overlay__inner .side-tel .quick-btn {
  padding: 10px 12px;
  font-size: 14px;
}

/* ── side-block(買取強化アイテム / ブランド) ── */
.m-overlay__inner .side-block {
  padding: 0;
}
.m-overlay__inner .side-block__title {
  font-size: 13px;
  padding: 10px 14px;
}
.m-overlay__inner .side-list--items a {
  padding: 8px 14px;
}
.m-overlay__inner .side-list__thumb {
  width: 55px;
  height: 55px;
}
.m-overlay__inner .side-list__label { font-size: 14px; }
.m-overlay__inner .side-brand li {
  font-size: 12px;
  padding: 8px 14px;
}

/* ── side-ctas(お客様の声 等)は2列で見やすく ── */
.m-overlay__inner .side-ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.m-overlay__inner .side-cta {
  padding: 10px 12px;
  font-size: 12px;
}

/* ============================================================
   SIDEBAR — 買取強化アイテム リスト調整 — 2026-04-26 (10)
   - 「宝石・ジュエリー」が改行しないようラベル幅を確保 + nowrap
   - サムネイル画像を 56px → 64px に拡大
   - 各項目の上下パディングを 12px → 8px に詰める
============================================================ */
.side-list--items a {
  padding: 8px 10px;
  gap: 10px;
}
.side-list__thumb {
  width: 60px;
  height: 60px;
}
.side-list__label {
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding-left: 12px;
}

/* ============================================================
   MOBILE MENU — 背景透過(ユーザー調整値: 0.5)
============================================================ */
.m-overlay__bg {
  background: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================
   CTA-PHONE — 「ただいま受付中」バッジが電話番号ボタンに被る問題を修正
   2026-04-26 (11)

   原因:
   - .kaitori-cta__tel-status に white-space: nowrap がかかっている
   - 親 .kaitori-cta__tel-body は grid の auto 列なので、子の最大幅
     (=nowrap の長いテキスト)に合わせて広がる
   - 結果、隣の電話番号ボタン列を押しのけて被ったように見える

   対応:
   - tel-status の nowrap を解除して、必要なら折り返せるようにする
   - フォントサイズを少し小さくして横幅を抑える
   - tel-body 内の tel-main / tel-small の nowrap は維持(電話番号は折り返したくない)
============================================================ */

.kaitori-cta__tel-status {
  white-space: normal;
  font-size: 12px;
  padding: 5px 12px 5px 10px;
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ============================================================
   SHOP INFO CARD — 店舗概要(プレミアムデザイン) — 2026-04-26 (15)
============================================================ */
.shop-info-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6ec 100%);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 14px;
  padding: 32px 24px 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(15, 26, 48, 0.06);
  margin-top: 24px;
}

/* サブヘッダー: 店舗概要 */
.shop-info-card__subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy-800);
}
.shop-info-card__subheading-line {
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}
.shop-info-card__subheading-text { white-space: nowrap; }

/* 住所行 */
.shop-info-card__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0 18px;
  text-align: center;
}
.shop-info-card__address-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  flex-shrink: 0;
}
.shop-info-card__address-ico svg { width: 22px; height: 22px; }
.shop-info-card__address-text {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 16px;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* 区切り線 */
.shop-info-card__divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.5) 30%, rgba(201, 169, 97, 0.5) 70%, transparent 100%);
  margin: 0 0 24px;
}

/* グリッド */
.shop-info-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* カードアイテム */
.shop-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 10px;
}
.shop-info-item--wide { grid-column: 1 / -1; }
.shop-info-item__ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbf6ec 0%, #f0e2c6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  flex-shrink: 0;
}
.shop-info-item__ico svg { width: 24px; height: 24px; }
.shop-info-item__body { flex: 1; min-width: 0; }
.shop-info-item__label {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}
.shop-info-item__value {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 14px;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0;
}
.shop-info-item__value small {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-left: 0;
}

/* 電話番号は赤で大きく、補足は改行して下に */
.shop-info-item--tel .shop-info-item__value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.shop-info-item--tel .shop-info-item__value a {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--rose, #c4324b);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.shop-info-item--tel .shop-info-item__value a:hover { text-decoration: underline; }
.shop-info-item--tel .shop-info-item__value small { display: block; }

/* Googleマップ埋め込み */
.shop-info-card__map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.25);
  background: #fff;
  line-height: 0;
}
.shop-info-card__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .shop-info-card { padding: 22px 14px 18px; }
  .shop-info-card__grid { grid-template-columns: 1fr; }
  .shop-info-item { padding: 14px 14px; gap: 12px; }
  .shop-info-item__ico { width: 46px; height: 46px; }
  .shop-info-item__ico svg { width: 22px; height: 22px; }
  .shop-info-item--tel .shop-info-item__value a { font-size: 20px; }
  .shop-info-card__subheading { font-size: 18px; }
  .shop-info-card__address-text { font-size: 14px; }
  .shop-info-card__map iframe { height: 280px; }
}


/* ============================================================
   STICKY CTA — 完全リセット & 新デザイン — 2026-04-26 (20)
   PC: 3カラム横長(リード+電話+店舗) / SP: 2カラム
   既存の 2678-2980行付近の古いCSSを完全に無効化するため、
   全プロパティを明示的に上書きする
============================================================ */

/* ─── まずsticky-cta全体を全リセット(古いCSSを無効化) ─── */
.sticky-cta {
  all: revert;  /* デフォルトに戻す */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: 9000;
  width: auto;
  background: transparent;
  padding: 8px 12px;
  margin: 0;
  transform: translateY(120%);
  transition: transform .3s ease;
  pointer-events: none;
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.sticky-cta::before,
.sticky-cta::after {
  display: none !important;
  content: none !important;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* ─── 内側ラッパー(PC: 3カラム横長) ─── */
.sticky-cta .sticky-cta__inner {
  all: unset;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: stretch;
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--navy-800, #14213d);
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 -6px 24px rgba(15, 26, 48, 0.18);
}

/* ─── 紺色リード(PC のみ) ─── */
.sticky-cta .sticky-cta__lead {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: #fff;
  font-family: var(--mincho);
  background: transparent;
  border: 0;
}
.sticky-cta .sticky-cta__lead::before,
.sticky-cta .sticky-cta__lead::after {
  display: none !important;
  content: none !important;
}
.sticky-cta .sticky-cta__lead-deco {
  color: var(--gold-500, #c9a961);
  font-size: 12px;
  line-height: 1;
  display: inline-block;
}
.sticky-cta .sticky-cta__lead-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sticky-cta .sticky-cta__lead-line1,
.sticky-cta .sticky-cta__lead-line2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: block;
}

/* 古いリード関連の要素は確実に非表示 */
.sticky-cta .sticky-cta__ribbon,
.sticky-cta .sticky-cta__ribbon-text,
.sticky-cta .sticky-cta__lead-main,
.sticky-cta .sticky-cta__diamond,
.sticky-cta .sticky-cta__phone-num,
.sticky-cta .sticky-cta__text-shop-main,
.sticky-cta .sticky-cta__text-sub:not(.sticky-cta__sp-sub):not(.sticky-cta__shop-sub) {
  display: none !important;
}

/* 古い text-mobile / text-desktop は非表示 */
.sticky-cta .sticky-cta__text-mobile,
.sticky-cta .sticky-cta__text-desktop {
  display: none !important;
}

/* ─── ボタン共通 ─── */
.sticky-cta .sticky-cta__btn {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-family: 'Noto Sans JP', var(--sans);
  position: relative;
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
  box-shadow: none;
  border: 0;
  overflow: hidden;
}
.sticky-cta .sticky-cta__btn::before,
.sticky-cta .sticky-cta__btn::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}
.sticky-cta .sticky-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.sticky-cta .sticky-cta__btn:active { transform: scale(0.99); }

/* 電話ボタン(エンジ) */
.sticky-cta .sticky-cta__btn--tel {
  background: linear-gradient(135deg, #b03050 0%, #8e2540 100%);
}

/* 店舗ボタン(緑) */
.sticky-cta .sticky-cta__btn--shop {
  background: linear-gradient(135deg, #2d5a3d 0%, #1f4029 100%);
  padding-right: 24px;
}

/* ─── 円形白アイコン ─── */
.sticky-cta .sticky-cta__btn .sticky-cta__ico {
  all: unset;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  animation: none;
}
.sticky-cta .sticky-cta__btn .sticky-cta__ico::before,
.sticky-cta .sticky-cta__btn .sticky-cta__ico::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}
.sticky-cta .sticky-cta__btn .sticky-cta__ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.sticky-cta .sticky-cta__btn--tel .sticky-cta__ico { color: #b03050; }
.sticky-cta .sticky-cta__btn--shop .sticky-cta__ico { color: #2d5a3d; }

/* ─── 電話ボタン本体 — 2行構成 ─── */
.sticky-cta .sticky-cta__tel-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.sticky-cta .sticky-cta__tel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;

}
.sticky-cta .sticky-cta__tel-label {
  font-family: var(--mincho);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.sticky-cta .sticky-cta__tel-hours {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.92;
  color: #fff;
}
.sticky-cta .sticky-cta__tel-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-cta .sticky-cta__tel-num {
  font-family: var(--mincho);
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
}
.sticky-cta .sticky-cta__tel-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}

/* SP用テキスト(PC では非表示) */
.sticky-cta .sticky-cta__sp-text {
  display: none;
}

/* ─── 店舗ボタンのテキスト ─── */
.sticky-cta .sticky-cta__shop-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-cta .sticky-cta__shop-label {
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #fff;
}
.sticky-cta .sticky-cta__shop-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.92;
  color: #fff;
}

/* ─── 矢印 ─── */
.sticky-cta .sticky-cta__btn .sticky-cta__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform .2s ease, opacity .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sticky-cta .sticky-cta__btn .sticky-cta__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sticky-cta .sticky-cta__btn:hover .sticky-cta__arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ============================================================
   タブレット〜SP(768px以下) — 2カラムシンプル版
============================================================ */
@media (max-width: 768px) {
  .sticky-cta { padding: 6px 8px !important; }
  .sticky-cta .sticky-cta__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: 0 -4px 20px rgba(15, 26, 48, 0.1) !important;
  }
  /* リードはSPでは非表示 */
  .sticky-cta .sticky-cta__lead { display: none !important; }

  /* PC用テキストは非表示、SP用テキストを表示 */
  .sticky-cta .sticky-cta__tel-top,
  .sticky-cta .sticky-cta__tel-bottom { display: none !important; }
  .sticky-cta .sticky-cta__sp-text {
    display: flex !important;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
  }
  .sticky-cta .sticky-cta__sp-main {
    font-family: var(--mincho);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: #fff;
    display: block;
  }
  .sticky-cta .sticky-cta__sp-sub {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.92;
    color: #fff;
    display: block;
  }
  /* 店舗ボタンのテキストもSP向けに調整 */
  .sticky-cta .sticky-cta__shop-body { gap: 1px; }
  .sticky-cta .sticky-cta__shop-label { font-size: 14px; }
  .sticky-cta .sticky-cta__shop-sub { font-size: 11px; }

  /* ボタンサイズをSP向けに */
  .sticky-cta .sticky-cta__btn {
    padding: 10px 12px !important;
    gap: 10px !important;
    border-radius: 12px !important;
  }
  .sticky-cta .sticky-cta__btn--shop { padding-right: 12px !important; }
  .sticky-cta .sticky-cta__btn .sticky-cta__ico {
    width: 33px !important;
    height: 33px !important;
  }
  .sticky-cta .sticky-cta__btn .sticky-cta__ico svg {
    width: 18px !important;
    height: 18px !important;
  }
  .sticky-cta .sticky-cta__btn .sticky-cta__arrow {
    width: 14px !important;
    height: 14px !important;
  }
}

/* 極小幅(400px以下) */
@media (max-width: 400px) {
  .sticky-cta .sticky-cta__btn { padding: 9px 10px !important; gap: 8px !important; }
  .sticky-cta .sticky-cta__btn .sticky-cta__ico {
    width: 34px !important;
    height: 34px !important;
  }
  .sticky-cta .sticky-cta__sp-main,
  .sticky-cta .sticky-cta__shop-label { font-size: 13px !important; }
  .sticky-cta .sticky-cta__sp-sub,
  .sticky-cta .sticky-cta__shop-sub { font-size: 10px !important; }
}

/* ============================================================
   SHOP LIST PAGE — 店舗一覧ページ — 2026-04-26 (再追加)
   サイドバーありレイアウト前提で、1行2店舗 / 画像はコンパクト
============================================================ */

/* Hero */
.shop-list-hero { margin-bottom: 28px; }
.shop-list-hero__crumbs {
  font-size: 12px;
  color: rgba(15, 26, 48, 0.6);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.shop-list-hero__crumbs a { color: rgba(15, 26, 48, 0.6); text-decoration: none; }
.shop-list-hero__crumbs a:hover { text-decoration: underline; }
.shop-list-hero__crumbs span[aria-hidden] { margin: 0 6px; color: rgba(166, 133, 53, 0.5); }
.shop-list-hero__crumbs .is-current { color: var(--gold-700); }
.shop-list-hero__title {
  font-family: var(--mincho);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  margin: 0 0 12px;
}
.shop-list-hero__lead {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 14px;
  color: rgba(15, 26, 48, 0.7);
  margin: 0;
  letter-spacing: 0.04em;
}

/* Filter */
.shop-list-filter {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6ec 100%);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.shop-list-filter__label {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--navy-800);
  margin: 0;
  flex-shrink: 0;
}
.shop-list-filter__buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-list-filter__btn {
  padding: 7px 20px;
  border: 1px solid rgba(201, 169, 97, 0.6);
  border-radius: 100px;
  background: #fff;
  color: var(--gold-700);
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.shop-list-filter__btn:hover { background: #fbf6ec; transform: translateY(-1px); }
.shop-list-filter__btn.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.shop-list-filter__btn.is-active:hover { background: var(--navy-800); }

/* List head */
.shop-list__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.shop-list__count {
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 13px;
  color: rgba(15, 26, 48, 0.7);
  margin: 0;
  letter-spacing: 0.04em;
}
.shop-list__count #shopListCount { font-weight: 700; color: var(--navy-800); }

/* Grid — 1行2店舗 */
.shop-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Card */
.shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.shop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 26, 48, 0.1);
  border-color: rgba(201, 169, 97, 0.6);
}

.shop-card__media {
  position: relative;
  display: block;
  background: #fbf6ec;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.shop-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-card__media .shop-noimage {
  height: 100%;
  border: 0;
  min-height: 0;
}

.shop-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-card__title {
  font-family: var(--mincho);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  line-height: 1.3;
}
.shop-card__title a { color: inherit; text-decoration: none; }
.shop-card__title a:hover { color: var(--gold-700); }

.shop-card__meta {
  margin: 0 0 12px;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 12px;
  color: rgba(15, 26, 48, 0.75);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.shop-card__meta-row { display: flex; gap: 4px; margin: 0 0 2px; }
.shop-card__meta-row dt { margin: 0; flex-shrink: 0; color: rgba(15, 26, 48, 0.55); }
.shop-card__meta-row dd { margin: 0; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-card__tel { margin: 0 0 12px; }
.shop-card__tel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose, #c4324b);
  text-decoration: none;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.shop-card__tel-ico {
  display: inline-flex;
  width: 17px; height: 17px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shop-card__tel-ico svg { width: 100%; height: 100%; }
.shop-card__tel a:hover { text-decoration: underline; }

.shop-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: auto;
}
.shop-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transition: transform .15s, box-shadow .15s, background .2s;
  white-space: nowrap;
}
.shop-card__btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.shop-card__btn:hover { transform: translateY(-1px); }
.shop-card__btn--detail {
  background: #fbf6ec;
  color: var(--gold-700);
  border: 1px solid rgba(201, 169, 97, 0.5);
}
.shop-card__btn--detail:hover { background: #f0e2c6; }
.shop-card__btn--reserve {
  background: var(--navy-800);
  color: #fff;
  border: 1px solid var(--navy-800);
}
.shop-card__btn--reserve:hover { background: #1a2a52; box-shadow: 0 4px 12px rgba(15, 26, 48, 0.25); }

.shop-list__empty {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 14px;
  color: rgba(15, 26, 48, 0.6);
  background: #fbf6ec;
  border-radius: 10px;
  border: 1px dashed rgba(201, 169, 97, 0.4);
}

/* スマホ — 1列・縦並び */
@media (max-width: 600px) {
  .shop-list-hero__title { font-size: 26px; }
  .shop-list-hero__lead { font-size: 13px; }
  .shop-list-filter {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 10px;
  }
  .shop-list-filter__btn { padding: 7px 16px; font-size: 12px; }
  .shop-list__grid { grid-template-columns: 1fr; }
  .shop-card__title { font-size: 19px; }
  .shop-card__tel a { font-size: 19px; }
  .shop-card__btn { font-size: 11px; padding: 9px 6px; }
}

/* ============================================================
   FLOW V2 — Mobile: horizontal scroll carousel — 2026-04-26 (22)
   スマホ時はステップを縦に積むのではなく、横にスクロールするカルーセル形式に変更
   矢印はPCと同じデザイン(ゴールドの「>」SVGアイコン)で、カードの間に挟まる形
============================================================ */
@media (max-width: 600px) {
  /* グリッド設定を上書き(縦積みから横スクロールへ) */
  .flow-v2__steps {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* 左右に少し余白をつけて、最初/最後のカードもセンタリングしやすく */
    padding: 4px 16px 16px;
    margin: 0 -14px 0;  /* 親 .flow-v2 の padding (20px 14px) を相殺してフルブリードに */
    scrollbar-width: none; /* Firefox */
    margin-bottom: 24px;
  }
  .flow-v2__steps::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  /* 各ステップのサイズ・スナップ設定 */
  .flow-v2__step {
    flex: 0 0 78%;
    max-width: 320px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* PC同等の矢印デザイン(ゴールドの > アイコン) */
  .flow-v2__arrow {
    display: flex;
    flex: 0 0 auto;
    transform: none;  /* 縦積み時の rotate(90deg) を打ち消し */
    color: var(--gold-500);
    align-items: center;
    justify-content: center;
    /* スナップさせない(矢印にスナップしないように) */
    scroll-snap-align: none;
  }
  .flow-v2__arrow svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================================
   ユーザー入力
============================================================ */


section.hero img {
  margin: auto;
}
@media (min-width: 600px) {
  .spon{display: none;}
}
@media (max-width: 600px) {
  .layout {
    padding-top: 0;
}
span.kaitori-cta__ribbon-text {
  max-width: 180px;
  white-space: break-spaces;
}
.kaitori-cta__tel-ico, .kaitori-cta__store-ico {
  display: none;
}
ul.kaitori-cta__assurance {
  display: none;
}
.shop-info-card__address-text {
  text-align: left;
}

}
@media (max-width: 440px) {
.kaitori-cta__headline {
  font-size: 24px;
  padding-left: 8px;
}
.sticky-cta .sticky-cta__sp-main, .sticky-cta .sticky-cta__shop-label {
  font-size: 14px;
  letter-spacing: 0; 
}
.sticky-cta .sticky-cta__sp-sub, .sticky-cta .sticky-cta__shop-sub, .sticky-cta .sticky-cta__shop-sub {
  font-size: 9px;
  letter-spacing: 0; 
}
.sticky-cta .sticky-cta__btn {
  padding: 10px 12px !important;
  gap: 10px !important;
  border-radius: 0 !important;
}
.sticky-cta {
  padding: 0;
}
.shop-hero__crumbs {
  font-size: 11px;
}
.kaitori-cta {
  margin: 48px 0 24px;
}
}

/* ============================================================
   SHOP MAPS — 周辺マップ + フロアマップ(2カラム)
   page-shop.php のセクション (5)
============================================================ */
.shop-maps {
  margin-bottom: 16px;
}
.shop-maps__lead {
  text-align: center;
  font-family: 'Noto Sans JP', var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0 0 28px;
}
.shop-maps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

/* 各マップカード */
.shop-map {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 22px 24px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.shop-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.1);
  border-color: var(--gold-500);
}

/* キャプション(MAP 01 / 周辺マップ) */
.shop-map__caption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.shop-map__label {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}
.shop-map__title {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  line-height: 1.4;
}

/* マップ画像のフレーム */
.shop-map__frame {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.shop-map__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.shop-map:hover .shop-map__frame img {
  transform: scale(1.02);
}
.shop-map__frame img.is-image-error {
  opacity: 0.3;
}

/* ============================================================
   SHOP MAPS — ズームコネクタ(2カードの間)
============================================================ */
.shop-maps__zoom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 4px;
  align-self: center;
}
.shop-maps__zoom-ico {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  box-shadow: 0 4px 12px rgba(166, 133, 53, 0.3);
}
.shop-maps__zoom-ico svg {
  width: 22px;
  height: 22px;
}
.shop-maps__zoom-text {
  font-family: var(--mincho);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  text-align: center;
  white-space: nowrap;
}
.shop-maps__zoom-arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
}
.shop-maps__zoom-arrow svg {
  width: 22px;
  height: 22px;
}

/* スマホ */
@media (max-width: 768px) {
  .shop-maps__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .shop-map {
    padding: 18px 18px 20px;
    gap: 12px;
  }
  .shop-map__caption {
    gap: 10px;
    padding-bottom: 10px;
  }
  .shop-map__label {
    font-size: 12px;
    padding: 3px 10px;
  }
  .shop-map__title {
    font-size: 15px;
  }

  /* スマホでは横並び→縦並びになるため、矢印を下向きに回転 */
  .shop-maps__zoom {
    flex-direction: row;
    gap: 12px;
    padding: 4px 0;
  }
  .shop-maps__zoom-ico {
    width: 38px;
    height: 38px;
  }
  .shop-maps__zoom-ico svg {
    width: 20px;
    height: 20px;
  }
  .shop-maps__zoom-arrow {
    transform: rotate(90deg);
    margin-left: 4px;
  }
  .shop-maps__zoom-text br {
    display: none;
  }
  .shop-maps__zoom-text {
    font-size: 13px;
    white-space: normal;
  }
}


/* ============================================================
   ABOUT PAGE — 会社概要
   page-about.php
============================================================ */

/* パンくず */
.page-crumbs {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin: 15px 0 0 0;
}
.page-crumbs a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color .2s;
}
.page-crumbs a:hover {
  color: var(--gold-700);
}
.page-crumbs span[aria-hidden="true"] {
  margin: 0 8px;
  color: var(--ink-4);
}
.page-crumbs .is-current {
  color: var(--navy-800);
  font-weight: 700;
}

/* ABOUT HERO */
.about-hero {
  text-align: center;
  padding: 32px 24px 40px;
  background: linear-gradient(180deg, #fbf6ec 0%, transparent 100%);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
}
.about-hero__en {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold-600);
  margin: 0 0 8px;
  line-height: 1;
}
.about-hero__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy-800);
  line-height: 1.2;
  margin: 0 0 16px;
}
.about-hero__title-text { display: block; }
.about-hero__title-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.about-hero__title-line {
  flex: 0 1 70px;
  height: 1px;
  background: var(--gold-500);
}
.about-hero__title-diamond {
  font-size: 12px;
  color: var(--gold-500);
  line-height: 1;
}
.about-hero__lead {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin: 0;
}


/* COMPANY INFO TABLE */
.about-info__table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  margin-top: 24px;
}
.about-info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  margin: 0;
  border-bottom: 1px solid var(--border-soft);
}
.about-info__row:last-child {
  border-bottom: 0;
}
.about-info__label {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  background: var(--bg-alt);
  padding: 18px 22px;
  margin: 0;
  border-right: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
}
.about-info__label::before {
  content: '◆';
  color: var(--gold-500);
  font-size: 9px;
  margin-right: 10px;
}
.about-info__value {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  padding: 18px 24px;
  margin: 0;
}
.about-info__tel {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color .2s;
}
.about-info__tel:hover {
  color: var(--rose-dark);
  text-decoration: underline;
}


/* レスポンシブ — スマホ */
@media (max-width: 768px) {
  .about-hero {
    padding: 24px 18px 28px;
  }
  .about-hero__title {
    font-size: 28px;
  }
  .about-hero__title-line {
    flex-basis: 50px;
  }
  .about-hero__lead {
    font-size: 13px;
  }

  .about-info__row {
    grid-template-columns: 1fr;
  }
  .about-info__label {
    padding: 12px 18px;
    font-size: 15px;
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .about-info__value {
    padding: 14px 18px 18px;
    font-size: 14px;
  }
  .about-info__tel {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
.m-overlay__inner .side-list__thumb {
  width: 40px;
  height: 40px;
}
.side-list--items {
  flex-wrap: wrap;
  display: flex;
  padding: 8px 0;
}
.m-overlay__inner .side-list--items a {
  padding: 4px 8px;
}
.side-list--items a::after {
  content: "";
}
.m-overlay__inner .side-list__label {
  font-size: 12px;
}
.side-list--items li {
  flex: 1 1;
  min-width: 150px;
  position: relative;
}
.m-overlay__inner {
  padding: 80px 16px 32px;
}
}