/* ============================
   Bansou LP - Wine Red Design
   ============================ */

:root {
  --wine-main: #722F37;
  --wine-dark: #4A1C23;
  --wine-light: #F5EFEF;
  --gold: #C9A961;
  --gold-dark: #A8893F;
  --line-green: #06C755;
  --line-green-dark: #05A648;
  --bg-main: #FAF8F6;
  --text-main: #1A1A1A;
  --text-sub: #555555;
  --border: #E8E0DC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--wine-dark);
  letter-spacing: 0.05em;
}

/* ===== Hamburger ===== */
.hamburger {
  background: var(--wine-main);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  z-index: 200;
  position: relative;
}
.hamburger:hover { background: var(--wine-dark); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}
body.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Nav Overlay ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--wine-dark), var(--wine-main));
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  overflow-y: auto;
}
body.menu-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-close:hover { background: rgba(255, 255, 255, 0.2); }
.nav-list {
  display: grid;
  gap: 4px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 40px;
}
.nav-list li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.nav-list li a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  padding-left: 32px;
}
.nav-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
}
.nav-cta {
  background: var(--line-green);
  color: #fff;
  padding: 20px 48px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.4);
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--line-green-dark);
  transform: translateY(-2px);
}
body.menu-open { overflow: hidden; }

/* ========== FV ========== */
.fv {
  position: relative;
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse at top right, rgba(114, 47, 55, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.08), transparent 60%),
    var(--bg-main);
  overflow: hidden;
}
.fv::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(114, 47, 55, 0.04) 50%);
  pointer-events: none;
}
.fv-inner { position: relative; z-index: 1; text-align: center; }
.fv-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--wine-main);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.fv-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--wine-dark);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.fv-title-accent {
  display: inline-block;
  position: relative;
  color: var(--wine-main);
}
.fv-title-accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 6px;
  background: var(--gold);
  border-radius: 3px;
}
.fv-lead {
  font-size: 18px;
  line-height: 2;
  color: var(--text-sub);
  margin-bottom: 40px;
}
.fv-lead strong { color: var(--wine-main); font-weight: 900; }
.fv-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.fv-points li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--wine-dark);
  box-shadow: 0 2px 8px rgba(74, 28, 35, 0.04);
}
.fv-cta-wrap { margin-bottom: 64px; }

.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--line-green);
  color: #fff;
  padding: 24px 56px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.35);
  transition: all 0.3s;
  border: 3px solid var(--line-green);
  max-width: 100%;
}
.cta-btn:hover {
  background: var(--line-green-dark);
  border-color: var(--line-green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(6, 199, 85, 0.45);
}
.cta-main { font-size: 20px; line-height: 1.4; }
.cta-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  font-weight: 700;
}
.cta-sub-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cta-sub-line::before,
.cta-sub-line::after {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}
.cta-dot {
  display: inline-block;
  font-size: 6px;
  vertical-align: middle;
  opacity: 0.7;
  margin: 0 2px;
}
.cta-btn-large { padding: 32px 80px; }
.cta-btn-large .cta-main { font-size: 24px; }

.fv-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.badge {
  background: #fff;
  border: 2px solid var(--wine-main);
  border-radius: 16px;
  padding: 24px 32px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(74, 28, 35, 0.08);
}
.badge-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: var(--wine-main);
  margin-bottom: 8px;
}
.badge-num small { font-size: 24px; margin-left: 4px; }
.badge-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ========== Common Section ========== */
.section { padding: 120px 0; }
.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold); }
.section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--wine-dark);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.section-title.light { color: #fff; }
.section-lead {
  font-size: 17px;
  line-height: 2;
  text-align: center;
  color: var(--text-sub);
  margin-bottom: 48px;
}
.accent-text { color: var(--wine-main); position: relative; display: inline-block; }
.negative-text { color: var(--text-sub); font-size: 0.85em; }

/* ========== Trouble ========== */
.section-trouble { background: var(--wine-light); }
.trouble-list {
  max-width: 700px;
  margin: 0 auto 48px;
  display: grid;
  gap: 16px;
}
.trouble-list li {
  background: #fff;
  padding: 20px 24px 20px 64px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--wine-dark);
  position: relative;
  box-shadow: 0 4px 16px rgba(74, 28, 35, 0.06);
}
.trouble-list li::before {
  content: '✓';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--wine-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}
