/* =============================================
   REVE Global - Main Stylesheet
   Design: Cinematic, Modern, Trust-First
   Base: White | Accent: Deep Navy / Black
   Mobile-First Responsive
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #0F1923;
  --color-accent: #1B365D;
  --color-accent-light: #2A4A7F;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F8FA;
  --color-bg-dark: #0F1923;
  --color-text: #1A1A1A;
  --color-text-light: #6B7280;
  --color-text-inverse: #FFFFFF;
  --color-border: #E5E7EB;
  --color-gold: #B8956A;
  --font-display: 'Outfit', 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', 'Inter', sans-serif;
  --font-jp: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-en: 'Outfit', 'Inter', sans-serif;
  --max-width: 1200px;
  --section-padding: 80px 20px;
  --section-padding-mobile: 56px 16px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-bg);
  color: var(--color-primary);
}
.btn-white:hover {
  background: #F0F0F0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 12px 24px; font-size: 0.875rem; }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 24px;
}

.header-right {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-desktop a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-desktop a:hover { color: var(--color-accent); }
.nav-desktop a:hover::after { width: 100%; }

.header-right .nav-cta {
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
}
.header-right .nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: var(--color-bg);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.nav-mobile.active { right: 0; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--color-accent); }

.nav-mobile .nav-cta-mobile {
  margin-top: 16px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-right { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* --- Hero Section: Stage 5 末尾で再定義 --- */

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 20px;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.trust-item .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.trust-item .trust-icon svg { width: 14px; height: 14px; }

/* --- Sections --- */
.section { padding: var(--section-padding-mobile); }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-inverse); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subtitle {
  margin: 16px auto 0;
}

@media (min-width: 768px) {
  .section { padding: var(--section-padding); }
}

/* --- How It Works / Steps --- */
.steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.step:last-child { margin-bottom: 0; }

.step-number {
  width: 48px; height: 48px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content { padding-top: 10px; }
.step-content h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-content p { color: var(--color-text-light); font-size: 0.95rem; }

/* --- Social Section --- */
.social-section { text-align: center; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.social-link svg { width: 20px; height: 20px; }

/* Inline SVG icons */
.sns-icon { width: 18px; height: 18px; vertical-align: middle; flex-shrink: 0; }
.star-icon { width: 1em; height: 1em; vertical-align: middle; }
.footer-social svg.sns-icon { width: 28px; height: 28px; }

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding: 80px 20px;
}

.cta-section h2 { margin-bottom: 12px; }
.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 140px 20px 60px;
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,0.95) 0%, rgba(27,54,93,0.9) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 { margin-bottom: 16px; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.8; }

@media (min-width: 768px) {
  .page-hero { padding: 160px 20px 80px; }
}

/* Pain Points List */
.pain-list {
  max-width: 700px;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.pain-item:last-child { border-bottom: none; }

.pain-icon {
  width: 36px; height: 36px;
  background: #FEF3C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.pain-item p { font-size: 1.05rem; padding-top: 6px; }

/* Info Boxes */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}

.info-box {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--color-accent);
}

.info-box h4 { margin-bottom: 8px; color: var(--color-accent); }
.info-box p { color: var(--color-text-light); font-size: 0.95rem; }

@media (min-width: 768px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Contact Form --- */
.contact-intro {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(27,54,93,0.1);
}

.wpcf7 textarea { min-height: 140px; resize: vertical; }

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  margin-top: 8px;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 20px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand h3 {
  color: var(--color-text-inverse);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-nav h4 {
  color: var(--color-text-inverse);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--color-text-inverse); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

/* --- Photo Layouts --- */
.photo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.photo-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .photo-row { grid-template-columns: repeat(3, 1fr); }
  .photo-row img { height: 260px; }
}

/* Two-column layout: content + photo */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.split-section .split-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* Photo card with overlay text */
.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,25,35,0.8) 0%, rgba(15,25,35,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--color-text-inverse);
}

.photo-card-overlay h3 { font-size: 1.1rem; margin-bottom: 4px; }
.photo-card-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

@media (min-width: 768px) {
  .photo-card img { height: 320px; }
}

/* Hero with background photo (inner pages) */
.page-hero-photo {
  padding: 140px 20px 60px;
  color: var(--color-text-inverse);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-photo .hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-photo .hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.page-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,0.88) 0%, rgba(27,54,93,0.82) 100%);
  z-index: -1;
}

.page-hero-photo .page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-hero-photo { padding: 160px 20px 80px; }
}

/* --- Footer Company Info --- */
.footer-company {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-company p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  margin-left: 8px;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* --- Related Links Bar --- */
.related-links {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}

.related-links .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  justify-content: center;
}

.related-links-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.related-links a {
  font-size: 0.85rem;
  color: var(--color-accent);
  transition: color var(--transition);
}

.related-links a:hover { color: var(--color-primary); text-decoration: underline; }

/* --- Photo Banner (full-width with overlay text) --- */
.photo-banner-section {
  padding: 0;
}

.photo-banner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.photo-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.photo-banner-overlay p {
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .photo-banner img { height: 340px; }
  .photo-banner-overlay p { font-size: 1.5rem; }
}

/* --- Location Grid (5 offices) --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.location-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.location-info {
  padding: 20px;
}

.location-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.location-info p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

@media (min-width: 600px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .location-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .location-grid { grid-template-columns: repeat(5, 1fr); }
  .location-photo { height: 150px; }
}

/* --- Contact 2-column layout --- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-col {
  max-width: 600px;
}

.contact-photo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-photo-col img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-photo-text {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.contact-photo-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-photo-text p:first-child {
  color: var(--color-text);
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .contact-split { grid-template-columns: 1.2fr 0.8fr; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* --- Animations --- */
/* Disabled: fade-in was hiding content. All sections visible by default. */

/* --- Stats Bar --- */
.stats-bar {
  background: var(--color-bg-dark);
  padding: 32px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-value { font-size: 1.75rem; }
}

/* --- Hero Sub CTAs --- */
.hero-sub-ctas {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.hero-sub-ctas a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.hero-sub-ctas a:hover {
  color: #fff;
  border-color: #fff;
}

/* --- What Happens Next --- */
.what-next {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 40px;
}

.what-next h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.what-next-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.what-next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.what-next-num {
  width: 28px; height: 28px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.what-next-step p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding-top: 3px;
}

@media (min-width: 768px) {
  .what-next-steps { grid-template-columns: repeat(2, 1fr); }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .nav-mobile, .menu-toggle { display: none; }
  .hero { min-height: auto; padding: 40px 20px; overflow: visible; }
}

/* =========================================================
   Stage 5: §1 ヒーロー + Sticky CTA + ヘルパー
   デザイントークン v1.0 準拠
   ========================================================= */

/* ===== §1 ヒーロー ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding-mobile);
  padding-bottom: 120px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero {
    padding: var(--section-padding);
    min-height: 80vh;
    min-height: 80svh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 245, 0.0) 0%,
    rgba(255, 252, 245, 0.35) 35%,
    rgba(255, 252, 245, 0.92) 65%,
    rgba(255, 252, 245, 0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin: 0 0 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-eyebrow {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.hero-title {
  font-family: var(--font-jp);
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 56px;
    line-height: 1.25;
    margin-bottom: 24px;
  }
}

.hero-subtitle {
  font-family: var(--font-jp);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 32px;
  color: rgba(15, 25, 35, 0.85);
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  font-family: var(--font-jp);
  font-size: 14px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-rating {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
}
.hero-trust-count {
  font-family: var(--font-en);
  font-variant-numeric: tabular-nums;
  color: rgba(15, 25, 35, 0.95);
}
.hero-trust-area {
  color: rgba(15, 25, 35, 0.75);
}
@media (min-width: 768px) {
  .hero-trust { font-size: 15px; margin-bottom: 44px; }
  .hero-trust-rating { font-size: 22px; }
}

/* ===== ボタン基底 ===== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 200ms ease;
  min-height: 60px;
  min-width: 280px;
  cursor: pointer;
  border: none;
  text-align: center;
}
@media (min-width: 768px) {
  .btn {
    min-width: 220px;
    flex-direction: row;
    gap: 8px;
  }
}
.btn-icon { font-size: 20px; display: inline-block; }
.btn-label { display: inline-block; }
.btn-sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .btn-sub { margin-top: 0; margin-left: 4px; }
}

.btn-primary {
  background-color: var(--color-gold);
  color: #fff;
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.35);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #a58557;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184, 149, 106, 0.45);
}

.btn-line {
  background-color: #06C755;
  color: #fff;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}
.btn-line:hover,
.btn-line:focus-visible {
  background-color: #05a847;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.4);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.hero-note {
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(15, 25, 35, 0.65);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 480px;
}
@media (min-width: 768px) { .hero-note { font-size: 13px; } }

/* ===== スクロールヒント ===== */
.hero-scroll-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(15, 25, 35, 0.45);
  text-decoration: none;
  font-size: 24px;
  animation: scroll-bounce 2s ease-in-out infinite;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-scroll-hint:hover { color: rgba(15, 25, 35, 0.9); }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (min-width: 1024px) { .hero-scroll-hint { bottom: 24px; } }

/* ===== レスポンシブヘルパー ===== */
.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }
.pc-only { display: none; }
@media (min-width: 768px) { .pc-only { display: inline; } }