.trouble-message {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--wine-dark);
  line-height: 1.9;
}
.trouble-message strong { color: var(--wine-main); font-size: 1.1em; }

/* ========== Ideal ========== */
.ideal-list {
  max-width: 700px;
  margin: 0 auto 32px;
  display: grid;
  gap: 16px;
}
.ideal-list li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--wine-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(74, 28, 35, 0.04);
  border-radius: 8px;
}
.ideal-list li span {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}
.ideal-arrow {
  text-align: center;
  font-weight: 900;
  color: var(--gold-dark);
  font-size: 18px;
  margin: 32px 0;
  letter-spacing: 0.1em;
}
.ideal-conclusion {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--wine-dark);
  line-height: 1.8;
}
.ideal-conclusion strong { color: var(--wine-main); }

/* ========== Cause ========== */
.section-cause { background: var(--wine-light); }
.cause-arrow {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--wine-main);
  margin: 32px 0;
}
.cause-answer {
  background: var(--wine-dark);
  color: #fff;
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 64px;
}
.cause-answer p {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  line-height: 1.6;
}
.cause-answer strong { color: var(--gold); }
.cause-examples {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(74, 28, 35, 0.06);
}
.cause-examples-title {
  font-weight: 900;
  font-size: 18px;
  color: var(--wine-dark);
  margin-bottom: 24px;
  text-align: center;
}
.cause-examples ul { display: grid; gap: 12px; margin-bottom: 32px; }
.cause-examples li {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}
.cause-examples li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--wine-main);
  font-weight: 900;
}
.cause-examples li em { font-style: normal; color: var(--wine-main); }
.cause-conclusion {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--wine-dark);
  border-top: 2px solid var(--border);
  padding-top: 24px;
}

/* ========== Mochi ========== */
.section-mochi { background: var(--bg-main); }
.mochi-body { max-width: 760px; margin: 0 auto; }
.mochi-body p {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 32px;
  color: var(--text-sub);
}
.mochi-body strong { color: var(--wine-main); font-weight: 900; }
.mochi-fail {
  background: var(--wine-light);
  padding: 32px;
  border-radius: 8px;
  margin: 40px 0;
}
.mochi-fail p:first-child {
  font-size: 18px;
  font-weight: 900;
  color: var(--wine-dark);
  line-height: 2;
  margin-bottom: 16px;
}
.mochi-fail-note {
  font-size: 15px !important;
  color: var(--text-sub) !important;
  margin-bottom: 0 !important;
}
.mochi-conclusion {
  background: var(--wine-dark);
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 48px;
}
.mochi-conclusion p {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 900;
  margin: 0 !important;
}
.mochi-conclusion strong { color: var(--gold) !important; }

/* ========== Service ========== */
.section-service { background: var(--wine-light); }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 48px;
}
.service-list li {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--wine-dark);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.service-list li:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.service-conclusion {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--wine-dark);
  line-height: 1.8;
}
.service-conclusion strong { color: var(--wine-main); }

/* ========== Parts ========== */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.parts-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(74, 28, 35, 0.04);
  transition: all 0.3s;
}
.parts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74, 28, 35, 0.1);
  border-color: var(--gold);
}
.parts-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.parts-card h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--wine-dark);
  margin-bottom: 4px;
}
.parts-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--wine-main);
  margin-bottom: 16px;
}
.parts-card > p:last-child {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
}
.parts-card strong { color: var(--wine-dark); font-weight: 900; }
.parts-conclusion {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  color: var(--text-sub);
  max-width: 700px;
  margin: 0 auto;
}
.parts-conclusion strong { color: var(--wine-main); font-weight: 900; font-size: 1.1em; }

/* ========== Result ========== */
.section-result { background: var(--wine-light); }
.result-list {
  max-width: 700px;
  margin: 0 auto 48px;
  display: grid;
  gap: 12px;
}
.result-list li {
  background: #fff;
  padding: 18px 24px 18px 60px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--wine-dark);
  position: relative;
  border: 1px solid var(--border);
}
.result-list li::before {
  content: '★';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 18px;
}
.result-conclusion {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--wine-dark);
}
.result-conclusion strong { color: var(--wine-main); }

/* ========== Case ========== */
.case-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(74, 28, 35, 0.06);
  border: 1px solid var(--border);
}
.case-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.case-tag {
  background: var(--wine-main);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.case-result {
  font-size: 22px;
  font-weight: 900;
  color: var(--wine-dark);
}
.case-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--wine-main);
  font-size: 56px;
  margin: 0 4px;
  line-height: 1;
  vertical-align: -8px;
}
.case-text {
  color: var(--wine-main);
}
.case-tags {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.case-highlight {
  background: var(--wine-light);
  color: var(--wine-dark);
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 17px;
  text-align: center;
  margin-bottom: 24px;
}
.case-card blockquote {
  font-size: 15px;
  line-height: 2;
  color: var(--text-sub);
  background: var(--bg-main);
  padding: 24px 28px;
  border-radius: 8px;
}
.case-card strong { color: var(--wine-main); font-weight: 900; }

/* ========== Reason ========== */
.section-reason { background: var(--wine-light); }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.reason-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.reason-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: var(--wine-main);
  line-height: 1;
  margin-bottom: 16px;
}
.reason-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--wine-dark);
  margin-bottom: 16px;
}
.reason-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-sub);
}
.reason-note {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 2px dashed var(--gold);
  text-align: center;
}
.reason-note p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
}
.reason-note p:first-child {
  font-size: 19px;
  color: var(--wine-dark);
  margin-bottom: 16px;
}
.reason-note strong { color: var(--wine-main); font-weight: 900; }

/* ========== Flow ========== */
.flow-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.flow-list li {
  display: flex;
  gap: 32px;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  align-items: center;
  position: relative;
}
.flow-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 60px;
  bottom: -16px;
  width: 2px;
  height: 16px;
  background: var(--gold);
  z-index: 1;
}
.flow-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: var(--wine-main);
  text-align: center;
  flex-shrink: 0;
  width: 80px;
  letter-spacing: 0.1em;
}
.flow-num span {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  margin-top: 4px;
}
.flow-body h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--wine-dark);
  margin-bottom: 4px;
}
.flow-body p {
  font-size: 14px;
  color: var(--text-sub);
}

/* ========== LINE ========== */
.section-line {
  background: linear-gradient(135deg, var(--wine-dark), var(--wine-main));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15), transparent 50%);
}
.line-inner { position: relative; z-index: 1; text-align: center; }
.line-lead {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 48px;
  opacity: 0.9;
}
.line-gift-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 48px 32px;
  max-width: 600px;
  margin: 0 auto 48px;
  backdrop-filter: blur(10px);
}
.line-gift-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.line-gift-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}
.line-gift-desc {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.9;
}