/* =========================================================
   Stage 6A-2: ヘッダー電話 CTA + モバイルナビ電話 CTA
   ========================================================= */

/* === PC ヘッダー右の電話 CTA === */
.site-logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

/* PC 1024px+ で表示、モバイル/タブレットでは非表示 */
@media (max-width: 1023px) {
  .header-right { display: none !important; }
}

/* === モバイルナビ内の電話 CTA === */
.nav-mobile-tel {
  margin-top: 16px;
  padding: 14px 32px;
  background: var(--color-gold);
  color: #fff !important;
  border-radius: 8px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(184, 149, 106, 0.3);
}

.nav-mobile-tel:hover,
.nav-mobile-tel:focus-visible {
  background: #a58557;
  color: #fff !important;
}

/* === Stage 6A-2 ブロック終了 === */


/* === Stage 6A-2 追加: ロゴ画像 === */
.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
  max-width: 100%;
}

@media (max-width: 767px) {
  .site-logo-img { height: 36px; }
}


/* =========================================================
   Stage 6A-3: Footer
   ========================================================= */

.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
  font-family: var(--font-jp);
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 48px;
    padding: 0 32px;
  }
}

/* === ブランドカラム === */
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  /* 黒ロゴをダーク背景上で白く表示 */
  filter: invert(1) brightness(2);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* === ナビカラム / 店舗カラム === */
.footer-nav-title {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--color-gold);
}

.footer-nav ul,
.footer-shops ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-shops li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--color-gold);
}

/* === GINZA TOKYO バッジ === */
.ginza-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.15em;
  background: var(--color-gold);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 600;
  vertical-align: middle;
  text-transform: uppercase;
}

.footer-area {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 20px 0 0;
}

/* === 法務情報セクション === */
.footer-legal {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .footer-legal-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
  }
}

.footer-company {
  margin: 0;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.footer-copyright {
  margin: 0;
  font-family: var(--font-en);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* === Footer ブロック終了 === */


/* ============================================================
   Hero CTA — Glass Bar (v5.0 / Variant B: Inter Thin x Noto Serif JP)
   ============================================================ */

.hero-cta-bar {
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr;
  background: rgba(18, 12, 8, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(212, 184, 134, 0.35);
  color: #fffaf0;
  position: relative;
  z-index: 2;
}

.hero-cta-cell {
  padding: 24px 22px 20px;
  border-right: 1px solid rgba(212, 184, 134, 0.20);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: background 0.4s ease;
}
.hero-cta-cell:last-child { border-right: none; }
.hero-cta-cell:hover { background: rgba(212, 184, 134, 0.12); }
.hero-cta-cell::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: #d4b886;
  transition: width 0.45s ease;
}
.hero-cta-cell:hover::before { width: 100%; }

.hero-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #d4b886;
  line-height: 1;
}

.hero-cta-tel {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fffaf0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hero-cta-tel-jp {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255, 250, 240, 0.7);
  line-height: 1;
}

.hero-cta-main {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fffaf0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-cta-main svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.95;
  color: #d4b886;
}

.hero-cta-meta {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.55);
  line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {
  /* v5.3: モバイル/タブレットでは Glass Bar 非表示。Sticky Bottom Bar に CTA 集約 */
  .hero-cta-bar {
    display: none;
  }
}


/* ============================================================
   Header Telephone CTA (v5.1) — Inter Thin x hairline
   ============================================================ */
.site-header__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.18);
  color: #1a1a1a;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.site-header__tel:hover {
  border-color: #c9a961;
}
.site-header__tel-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a961;
  line-height: 1;
}
.site-header__tel-num {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: #1a1a1a;
  line-height: 1;
}