/* ========== Vision ========== */
.section-vision { background: var(--bg-main); }
.vision-lead {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 900;
  text-align: center;
  color: var(--wine-main);
  line-height: 1.8;
  margin-bottom: 64px;
}
.vision-body { max-width: 760px; margin: 0 auto; }
.vision-body p {
  font-size: 17px;
  line-height: 2.1;
  color: var(--text-sub);
  margin-bottom: 32px;
}
.vision-body strong { color: var(--wine-main); font-weight: 900; }
.vision-list {
  background: var(--wine-light);
  padding: 32px 40px;
  border-radius: 12px;
  margin: 40px 0;
  display: grid;
  gap: 12px;
}
.vision-list li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--wine-dark);
  font-weight: 700;
  padding-left: 24px;
  position: relative;
}
.vision-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* ========== Limited ========== */
.section-limited {
  background: var(--wine-dark);
  color: #fff;
  text-align: center;
}
.section-limited .section-title { color: #fff; }
.limited-lead {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 32px;
  opacity: 0.9;
}
.limited-lead strong { color: var(--gold); }
.limited-warning {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.9;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  margin-top: 32px;
}
.limited-warning strong { color: var(--gold); }

/* ========== FAQ ========== */
.section-faq { background: var(--wine-light); }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 16px; }
.faq-list > div {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.faq-list dt {
  font-weight: 900;
  font-size: 17px;
  color: var(--wine-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}
.faq-list dd {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* ========== Final CTA ========== */
.section-final {
  background:
    radial-gradient(ellipse at top, rgba(114, 47, 55, 0.05), transparent 60%),
    var(--bg-main);
}
.final-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  text-align: center;
  color: var(--wine-dark);
  line-height: 1.5;
  margin-bottom: 48px;
}
.final-body {
  max-width: 720px;
  margin: 0 auto 64px;
}
.final-body p {
  font-size: 17px;
  line-height: 2.1;
  color: var(--text-sub);
  margin-bottom: 24px;
}
.final-body strong { color: var(--wine-main); font-weight: 900; }
.final-cta-wrap { text-align: center; }
.final-note {
  font-size: 14px;
  color: var(--text-sub);
  margin-top: 32px;
  line-height: 1.9;
}

/* ========== Footer ========== */
.footer {
  background: var(--wine-dark);
  color: #fff;
  padding: 64px 0 32px;
  text-align: center;
}
.footer-logo {
  justify-content: center;
  margin-bottom: 20px;
}
.footer-logo .logo-img {
  height: 88px;
  border-radius: 12px;
}
.footer-logo .logo-text {
  color: #fff;
  font-size: 22px;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  opacity: 0.85;
}
.footer-copy {
  font-size: 12px;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

/* ========== Fixed CTA ========== */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--line-green);
  color: #fff;
  text-align: center;
  padding: 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
  z-index: 99;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 80px 0; }
  .fv { padding: 60px 0 80px; }
  .logo-img { height: 42px; }
  .logo-text { font-size: 16px; }
  .hamburger { width: 46px; height: 46px; }
  .nav-list li a { font-size: 16px; padding: 16px 20px; }
  .cta-btn { padding: 20px 28px; }
  .cta-btn-large { padding: 24px 28px; }
  .cta-main { font-size: 17px; }
  .cta-btn-large .cta-main { font-size: 19px; }
  .cta-sub-line { font-size: 11px; gap: 8px; }
  .cta-sub-line::before, .cta-sub-line::after { width: 12px; }

  /* スマホでの不自然改行を防ぐためフォントを縮小 */
  .fv-title { font-size: 30px; line-height: 1.4; }
  .fv-lead { font-size: 15px; }
  .section-title { font-size: 24px; line-height: 1.6; margin-bottom: 32px; }
  .section-eyebrow { font-size: 12px; }
  .section-lead { font-size: 15px; }
  .final-title { font-size: 24px; line-height: 1.6; }
  .vision-lead { font-size: 17px; }
  .cause-answer p { font-size: 20px; }
  .mochi-conclusion p { font-size: 17px !important; }
  .ideal-conclusion, .service-conclusion, .result-conclusion { font-size: 18px; }
  .case-result { font-size: 18px; }
  .case-num { font-size: 36px; }
  .fv-points { gap: 8px; }
  .fv-points li { font-size: 12px; padding: 8px 14px; }
  .fv-badges { gap: 12px; }
  .badge { min-width: 140px; padding: 16px 20px; }
  .badge-num { font-size: 48px; }
  .cta-btn { padding: 20px 32px; }
  .cta-main { font-size: 17px; }
  .cta-btn-large { padding: 24px 32px; }
  .cta-btn-large .cta-main { font-size: 19px; }

  .service-list { grid-template-columns: 1fr; }
  .case-card { padding: 32px 24px; }
  .case-head { flex-direction: column; align-items: flex-start; }
  .case-num { font-size: 44px; }
  .cause-examples { padding: 32px 24px; }
  .flow-list li { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  .flow-list li:not(:last-child)::after { display: none; }
  .vision-list { padding: 24px; }
  .fixed-cta { display: block; }
  body { padding-bottom: 80px; }
}