/* ============================================================
   Sticky CTA (v5.1) — Desktop hide, Mobile dark glass refine
   ============================================================ */
/* デスクトップ: 完全非表示（Glass Bar + ヘッダー電話で十分） */
@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}

/* モバイル: ダークガラス + ヘアラインで Glass Bar と統一 */
@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(18, 12, 8, 0.85);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    backdrop-filter: blur(20px) saturate(130%);
    border-top: 1px solid rgba(212, 184, 134, 0.35);
    box-shadow: none;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(212, 184, 134, 0.4);
    color: #fffaf0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.12em;
    border-radius: 0;
    padding: 10px 8px;
    text-decoration: none;
    text-align: center;
    min-height: 44px;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .sticky-cta a:hover,
  .sticky-cta a:focus-visible {
    background: rgba(212, 184, 134, 0.12);
    border-color: #c9a961;
  }
}


/* ============================================================
   v5.5 — モバイルヒーロー拡大バグ最終対策
   svh が効かない iOS や残存 vh を全て押さえ込む
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    min-height: 560px !important;
    max-height: 720px !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
  }

  .hero picture,
  .hero img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    transform: none !important;
    will-change: auto !important;
  }
}


/* ============================================================
   Stage 6B — §2 Scenarios + §4 USP (v6.0)
   Luxury direction: Inter Thin x Noto Serif JP, hairline borders only
   ============================================================ */

/* ---------- 共通 セクション要素 ---------- */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #c9a961;
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 18px;
}
.section-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: #555;
  text-align: center;
  margin-bottom: 56px;
}
.br-mobile { display: none; }

/* ---------- §2 シナリオ ---------- */
.section-scenarios {
  padding: 110px 0 120px;
  background: #f9f5ee;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.scenario-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.scenario-card:hover {
  border-color: #c9a961;
  transform: translateY(-2px);
}
.scenario-num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 56px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 28px;
}
.scenario-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.scenario-question {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #c9a961;
  margin-bottom: 20px;
}
.scenario-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.9;
  color: #555;
  margin-bottom: 32px;
  flex-grow: 1;
}
.scenario-cta {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1a1a;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.scenario-cta:hover {
  color: #c9a961;
  border-color: #c9a961;
  gap: 16px;
}
.scenario-cta .arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
}

/* ---------- §4 USP ---------- */
.section-usp {
  padding: 110px 0 120px;
  background: #fff;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-left: 1px solid rgba(26, 26, 26, 0.1);
}
.usp-item {
  padding: 50px 44px 50px;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  background: #fff;
  transition: background 0.4s ease;
}
.usp-item:hover {
  background: #fdfbf6;
}
.usp-num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 64px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #c9a961;
  margin-bottom: 28px;
}
.usp-item-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.usp-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.usp-rating-star {
  color: #c9a961;
  font-size: 22px;
  line-height: 1;
}
.usp-rating-num {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  line-height: 1;
}
.usp-item-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.9;
  color: #555;
}

/* ---------- Tablet (<=1024px) ---------- */
@media (max-width: 1024px) {
  .section-title { font-size: 28px; }
  .scenarios-grid { gap: 20px; }
  .scenario-card { padding: 36px 28px 28px; }
  .scenario-num { font-size: 48px; }
  .usp-item { padding: 40px 32px; }
  .usp-num { font-size: 56px; }
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {
  .br-mobile { display: inline; }
  .section-scenarios,
  .section-usp { padding: 72px 0 80px; }
  .section-title { font-size: 24px; }
  .section-lead { margin-bottom: 40px; font-size: 14px; }
  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .scenario-card { padding: 36px 28px 32px; }
  .scenario-num { font-size: 44px; margin-bottom: 20px; }
  .scenario-title { font-size: 19px; }
  .usp-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .usp-item {
    padding: 36px 24px;
    border-right: none;
  }
  .usp-num { font-size: 52px; margin-bottom: 20px; }
  .usp-item-title { font-size: 19px; }
  .usp-rating-num { font-size: 28px; }
}


/* ============================================================
   Stage 6C — §3 Staff + §5 Reviews (v6.1)
   ============================================================ */

/* ---------- §3 スタッフ ---------- */
.section-staff {
  padding: 110px 0 120px;
  background: #fff;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  margin-bottom: 56px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}
.staff-card:hover { transform: translateY(-3px); }
.staff-card:hover .staff-photo { filter: brightness(1.05); }
.staff-card:hover .staff-photo-wrap::after { opacity: 1; }

.staff-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f1ec;
  margin-bottom: 20px;
}
.staff-photo-wrap::after {
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  width: 24px; height: 24px;
  border-top: 1px solid #c9a961;
  border-left: 1px solid #c9a961;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.staff-meta { padding: 0 4px; }

.staff-store {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 8px;
}

.staff-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.staff-role {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #555;
  line-break: strict;
  word-break: normal;
}

/* ---------- §5 クチコミ ---------- */
.section-reviews {
  padding: 110px 0 120px;
  background: #f9f5ee;
}

.reviews-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.reviews-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.reviews-rating-star {
  font-size: 36px;
  color: #c9a961;
  line-height: 1;
}
.reviews-rating-num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 64px;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  line-height: 1;
}

.reviews-rating-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-left: 1px solid rgba(26, 26, 26, 0.15);
  padding-left: 24px;
  gap: 6px;
}
.reviews-rating-count {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}
.reviews-rating-source {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}

/* reviews-grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 32px 28px;
  transition: border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  border-color: #c9a961;
}

.review-stars {
  color: #c9a961;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  line-height: 1;
}

.review-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-author {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 0.06em;
}

/* ---------- 共通 セクション CTA リンク ---------- */
.section-cta-wrap {
  text-align: center;
  margin-top: 32px;
}
.section-cta-link {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.section-cta-link:hover {
  color: #c9a961;
  border-color: #c9a961;
  gap: 16px;
}
.section-cta-link .arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
}

/* ---------- Tablet (<=1024px) ---------- */
@media (max-width: 1024px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .reviews-rating-num { font-size: 56px; }
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {
  .section-staff,
  .section-reviews { padding: 72px 0 80px; }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
    margin-bottom: 40px;
  }
  .staff-name { font-size: 17px; }

  .reviews-headline {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
  .reviews-rating-num { font-size: 56px; }
  .reviews-rating-meta {
    border-left: none;
    border-top: 1px solid rgba(26, 26, 26, 0.15);
    padding-left: 0;
    padding-top: 14px;
    text-align: center;
    align-items: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}


/* ============================================================
   Stage 6D Part 1 — §6 Stores + §7 Areas (v7.0)
   ============================================================ */

/* ---------- §6 5 店舗 ---------- */
.section-stores {
  padding: 110px 0 120px;
  background: #fff;
}
.stores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-left: 1px solid rgba(26, 26, 26, 0.1);
}
.store-card {
  padding: 36px 24px 32px;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  transition: background 0.4s ease;
}
.store-card:hover { background: #fdfbf6; }

/* GINZA 銀座店だけゴールドの内側リング演出 */
.store-card--featured {
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
  position: relative;
}
.store-card--featured::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  pointer-events: none;
  z-index: 1;
}
.store-card--featured > * { position: relative; z-index: 2; }
.store-card--featured:hover { background: linear-gradient(180deg, #fff8e8 0%, #fff 100%); }

.store-num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 18px;
}
.store-card--featured .store-num { color: #c9a961; }

.store-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 10px;
  line-height: 1.4;
}

.store-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.store-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
  flex-grow: 1;
  line-break: strict;
}

.store-tel {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  display: block;
  white-space: nowrap;
}

.store-link {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #1a1a1a;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.store-link:hover { color: #c9a961; border-color: #c9a961; gap: 12px; }
.store-link .arrow { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 14px; }

/* ---------- §7 対応エリア ---------- */
.section-areas {
  padding: 110px 0 120px;
  background: #f9f5ee;
}
.areas-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.areas-stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 96px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
}
.areas-stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(26, 26, 26, 0.2);
}
.areas-stat-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.areas-stat-label-en {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a961;
}
.areas-stat-label-jp {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #1a1a1a;
}
.areas-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  border-left: 1px solid rgba(26, 26, 26, 0.12);
  max-width: 880px;
}
.area-item {
  padding: 22px 24px;
  border-right: 1px solid rgba(26, 26, 26, 0.12);
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  display: flex;
  align-items: baseline;
  gap: 14px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.4s ease;
  cursor: default;
}
.area-item:hover { background: rgba(201, 169, 97, 0.12); }
.area-num {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #c9a961;
  font-variant-numeric: tabular-nums;
}
.area-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  line-height: 1.4;
}

/* ---------- Tablet (<=1024px) ---------- */
@media (max-width: 1024px) {
  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-card { padding: 32px 24px 28px; }
  .store-num { font-size: 32px; }
  .areas-stat-num { font-size: 80px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {
  .section-stores,
  .section-areas { padding: 72px 0 80px; }
  .stores-grid { grid-template-columns: 1fr; }
  .store-card { padding: 32px 24px; }
  .store-card--featured::before { inset: 6px; }
  .store-num { font-size: 28px; margin-bottom: 14px; }
  .store-name { font-size: 16px; }
  .areas-stat {
    gap: 16px;
    margin-bottom: 40px;
  }
  .areas-stat-num { font-size: 64px; }
  .areas-stat-divider {
    width: 40px;
    height: 1px;
  }
  .areas-stat-meta { text-align: center; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
  .area-item { padding: 18px 18px; }
  .area-name { font-size: 15px; }
}


/* ============================================================
   Stage 6D Part 2 — §8 Process + §9 FAQ (v7.1)
   ============================================================ */

/* ---------- §8 ご利用の流れ ---------- */
.section-process {
  padding: 110px 0 120px;
  background: #fff;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 56px;
}

/* ステップ間を繋ぐゴールドヘアライン */
.process-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(201, 169, 97, 0.4);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.process-num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 56px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1a1a1a;
  background: #fff;
  display: inline-block;
  padding-right: 14px;
  margin-bottom: 22px;
}

.process-step-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.process-step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: #555;
  line-break: strict;
}

/* ---------- §9 FAQ ---------- */
.section-faq {
  padding: 110px 0 120px;
  background: #f9f5ee;
}

.faq-list {
  max-width: 820px;
  margin: 56px auto 0;
  border-top: 1px solid rgba(26, 26, 26, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 26px 4px 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #1a1a1a;
  transition: color 0.3s ease;
  line-break: strict;
}
.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23c9a961' stroke-width='1.2'><line x1='7' y1='1' x2='7' y2='13'/><line x1='1' y1='7' x2='13' y2='7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.4s ease;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-q:hover {
  color: #c9a961;
}

.faq-a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.95;
  color: #555;
  padding: 0 4px 30px 0;
  line-break: strict;
}

/* ---------- Tablet (<=1024px) ---------- */
@media (max-width: 1024px) {
  .process-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .process-flow::before { display: none; }
  .process-num { font-size: 48px; padding-right: 0; }
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {
  .section-process,
  .section-faq { padding: 72px 0 80px; }

  /* §8: 縦積み + 左側に縦ヘアライン */
  .process-flow {
    grid-template-columns: 1fr;
    gap: 36px;
    position: relative;
    padding-left: 64px;
  }
  .process-flow::before {
    display: block;
    top: 18px;
    bottom: 18px;
    left: 28px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .process-step { padding: 0; }
  .process-num {
    position: absolute;
    left: -64px;
    top: -8px;
    font-size: 32px;
    background: #fff;
    padding: 8px;
    line-height: 1;
  }
  .process-step-title { font-size: 17px; }

  /* §9: 文字サイズ調整 */
  .faq-list { margin-top: 40px; }
  .faq-q {
    font-size: 14px;
    padding: 22px 0;
    gap: 16px;
  }
  .faq-a {
    font-size: 13px;
    padding-bottom: 26px;
  }
}


/* ============================================================
   Stage 6D Part 3 — §10 Contact Form (v7.2)
   ============================================================ */

/* ---------- §10 セクション ---------- */
.section-contact {
  padding: 110px 0 120px;
  background: #fff;
}
.section-inner--narrow {
  max-width: 720px;
}

/* ---------- CF7 wrapper の上書き ---------- */
.section-contact .wpcf7 {
  margin-top: 56px;
}
.section-contact .wpcf7-form { display: block; }

.section-contact .wpcf7-response-output {
  border: 1px solid rgba(26, 26, 26, 0.2) !important;
  background: #fdfbf6 !important;
  padding: 16px 20px !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  color: #1a1a1a !important;
  margin: 24px 0 0 !important;
  border-radius: 0 !important;
}
.section-contact .wpcf7-form.invalid .wpcf7-response-output {
  border-color: rgba(180, 60, 60, 0.4) !important;
  background: #fdf6f6 !important;
  color: #b43c3c !important;
}

/* ---------- フォーム行（reve-form-row） ---------- */
.reve-form-row {
  margin-bottom: 36px;
}
.reve-form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 14px;
  line-height: 1;
}
.reve-form-label .req,
.reve-form-label .opt {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-left: 8px;
  padding: 2px 6px;
  text-transform: none;
}
.reve-form-label .req {
  color: #b43c3c;
  background: rgba(180, 60, 60, 0.08);
}
.reve-form-label .opt {
  color: #888;
  background: rgba(0, 0, 0, 0.04);
}

/* ---------- input / textarea — ヘアライン下線のみ ---------- */
.section-contact input[type="text"],
.section-contact input[type="email"],
.section-contact input[type="tel"],
.section-contact textarea {
  width: 100% !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
  line-height: 1.6 !important;
  color: #1a1a1a !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2) !important;
  border-radius: 0 !important;
  padding: 14px 0 12px !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
}
.section-contact textarea {
  min-height: 140px !important;
  resize: vertical !important;
  border: 1px solid rgba(26, 26, 26, 0.18) !important;
  padding: 16px !important;
}
.section-contact input::placeholder,
.section-contact textarea::placeholder {
  color: rgba(26, 26, 26, 0.35) !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 400 !important;
}
.section-contact input:focus,
.section-contact textarea:focus {
  border-color: #c9a961 !important;
}

/* バリデーションエラー */
.section-contact input.wpcf7-not-valid,
.section-contact textarea.wpcf7-not-valid {
  border-color: #b43c3c !important;
}
.section-contact .wpcf7-not-valid-tip {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  color: #b43c3c !important;
  margin-top: 8px !important;
  display: block !important;
}

/* ---------- ラジオボタン カスタムスタイル ---------- */
.section-contact .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-contact .wpcf7-list-item {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.section-contact .wpcf7-list-item-label {
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  letter-spacing: 0.06em !important;
  color: #1a1a1a !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(26, 26, 26, 0.18) !important;
  background: #fff !important;
  width: 100% !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
  position: relative !important;
}
.section-contact .wpcf7-list-item-label::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid rgba(26, 26, 26, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.section-contact .wpcf7-list-item input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}
.section-contact .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
  border-color: #c9a961 !important;
  background: rgba(201, 169, 97, 0.05) !important;
}
.section-contact .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background: #c9a961;
  border-color: #c9a961;
  box-shadow: inset 0 0 0 2px #fff;
}
.section-contact .wpcf7-list-item-label:hover {
  border-color: rgba(201, 169, 97, 0.5) !important;
}

/* ---------- プライバシーポリシー同意 ---------- */
.reve-form-privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #555;
  margin-bottom: 40px;
}
.reve-form-privacy a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reve-form-privacy a:hover { color: #c9a961; }
.section-contact .wpcf7-acceptance {
  display: inline-block !important;
  margin: 0 !important;
}
.section-contact .wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
}
.section-contact .wpcf7-acceptance input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  accent-color: #c9a961 !important;
}

/* ---------- 送信ボタン ---------- */
.reve-form-submit-wrap {
  text-align: center;
  margin-top: 16px;
}
.section-contact .wpcf7-submit {
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.32em !important;
  color: #fffaf0 !important;
  background: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 0 !important;
  padding: 18px 56px !important;
  cursor: pointer !important;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
  text-transform: uppercase !important;
  position: relative !important;
}
.section-contact .wpcf7-submit:hover {
  background: #c9a961 !important;
  border-color: #c9a961 !important;
}
.section-contact .wpcf7-spinner {
  background-color: #c9a961 !important;
  margin-left: 12px !important;
}

/* ---------- Thanks ページ ---------- */
.thanks-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 24px 160px;
  text-align: center;
}
.thanks-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 18px;
}
.thanks-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.thanks-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.95;
  color: #555;
  margin-bottom: 48px;
}
.thanks-back {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.thanks-back:hover { color: #c9a961; border-color: #c9a961; }

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {
  .section-contact { padding: 72px 0 80px; }
  .section-contact .wpcf7 { margin-top: 40px; }
  .reve-form-row { margin-bottom: 28px; }
  .section-contact .wpcf7-list-item-label {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }
  .section-contact .wpcf7-submit {
    width: 100% !important;
    padding: 18px 24px !important;
    letter-spacing: 0.24em !important;
  }
  .thanks-title { font-size: 22px; }
}


/* ============================================================
   §5 Reviews — モバイル時 5-6 番目を非表示（v7.3）
   ============================================================ */
@media (max-width: 768px) {
  .review-card:nth-child(n+5) {
    display: none;
  }
}


/* ============================================================
   §5 Plan D — CTA カード（v7.5）
   ============================================================ */

.review-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
  border: 1px solid rgba(201, 169, 97, 0.4);
  text-decoration: none;
  padding: 40px 24px;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.review-card--cta:hover {
  border-color: #c9a961;
  background: linear-gradient(180deg, #fff8e8 0%, #fff 100%);
}
.review-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 18px;
}
.review-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.review-cta-arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 28px;
  color: #c9a961;
  transition: transform 0.4s ease;
}
.review-card--cta:hover .review-cta-arrow {
  transform: translateX(8px);
}

/* レビューカード上部の店舗ラベル */
.review-store {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 12px;
}

/* レビュー時刻表示 */
.review-time {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #888;
  margin-top: 6px;
}

/* モバイル: 5 件目以降のレビューを非表示、CTA は維持 */
@media (max-width: 768px) {
  .review-card--cta {
    padding: 32px 20px;
  }
  .review-cta-title { font-size: 15px; }
  .review-card:nth-child(n+5):not(.review-card--cta) { display: none; }
}


/* ============================================================
   /privacy/ ページ — プライバシーポリシー（v7.7）
   ============================================================ */

.privacy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 24px 140px;
}

.privacy-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 18px;
  text-align: center;
}

.privacy-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0 0 32px;
  text-align: center;
}

.privacy-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #333;
  margin-bottom: 64px;
  line-break: strict;
}

.privacy-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.privacy-section p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #555;
  margin: 0 0 16px;
  line-break: strict;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.privacy-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.95;
  color: #555;
  padding: 8px 0 8px 28px;
  position: relative;
  line-break: strict;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 1px;
  background: #c9a961;
}

.privacy-section--contact {
  background: #fdfbf6;
  padding: 36px 32px;
  border: none;
}

.privacy-company {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #1a1a1a;
}

.privacy-company-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.privacy-company-row a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.privacy-company-row a:hover {
  color: #c9a961;
  border-color: #c9a961;
}

.privacy-back-wrap {
  text-align: center;
  margin-top: 48px;
}

.privacy-back {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.privacy-back:hover {
  color: #c9a961;
  border-color: #c9a961;
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {
  .privacy-page {
    padding: 72px 20px 96px;
  }
  .privacy-title {
    font-size: 24px;
  }
  .privacy-h2 {
    font-size: 16px;
  }
  .privacy-section--contact {
    padding: 28px 20px;
  }
}
