:root {
  --bg: #f4f8fb;
  --paper: #ffffff;
  --ink: #16191d;
  --muted: #606873;
  --line: #dce5ee;
  --deep: #08090b;
  --brand: #111418;
  --gold: #b08a36;
  --gold-light: #e7d19a;
  --blue: #8f2735;
  --blue-deep: #6f1c27;
  --soft: #fffaf3;
  --tel: #26323d;
  --shadow: 0 16px 42px rgba(16, 24, 32, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "A-OTF Gothic BBB Pr6N", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background:
    radial-gradient(circle at 18px 18px, rgba(143, 39, 53, 0.16) 0 1px, transparent 2px),
    linear-gradient(120deg, #fff8f2 0%, #f5eadf 48%, #fffdf8 100%);
  background-size: 18px 18px, auto;
  line-height: 1.75;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.desktop-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 16%, rgba(176, 138, 54, 0.16), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(143, 39, 53, 0.11), transparent 34%);
  z-index: -1;
}

.phone-shell {
  width: min(430px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 98px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06), 0 30px 90px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(430px, 100%);
  transform: translateX(-50%);
  z-index: 60;
  min-height: 66px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 229, 238, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 100px;
  height: auto;
}

.brand-text {
  font-size: 12px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.header-menu {
  position: relative;
}

.header-menu summary {
  width: 54px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  place-items: center;
  list-style: none;
  cursor: pointer;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(143, 39, 53, 0.48), rgba(176, 138, 54, 0.45)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(54, 33, 25, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.header-menu summary::-webkit-details-marker {
  display: none;
}

.header-menu summary span {
  width: 23px;
  height: 2px;
  background: #3f3533;
  display: block;
  margin: 2px 0;
  border-radius: 99px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.header-menu summary::after {
  content: "MENU";
  margin-top: 2px;
  color: #6d6260;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}

.header-menu[open] summary,
.header-menu summary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(54, 33, 25, 0.12);
}

.header-menu[open] summary span:nth-child(1) {
  transform: translateY(6px) rotate(35deg);
}

.header-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.header-menu[open] summary span:nth-child(3) {
  transform: translateY(-6px) rotate(-35deg);
}

.header-menu nav {
  position: absolute;
  right: 0;
  top: 52px;
  width: 210px;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.header-menu nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  background: var(--soft);
}

.header-campaign-bar {
  position: fixed;
  top: 66px;
  left: 50%;
  width: min(430px, 100%);
  transform: translateX(-50%);
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 12px;
  background:
    linear-gradient(90deg, rgba(255, 248, 251, 0.98), rgba(255, 255, 255, 0.98), rgba(255, 246, 235, 0.98));
  border-bottom: 1px solid rgba(143, 39, 53, 0.18);
  box-shadow: 0 6px 18px rgba(54, 33, 25, 0.06);
  color: #3f3533;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

.header-campaign-bar span {
  padding: 3px 7px;
  border-radius: 999px;
  background: #8f2735;
  color: #fff;
  font-size: 10px;
}

.header-campaign-bar b {
  color: #8f2735;
}

.header-campaign-bar i {
  color: #b08a36;
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  background: #fff;
}

.hero-art {
  width: 100%;
  height: auto;
}

.cta-pair {
  display: grid;
  gap: 10px;
}

.hero-cta-pair {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 8;
  padding: 16px 22px 24px;
  margin-top: -2px;
  background: linear-gradient(180deg, #ffffff 0%, #fff4f8 100%);
}

.cta-button,
.side-web-button,
.submit-button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.22), 0 10px 22px rgba(16, 24, 32, 0.22);
  animation: cta-float 2.8s ease-in-out infinite;
}

.cta-button::before,
.side-web-button::before,
.submit-button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 38%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: cta-shine 3.4s ease-in-out infinite;
}

.cta-button::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 14px;
  left: 19%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 210px 2px 0 rgba(255, 255, 255, 0.72);
}

.cta-button span,
.side-web-button i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
}

.cta-button--web,
.side-web-button,
.submit-button {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.cta-button--tel,
.fixed-cta-tel {
  background: linear-gradient(135deg, #2d3641, #111418);
}

@keyframes cta-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.012); }
}

@keyframes cta-shine {
  0% { left: -35%; opacity: 0; }
  20% { opacity: 1; }
  48% { left: 105%; opacity: 0; }
  100% { left: 105%; opacity: 0; }
}

.cta-single {
  gap: 0;
}

.cta-button.cta-button--reserve,
.side-web-button,
.fixed-reserve-button {
  min-height: 86px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  grid-template-areas:
    "kicker icon"
    "label icon";
  align-items: center;
  justify-items: center;
  column-gap: 10px;
  padding: 11px 16px 13px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.65), transparent 28%),
    linear-gradient(180deg, #6cf845 0%, #18c75a 42%, #00864a 100%);
  box-shadow:
    inset 0 4px 0 rgba(255, 255, 255, 0.54),
    inset 0 -8px 0 rgba(0, 83, 38, 0.32),
    0 4px 0 #d9d9d9,
    0 9px 0 #7d8580,
    0 18px 28px rgba(0, 90, 50, 0.26);
  text-decoration: none;
  text-shadow: 0 2px 2px rgba(0, 79, 40, 0.32);
  animation: reserve-float 3.4s ease-in-out infinite;
}

.cta-button.cta-button--reserve::before,
.side-web-button::before,
.fixed-reserve-button::before {
  content: "";
  position: absolute;
  inset: -50% auto -50% -34%;
  width: 32%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  animation: cta-shine 3.7s ease-in-out infinite;
}

.cta-button.cta-button--reserve::after,
.fixed-reserve-button::after {
  content: "";
  position: absolute;
  left: 13%;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 225px 3px 0 rgba(255, 255, 255, 0.7);
}

.cta-button.cta-button--reserve small,
.side-web-button small,
.fixed-reserve-button small {
  grid-area: kicker;
  color: #fff23b;
  font-size: clamp(18px, 5vw, 25px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cta-button.cta-button--reserve small em,
.side-web-button small em,
.fixed-reserve-button small em {
  font-style: normal;
  font-size: 1.55em;
  margin: 0 2px;
}

.cta-button.cta-button--reserve b,
.side-web-button b,
.fixed-reserve-button b {
  grid-area: label;
  color: #fff;
  font-size: clamp(30px, 8.4vw, 41px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cta-button.cta-button--reserve i,
.side-web-button i,
.fixed-reserve-button i {
  grid-area: icon;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #009444;
  background: #f7ff28;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 88, 41, 0.32);
  font-size: 23px;
  line-height: 1;
  font-style: normal;
  text-shadow: none;
}

@keyframes reserve-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.reserve-image-link.cta-button,
.reserve-image-link.side-web-button,
.reserve-image-link.fixed-reserve-button {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: block;
  color: inherit;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
  overflow: visible;
  animation: reserve-image-float 3.4s ease-in-out infinite;
}

.reserve-image-link.cta-button::before,
.reserve-image-link.cta-button::after,
.reserve-image-link.side-web-button::before,
.reserve-image-link.fixed-reserve-button::before,
.reserve-image-link.fixed-reserve-button::after {
  display: none;
}

.reserve-cta-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 13px 18px rgba(0, 88, 41, 0.18));
}

@keyframes reserve-image-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

section {
  position: relative;
}

.offer-section,
.change-section,
.voice-section,
.flow-section,
.faq-section,
.contact-section {
  padding: 54px 24px;
}

.offer-section {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 68%);
}

.offer-heading,
.ba-heading,
.review-heading,
.flow-heading,
.plan-heading,
.faq-heading,
.contact-heading,
.features-heading {
  text-align: center;
  margin-bottom: 26px;
}

.offer-heading p,
.ba-heading p,
.review-heading p,
.flow-heading p,
.plan-heading p,
.faq-heading p,
.contact-heading p,
.features-heading p,
.difference-section > p {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 200;
}

.offer-heading h2,
.ba-heading h2,
.review-heading h2,
.flow-heading h2,
.plan-heading h2,
.faq-heading h2,
.contact-heading h2,
.features-heading h2,
.difference-section h2,
.about-content h2,
.problem-intro h2,
.reason-visual h2 {
  margin: 0;
  color: #303841;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

.offer-heading span,
.faq-heading span,
.plan-heading span,
.contact-heading span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.offer-card,
.ba-card,
.review-card,
.plan-panel,
.contact-card,
.reason-body {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(220, 229, 238, 0.85);
}

.offer-card {
  padding: 28px 18px 22px;
  position: relative;
}

.offer-ribbon,
.plan-badge {
  display: inline-flex;
  min-width: 160px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #303841);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(16, 24, 32, 0.18);
}

.offer-card .offer-ribbon {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
}

.offer-price {
  text-align: center;
}

.offer-price p {
  margin: 10px 0 16px;
  font-size: 13px;
  font-weight: 900;
  color: #303841;
}

.offer-price-compare {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 8px;
}

.offer-normal-price,
.offer-trial-price {
  min-height: 110px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.offer-trial-price {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  border-color: transparent;
}

.offer-normal-price span,
.offer-trial-price span {
  font-size: 11px;
  font-weight: 900;
}

.offer-normal-price strong,
.offer-trial-price strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  gap: 2px;
  line-height: 1;
  font-size: clamp(28px, 10vw, 44px);
  font-weight: 900;
}

.offer-normal-price strong small,
.offer-trial-price strong small {
  font-size: 12px;
  white-space: nowrap;
}

.offer-arrow {
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 20px;
}

.offer-price > span {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.offer-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0 18px;
}

.offer-includes div {
  background: linear-gradient(180deg, #fff8fb, #f5eadf);
  border-radius: 8px;
  padding: 14px 6px;
  text-align: center;
  border: 1px solid rgba(143, 39, 53, 0.14);
}

.offer-includes small {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--blue-deep);
  background: #fff;
  font-weight: 900;
  margin-bottom: 7px;
}

.offer-includes b {
  font-size: 11px;
  line-height: 1.45;
}

.check-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 12px;
  font-weight: 800;
  color: #303841;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}

.campaign-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 213, 80, 0.24), transparent 31%),
    radial-gradient(circle at 86% 16%, rgba(143, 39, 53, 0.2), transparent 34%),
    linear-gradient(180deg, #fff6fa 0%, #fff 74%);
}

.campaign-heading h2 {
  color: #22151b;
}

.campaign-card {
  overflow: hidden;
  padding: 34px 16px 22px;
  border: 1px solid rgba(143, 39, 53, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 252, 0.98)),
    #fff;
}

.campaign-card::before,
.campaign-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.campaign-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 9% 11%, rgba(255, 205, 56, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 91% 9%, rgba(143, 39, 53, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 86%, rgba(255, 205, 56, 0.28) 0 2px, transparent 3px);
  opacity: 0.9;
}

.campaign-card::after {
  left: -50px;
  right: -50px;
  bottom: -58px;
  height: 136px;
  background:
    linear-gradient(105deg, rgba(143, 39, 53, 0.12), rgba(255, 205, 56, 0.18), rgba(143, 39, 53, 0.08)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), transparent 62%);
  transform: rotate(-4deg);
}

.campaign-card > * {
  position: relative;
  z-index: 1;
}

.campaign-ribbon {
  min-width: min(310px, calc(100% - 30px));
  min-height: 40px;
  background: linear-gradient(135deg, #8f2735 0%, #6f1c27 52%, #d4a82f 100%);
  box-shadow: 0 14px 24px rgba(185, 31, 86, 0.23);
}

.campaign-card .campaign-ribbon {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: flex;
  margin: -17px auto 18px;
}

.campaign-main-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  padding: 18px 16px;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 205, 56, 0.18), transparent 36%),
    linear-gradient(135deg, #191315 0%, #080607 100%);
  border: 1px solid rgba(212, 168, 47, 0.54);
  box-shadow: 0 18px 30px rgba(34, 21, 27, 0.2);
}

.campaign-main-offer small {
  display: inline-flex;
  margin-bottom: 5px;
  color: #ffd970;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.campaign-main-offer h3 {
  margin: 0;
  font-size: clamp(21px, 6vw, 27px);
  line-height: 1.2;
  font-weight: 900;
}

.campaign-main-offer strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  gap: 3px;
  color: #ffd850;
  font-size: clamp(70px, 21vw, 92px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 18px rgba(255, 216, 80, 0.22);
}

.campaign-main-offer strong small {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0;
}

.campaign-value-card {
  margin-top: 14px;
  padding: 14px 14px 13px;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #fff8e6 100%);
  border: 1px solid rgba(212, 168, 47, 0.5);
  box-shadow: 0 12px 22px rgba(212, 168, 47, 0.13);
}

.campaign-value-card > span {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: 999px;
  color: #fff;
  background: #22151b;
  font-size: 11px;
  font-weight: 900;
}

.campaign-value-card b {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  color: #22151b;
  white-space: nowrap;
}

.campaign-value-card b em {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #8f2735, #6f1c27);
  font-size: 17px;
  font-style: normal;
  line-height: 1;
}

.campaign-value-card b strong {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
  color: #d4a82f;
  font-size: clamp(48px, 14vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.campaign-value-card b strong small {
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: 0;
}

.campaign-value-card p {
  margin: 5px 0 0;
  color: #66595e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

.campaign-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.campaign-benefits article {
  min-height: 104px;
  padding: 13px 9px 12px;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(143, 39, 53, 0.16);
  box-shadow: 0 10px 18px rgba(143, 39, 53, 0.09);
}

.campaign-benefits article:nth-child(2),
.campaign-benefits article:nth-child(3) {
  border-color: rgba(212, 168, 47, 0.42);
  box-shadow: 0 10px 18px rgba(212, 168, 47, 0.11);
}

.campaign-benefits small {
  display: inline-flex;
  justify-content: center;
  min-width: 70px;
  margin-bottom: 7px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #8f2735, #6f1c27);
  font-size: 10px;
  font-weight: 900;
}

.campaign-benefits article:nth-child(2) small,
.campaign-benefits article:nth-child(3) small {
  color: #22151b;
  background: linear-gradient(135deg, #ffe27c, #d4a82f);
}

.campaign-benefits b {
  display: block;
  color: #22151b;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 900;
}

.campaign-store-strip {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(100deg, rgba(143, 39, 53, 0.12), rgba(255, 216, 80, 0.12)),
    #161114;
  border: 1px solid rgba(212, 168, 47, 0.46);
}

.campaign-store-strip span {
  color: #ffd850;
  font-size: 12px;
  font-weight: 900;
}

.campaign-store-strip b {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.campaign-store-strip small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 800;
}

.campaign-check-list {
  margin-top: 16px;
}

.campaign-check-list li {
  color: #22151b;
}

.campaign-check-list li::before {
  background: linear-gradient(135deg, #8f2735, #d4a82f);
}

.offer-cta-pair {
  margin-top: 18px;
}

.campaign-section {
  background:
    radial-gradient(circle at 14% 6%, rgba(255, 212, 86, 0.2), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(143, 39, 53, 0.14), transparent 32%),
    linear-gradient(180deg, #fff3f8 0%, #fffaf0 58%, #fff 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.campaign-section > *:not(.campaign-confetti) {
  position: relative;
  z-index: 1;
}

.campaign-heading {
  position: relative;
  padding-top: 8px;
}

.campaign-heading::before {
  content: "CAMPAIGN";
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  color: rgba(143, 39, 53, 0.075);
  font-family: inherit;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.015em;
  font-weight: 900;
  pointer-events: none;
}

.campaign-heading p {
  position: relative;
  color: #8f2735;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.campaign-heading h2 {
  position: relative;
  color: #4a3c3a;
  font-size: 22px;
  line-height: 1.45;
}

.campaign-heading span {
  position: relative;
  color: #6a5b58;
}

.campaign-card {
  padding: 18px 14px 22px;
  border-radius: 9px;
  border: 2px solid #8f2735;
  background: #fff;
  box-shadow: 0 16px 28px rgba(112, 51, 75, 0.12);
}

.campaign-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 10% 11%, rgba(255, 212, 86, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 15%, rgba(143, 39, 53, 0.2) 0 2px, transparent 3px);
  opacity: 0.72;
}

.campaign-card::after {
  display: none;
}

.campaign-confetti {
  position: absolute;
  inset: -28px 0 0;
  z-index: 2;
  pointer-events: none;
}

.campaign-confetti i {
  position: absolute;
  top: -24px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  background: #ffd456;
  opacity: 0.42;
  animation: confetti-drop 6.4s linear infinite;
}

.campaign-confetti i:nth-child(1) { left: 8%; animation-delay: -0.7s; background: #8f2735; }
.campaign-confetti i:nth-child(2) { left: 19%; animation-delay: -2.4s; transform: rotate(18deg); }
.campaign-confetti i:nth-child(3) { left: 31%; animation-delay: -4.1s; background: #8f2735; }
.campaign-confetti i:nth-child(4) { left: 45%; animation-delay: -1.6s; background: #2f2b2a; }
.campaign-confetti i:nth-child(5) { left: 58%; animation-delay: -3.2s; background: #ffd456; }
.campaign-confetti i:nth-child(6) { left: 72%; animation-delay: -5.1s; background: #f6a7bd; }
.campaign-confetti i:nth-child(7) { left: 84%; animation-delay: -2.9s; background: #8f2735; }
.campaign-confetti i:nth-child(8) { left: 94%; animation-delay: -4.7s; background: #ffd456; }

@keyframes confetti-drop {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  12% { opacity: 0.42; }
  100% { transform: translateY(640px) rotate(260deg); opacity: 0; }
}

.trial-offer-stack {
  display: grid;
  gap: 12px;
}

.trial-offer-card {
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  border: 2px solid #8f2735;
  box-shadow: 0 8px 16px rgba(143, 39, 53, 0.12);
}

.trial-offer-band {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 12px;
  color: #fff;
  background: linear-gradient(90deg, #8f2735 0%, #d62f68 100%);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.trial-offer-body {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px;
  color: #4a3c3a;
  background: #fff;
}

.trial-offer-body--compare {
  gap: 10px;
}

.trial-offer-body span {
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.trial-offer-body i {
  color: #8f2735;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.trial-offer-body .offer-before {
  display: inline-flex;
  align-items: center;
  color: #4a3c3a;
}

.trial-offer-body strong {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
  color: #8f2735;
  font-size: clamp(58px, 18vw, 78px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.trial-offer-body strong small {
  color: #8f2735;
  font-size: 22px;
  letter-spacing: 0;
}

.trial-more {
  margin: 0;
  color: #4a3c3a;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.trial-offer-card--join {
  border-color: #443b39;
  box-shadow: 0 8px 16px rgba(68, 59, 57, 0.13);
}

.trial-offer-card--join .trial-offer-band {
  background: #443b39;
}

.trial-offer-card--join .trial-offer-body strong,
.trial-offer-card--join .trial-offer-body strong small {
  color: #8f2735;
}

.campaign-value-card {
  margin-top: 14px;
  padding: 15px 13px 13px;
  border-radius: 9px;
  background: linear-gradient(180deg, #fffef9 0%, #fff7df 100%);
  border: 1px solid rgba(218, 172, 54, 0.58);
  box-shadow: none;
}

.campaign-value-card > span {
  background: #443b39;
}

.campaign-value-card b {
  gap: 8px;
}

.campaign-value-card b em {
  background: #8f2735;
}

.campaign-value-card b strong {
  color: #d4a82f;
}

.campaign-store-strip {
  background: #443b39;
  border-color: #443b39;
}

.campaign-store-strip span {
  color: #ffd456;
}

.campaign-check-list li::before {
  background: linear-gradient(135deg, #8f2735, #ffd456);
}

@media (prefers-reduced-motion: reduce) {
  .campaign-confetti i {
    animation: none;
    opacity: 0.25;
  }
}

.change-section {
  background: #fff;
}

.ba-heading {
  position: relative;
  padding-top: 8px;
}

.ba-heading::before {
  content: "BEFORE";
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  color: rgba(143, 39, 53, 0.075);
  font-family: inherit;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.015em;
  font-weight: 900;
  pointer-events: none;
  white-space: nowrap;
}

.ba-heading p {
  position: relative;
  color: #8f2735;
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.ba-heading h2 {
  position: relative;
  color: #4a3c3a;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.review-heading {
  position: relative;
  padding-top: 8px;
  margin-bottom: 24px;
}

.review-heading::before {
  content: "VOICE";
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  color: rgba(143, 39, 53, 0.075);
  font-family: inherit;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 900;
  pointer-events: none;
  white-space: nowrap;
}

.review-heading p {
  position: relative;
  color: #8f2735;
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.review-heading h2 {
  position: relative;
  color: #4a3c3a;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.campaign-heading::before,
.ba-heading::before,
.review-heading::before {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  letter-spacing: 0.02em;
}

.ba-dots,
.review-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.ba-dots span,
.review-dots span,
.flow-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7e3ee;
}

.ba-dots .active,
.review-dots .active {
  background: var(--blue);
}

.ba-wrap,
.review-wrap,
.flow-wrap {
  position: relative;
}

.ba-track,
.review-track,
.flow-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ba-track::-webkit-scrollbar,
.review-track::-webkit-scrollbar,
.flow-track::-webkit-scrollbar {
  display: none;
}

.ba-card,
.review-card,
.flow-card {
  scroll-snap-align: start;
}

.ba-card {
  padding: 24px 18px 18px;
}

.ba-card h3 {
  margin: 0 0 4px;
  text-align: center;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.45;
}

.ba-card h3 em {
  font-style: normal;
}

.ba-profile {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
}

.ba-result-lead {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 116px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 213, 80, 0.24), transparent 30%),
    linear-gradient(135deg, #8f2735 0%, #6f1c27 100%);
  box-shadow: 0 14px 28px rgba(185, 31, 86, 0.18);
}

.ba-result-lead span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ba-result-lead strong {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: clamp(48px, 14vw, 62px);
  line-height: 1;
  white-space: nowrap;
}

.ba-result-lead small {
  font-size: 18px;
}

.ba-photos {
  display: grid;
  grid-template-columns: 1fr 22px 1fr;
  gap: 6px;
  align-items: center;
}

.ba-photos figure {
  margin: 0;
}

.ba-photos figcaption {
  text-align: center;
  font-weight: 900;
  font-size: 12px;
  color: #303841;
  margin-bottom: 6px;
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(20, 24, 28, 0.08), rgba(20, 24, 28, 0.02)),
    repeating-linear-gradient(135deg, #eef2f6 0 8px, #e5ebf1 8px 16px);
  color: #65717c;
  border: 1px solid #d9e1e9;
}

.photo-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: 0.06em;
  font-size: 18px;
}

.photo-placeholder span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 900;
}

.ba-triangle {
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  text-align: center;
}

.ba-stats {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.08);
}

.ba-stats th,
.ba-stats td {
  padding: 8px 6px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #edf1f5;
}

.ba-stats thead th,
.ba-stats thead td {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.ba-stats th {
  width: 22%;
  color: #fff;
  background: #4b5560;
}

.ba-stats .after {
  color: var(--blue-deep);
}

.ba-stats .diff {
  color: #fff;
  background: var(--blue);
}

.ba-stats span {
  font-size: 10px;
  margin-left: 1px;
  white-space: nowrap;
}

.ba-result-note,
.ba-source-note {
  margin: 0;
  color: #6b6265;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.65;
}

.ba-source-note {
  margin: 14px 22px 0;
  text-align: center;
}

.ba-comment h4 {
  margin: 14px 0 6px;
  font-size: 17px;
}

.ba-comment p {
  margin: 0;
  font-size: 13px;
  color: #46505a;
  font-weight: 700;
}

.ba-extra {
  display: none;
}

.ba-comment.is-expanded .ba-extra {
  display: inline;
}

.ba-readmore {
  margin: 10px 0 0 auto;
  display: block;
  border: 0;
  color: var(--blue-deep);
  background: transparent;
  font-weight: 900;
}

.ba-nav,
.review-nav,
.flow-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 34px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.13);
}

.ba-prev,
.review-prev,
.flow-prev {
  left: 8px;
}

.ba-next,
.review-next,
.flow-next {
  right: 8px;
}

.voice-section {
  background: #fff;
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-card {
  min-height: 0;
  padding: 18px 16px 16px;
  border: 0;
  border-radius: 8px;
  background: #f7f3f2;
  box-shadow: none;
}

.review-card-head {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.review-avatar {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.review-card h3 {
  margin: 0 0 7px;
  color: #3f3938;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #5c5553;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.review-meta span {
  color: #5c5553;
  font-size: inherit;
  font-weight: inherit;
}

.review-meta em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 22px;
  padding: 2px 9px;
  border: 1px solid rgba(74, 60, 58, 0.35);
  border-radius: 999px;
  color: #5c5553;
  background: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.review-text {
  margin: 0;
  color: #4d4644;
  font-size: 14px;
  line-height: 2.05;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.review-extra {
  display: none;
}

.review-card.is-expanded .review-extra {
  display: inline;
}

.review-more {
  display: block;
  margin: 10px 0 0 auto;
  border: 0;
  padding: 0;
  color: #8f2735;
  background: transparent;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.about-section {
  background: #fff;
}

.about-visual {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -70px;
  height: 130px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 44px;
  font-family: Georgia, "Times New Roman", serif;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

.about-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 54px;
  text-align: center;
}

.about-content > img {
  width: 120px;
  margin: -12px auto 16px;
}

.about-content p {
  margin: 14px 0 24px;
  color: #46505a;
  font-size: 13px;
  font-weight: 700;
}

.point-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.point-grid article {
  overflow: hidden;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.12);
  border: 1px solid #e8edf2;
}

.point-grid img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-bottom: 4px solid var(--blue);
}

.point-grid span {
  display: block;
  padding: 12px 14px 2px;
  color: #a0a8b0;
  font-weight: 900;
  font-size: 12px;
}

.point-grid h3 {
  margin: 0;
  padding: 0 14px 6px;
  font-size: 16px;
  line-height: 1.45;
}

.point-grid p {
  margin: 0;
  padding: 0 14px 18px;
  color: #5d6670;
  font-size: 11px;
  line-height: 1.65;
  font-weight: 800;
}

.facility-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 148px;
  gap: 10px;
  margin: 24px -24px 0;
  padding: 0 24px 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.facility-gallery::-webkit-scrollbar {
  display: none;
}

.facility-gallery figure {
  position: relative;
  overflow: hidden;
  height: 126px;
  margin: 0;
  border-radius: 8px;
  scroll-snap-align: start;
  background: #ede8e6;
  box-shadow: 0 10px 20px rgba(34, 21, 27, 0.12);
}

.facility-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 10px 9px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 16, 0.84));
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
  text-align: left;
}

.trainer-profile-section {
  padding: 44px 22px 104px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-top: 1px solid rgba(176, 138, 54, 0.18);
}

.trainer-profile-heading {
  margin-bottom: 22px;
  text-align: center;
}

.trainer-profile-heading p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  margin: 0 0 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 26px rgba(143, 39, 53, 0.18);
}

.trainer-profile-heading h2 {
  margin: 0;
  color: #30252a;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.trainer-profile-heading span {
  display: block;
  margin-top: 10px;
  color: #62575c;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 800;
}

.trainer-profile-card {
  overflow: hidden;
  border: 1px solid rgba(176, 138, 54, 0.32);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(34, 21, 27, 0.14);
}

.trainer-profile-photo {
  position: relative;
  margin: 0;
  height: 360px;
  background: #08090b;
}

.trainer-profile-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.64));
  pointer-events: none;
}

.trainer-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trainer-profile-copy {
  padding: 24px 20px 26px;
}

.trainer-role {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff4df;
  color: var(--blue-deep);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
}

.trainer-profile-copy h3 {
  margin: 0 0 14px;
  color: #2e2428;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.trainer-profile-copy p {
  margin: 0 0 13px;
  color: #50484d;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 800;
}

.trainer-achievement-box {
  margin-top: 18px;
  padding: 16px 16px 15px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 39, 53, 0.96) 0%, rgba(48, 37, 42, 0.98) 100%);
  color: #fff;
}

.trainer-achievement-box b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trainer-achievement-box ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trainer-achievement-box li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
}

.trainer-achievement-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-light);
  transform: translateY(-50%);
}

.section-cta-band {
  padding: 0 20px 30px;
  background: #fff;
  text-align: center;
}

.section-cta-message {
  position: relative;
  margin: 0 -20px 22px;
  padding: 24px 22px 22px;
  background: linear-gradient(135deg, #8f2735 0%, #d82d68 100%);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.section-cta-message::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 32px;
  height: 18px;
  background: #d82d68;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}

.section-cta-message p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.section-cta-message p:first-child {
  color: #fff56a;
  font-size: 17px;
}

.section-cta-lead {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.section-cta-image-link {
  display: block;
  width: min(100%, 382px);
  margin: 0 auto;
}

.problem-section {
  position: relative;
  padding: 0 0 50px;
  background: #fff;
  text-align: center;
}

.problem-panel {
  position: relative;
  padding: 28px 20px 50px;
  background: #ecebea;
  overflow: visible;
}

.problem-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 100%;
  height: 56px;
  background: #ecebea;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}

.problem-ribbon,
.solution-ribbon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 42px;
  padding: 8px 18px;
  transform: skewX(-15deg);
  background: #3f3d3d;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.problem-ribbon::after,
.solution-ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 24px;
  height: 14px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%) skewX(15deg);
}

.problem-ribbon {
  margin: -8px auto 20px;
}

.problem-ribbon,
.solution-ribbon {
  transform-origin: center;
}

.problem-ribbon,
.solution-ribbon {
  font-style: normal;
}

.problem-ribbon {
  color: #fff;
}

.problem-ribbon > *,
.solution-ribbon > * {
  transform: skewX(15deg);
}

.problem-panel h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: #565050;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

.problem-panel h2 em {
  color: var(--blue);
  font-style: normal;
}

.problem-check-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.problem-check-list li {
  position: relative;
  min-height: 36px;
  padding: 7px 18px 7px 46px;
  border: 1px solid rgba(63, 61, 61, 0.13);
  border-radius: 999px;
  background: #fff;
  color: #555050;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
  box-shadow: inset 0 2px 4px rgba(20, 18, 18, 0.05);
}

.problem-check-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 21px;
  height: 21px;
  border: 2px solid #a9a4a2;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.problem-check-list li::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-65%) rotate(-45deg);
}

.problem-down-arrows {
  position: relative;
  z-index: 3;
  display: grid;
  justify-content: center;
  gap: 2px;
  width: 28px;
  margin: 24px auto -20px;
  animation: problemArrowFloat 1.7s ease-in-out infinite;
}

.problem-down-arrows span {
  position: relative;
  display: block;
  width: 26px;
  height: 10px;
}

.problem-down-arrows span::before,
.problem-down-arrows span::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.problem-down-arrows span::before {
  left: 0;
  transform: rotate(30deg);
  transform-origin: right center;
}

.problem-down-arrows span::after {
  right: 0;
  transform: rotate(-30deg);
  transform-origin: left center;
}

@keyframes problemArrowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.problem-solution {
  position: relative;
  z-index: 2;
  padding: 68px 24px 0;
  background: #fff;
}

.solution-ribbon {
  min-width: 156px;
  min-height: 44px;
  margin: 0 auto 24px;
  background: var(--blue);
  font-size: 16px;
}

.problem-solution h3 {
  margin: 0;
  color: #4d4745;
  font-size: 22px;
  line-height: 1.65;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.problem-solution h3 span {
  color: var(--blue-deep);
  font-family: "A-OTF Gothic BBB Pr6N", "Yu Gothic", sans-serif;
  font-size: 19px;
  letter-spacing: 0.08em;
}

.problem-solution p {
  max-width: 340px;
  margin: 14px auto 0;
  color: #5f5856;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 800;
}

.difference-section {
  position: relative;
  overflow: hidden;
  padding: 58px 24px 64px;
  text-align: center;
  background:
    linear-gradient(180deg, #fff 0%, #fff7fa 48%, #fff 100%);
}

.difference-section::before {
  content: "";
  position: absolute;
  inset: 16px 0 auto;
  height: 220px;
  background:
    radial-gradient(circle at 16% 22%, rgba(218, 45, 105, 0.1), transparent 34%),
    radial-gradient(circle at 90% 4%, rgba(213, 175, 79, 0.16), transparent 28%);
  pointer-events: none;
}

.difference-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.difference-heading p {
  margin: 0;
  color: rgba(218, 45, 105, 0.12);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 52px;
  line-height: 0.82;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.difference-heading span {
  display: inline-block;
  margin: -6px 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.difference-heading h2 {
  margin: 0;
  color: #3d3737;
  font-size: 23px;
  line-height: 1.65;
  font-weight: 900;
}

.difference-lead-card {
  position: relative;
  z-index: 1;
  margin: 0 auto 22px;
  padding: 20px 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(218, 45, 105, 0.16);
  box-shadow: 0 16px 38px rgba(84, 43, 57, 0.1);
}

.difference-lead-card::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -38px auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f8e6a3);
  color: #3d2f0f;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(166, 122, 32, 0.18);
}

.difference-lead-card span {
  display: block;
  color: #3c3838;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 900;
}

.difference-lead-card p {
  margin: 10px 0 0;
  color: #756c6d;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 800;
}

.compare-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.compare-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(218, 45, 105, 0.16);
  box-shadow: 0 14px 34px rgba(50, 39, 44, 0.08);
}

.compare-problem,
.compare-answer {
  text-align: left;
}

.compare-problem {
  padding: 17px 18px 18px;
  background: #f2f0f0;
}

.compare-problem span,
.compare-answer span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.compare-problem span {
  background: #4a4545;
  color: #fff;
}

.compare-problem p {
  margin: 10px 0 0;
  color: #484242;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 900;
}

.compare-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: -13px auto -13px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(218, 45, 105, 0.22);
}

.compare-answer {
  padding: 24px 18px 19px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 251, 0.96)),
    radial-gradient(circle at 92% 10%, rgba(213, 175, 79, 0.12), transparent 30%);
}

.compare-answer span {
  background: rgba(218, 45, 105, 0.12);
  color: var(--blue-deep);
}

.compare-answer h3 {
  margin: 9px 0 8px;
  color: #302b2b;
  font-size: 20px;
  line-height: 1.48;
  font-weight: 900;
}

.compare-answer p {
  margin: 0;
  color: #655d5d;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 800;
}

.common-problem-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f1f1;
  border: 1px solid rgba(70, 61, 63, 0.14);
  box-shadow: 0 18px 42px rgba(50, 39, 44, 0.1);
}

.common-problem-heading {
  padding: 18px 18px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 213, 80, 0.17), transparent 34%),
    linear-gradient(135deg, #332d2e, #1d191a);
}

.common-problem-heading span {
  display: block;
  margin-bottom: 6px;
  color: #ffd968;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.common-problem-heading h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 900;
}

.common-problem-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.common-problem-list article {
  overflow: hidden;
  padding: 0 0 15px;
  border-radius: 8px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(176, 138, 54, 0.2);
}

.common-problem-list figure {
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #fff8ef;
}

.common-problem-list figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-problem-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 14px 14px 0 12px;
}

.common-problem-copy > b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8f2735, #bd1f57);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 7px 14px rgba(190, 31, 87, 0.18);
}

.common-problem-list h4 {
  margin: 0;
  color: #373132;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 900;
}

.common-problem-list p {
  margin: 7px 0 0;
  color: #6a6263;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 700;
}

.common-problem-summary {
  margin: 0;
  padding: 18px 19px 20px;
  color: #544b4d;
  text-align: left;
  background: #fff7e2;
  border-top: 1px solid rgba(213, 175, 79, 0.3);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 800;
}

.common-problem-summary strong {
  color: #c3265d;
  background: linear-gradient(transparent 66%, rgba(255, 217, 89, 0.68) 66%);
}

.method-bridge {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 30px 0 18px;
}

.method-bridge > span {
  color: #5b5254;
  font-size: 13px;
  font-weight: 900;
}

.method-bridge > strong {
  color: #e23570;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  background: linear-gradient(transparent 72%, rgba(255, 215, 73, 0.72) 72%);
}

.method-bridge > div {
  display: grid;
  gap: 2px;
  margin-top: 9px;
  animation: problemArrowFloat 1.7s ease-in-out infinite;
}

.method-bridge i {
  position: relative;
  display: block;
  width: 26px;
  height: 10px;
}

.method-bridge i::before,
.method-bridge i::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 15px;
  height: 3px;
  border-radius: 999px;
  background: #8f2735;
}

.method-bridge i::before {
  left: 0;
  transform: rotate(30deg);
  transform-origin: right center;
}

.method-bridge i::after {
  right: 0;
  transform: rotate(-30deg);
  transform-origin: left center;
}

.w2-method-panel {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  padding: 38px 16px 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
  color: #3b3032;
  border: 1px solid rgba(211, 161, 49, 0.5);
  box-shadow:
    0 18px 40px rgba(116, 67, 83, 0.11),
    inset 0 0 0 5px rgba(255, 255, 255, 0.82);
}

.w2-method-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 22px;
  height: 22px;
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
  border-left: 1px solid rgba(211, 161, 49, 0.78);
  border-top: 1px solid rgba(211, 161, 49, 0.78);
}

.w2-method-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 224, 234, 0.16), transparent 35%),
    linear-gradient(315deg, rgba(211, 161, 49, 0.08), transparent 32%);
}

.w2-method-panel p {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 20px;
  border-radius: 999px;
  margin: 0 0 7px;
  background: linear-gradient(135deg, #8f2735, #f0719a);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(218, 45, 105, 0.2);
}

.method-en {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 0 12px;
  color: #b48522;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.w2-method-panel h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #3a3032;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
}

.w2-method-panel h3 span {
  display: inline-block;
  color: #3a3032;
  white-space: normal;
}

.w2-method-panel h3 small {
  display: block;
  width: max-content;
  margin: 9px auto 0;
  padding: 2px 16px 3px;
  color: #a57618;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
  background: linear-gradient(90deg, transparent, rgba(245, 216, 139, 0.44), transparent);
}

.w2-method-circles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.w2-method-circles article {
  min-width: 0;
  text-align: center;
}

.w2-method-circles figure {
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(211, 161, 49, 0.72);
  box-shadow:
    0 8px 18px rgba(112, 70, 82, 0.12),
    inset 0 0 0 4px #fff;
}

.w2-method-circles img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w2-method-circles h4 {
  margin: 9px 0 4px;
  color: #382f31;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  white-space: nowrap;
}

.w2-method-circles p {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #75696c;
  box-shadow: none;
  font-size: 9px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0;
}

.method-price-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  background: #3a3032;
  color: #fff;
}

.method-price-note span {
  font-size: 10px;
  font-weight: 800;
}

.method-price-note strong {
  color: #f5cf66;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.method-climax {
  position: relative;
  z-index: 2;
  margin-top: 15px;
  padding: 20px 16px 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(143, 39, 53, 0.2);
  box-shadow: 0 10px 24px rgba(105, 67, 78, 0.08);
}

.method-climax > span {
  display: inline-flex;
  padding: 4px 13px;
  border-radius: 999px;
  color: #fff;
  background: #30292b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.method-climax h4 {
  margin: 12px 0 10px;
  color: #362f30;
  font-size: 20px;
  line-height: 1.58;
  font-weight: 900;
}

.method-climax h4 em {
  color: #d92f69;
  font-style: normal;
  font-size: 23px;
  background: linear-gradient(transparent 74%, rgba(245, 207, 102, 0.55) 74%);
}

.method-climax p {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: #645b5d;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  line-height: 1.85;
  font-weight: 800;
  letter-spacing: 0;
}

@media (max-width: 400px) {
  .w2-method-panel h3 {
    font-size: 22px;
  }
}

.reason-section {
  background: #f7fbff;
  padding-bottom: 54px;
}

.reason-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.reason-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84);
}

.reason-visual div {
  position: relative;
  z-index: 2;
  padding: 120px 24px 34px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.76));
}

.reason-visual span {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-light);
}

.reason-visual h2 {
  color: #fff;
  margin-top: 8px;
}

.reason-body {
  margin: -28px 24px 0;
  position: relative;
  z-index: 3;
  padding: 24px 18px;
}

.reason-body p {
  margin: 0 0 18px;
  font-weight: 700;
  color: #3d4650;
}

.reason-body ol,
.feature-body ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.reason-body li,
.feature-body li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff1f6;
  color: #2e3a44;
  font-weight: 900;
  font-size: 13px;
}

.reason-body li span,
.feature-body li span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--gold);
  border: 1px solid var(--gold-light);
}

.features-section {
  padding: 58px 0;
  background: #fff;
}

.features-heading {
  padding: 0 24px;
}

.feature-list {
  display: grid;
  gap: 34px;
}

.feature-step {
  position: relative;
}

.feature-visual {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74);
}

.feature-visual > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}

.feature-visual span {
  color: var(--gold-light);
  font-weight: 900;
}

.feature-visual h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.feature-body {
  margin: -36px 24px 0;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
}

.feature-lead {
  margin: 0 0 18px;
  font-weight: 700;
  color: #424b55;
}

.flow-section {
  background: #f7fbff;
}

.flow-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #e2e9f0;
}

.flow-card span {
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 12px;
}

.flow-card h3 {
  margin: 8px 0;
  font-size: 22px;
}

.flow-card p {
  margin: 0;
  color: #4c5661;
  font-weight: 700;
}

.price-section {
  overflow: hidden;
  padding: 62px 24px 60px;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 138, 54, 0.18), transparent 36%),
    linear-gradient(180deg, #fffaf4 0%, #f6eee8 100%);
}

.price-section .plan-heading {
  position: relative;
  isolation: isolate;
  padding-top: 18px;
  margin-bottom: 32px;
}

.price-section .plan-heading::before {
  content: "PLAN";
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 50%;
  color: rgba(143, 39, 53, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 72px;
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-section .plan-heading p {
  margin-bottom: 8px;
  color: #8f2735;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.price-section .plan-heading h2 {
  font-size: 30px;
  line-height: 1.35;
}

.price-section .plan-heading span {
  margin-top: 16px;
}

.plan-panel {
  padding: 18px 18px 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(30, 18, 22, 0.12);
}

.plan-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
  padding: 3px;
  border-radius: 5px;
  background: rgba(143, 39, 53, 0.12);
  box-shadow: inset 0 2px 8px rgba(143, 39, 53, 0.12);
}

.plan-tabs button {
  min-height: 43px;
  border: 0;
  border-radius: 4px;
  color: #918b8b;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.plan-tabs button.active {
  color: #fff;
  background: linear-gradient(90deg, #8f2735 0%, #c92e64 100%);
  box-shadow: 0 7px 14px rgba(143, 39, 53, 0.24);
}

.plan-content {
  display: grid;
  gap: 20px;
}

.plan-content[hidden] {
  display: none;
}

.plan-card {
  position: relative;
  overflow: visible;
  padding: 0 0 18px;
  border-radius: 8px;
  border: 1px solid #ead7c3;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 20, 22, 0.06);
}

.plan-card.is-recommended,
.plan-card.recommended {
  border: 2px solid #8f2735;
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.96), #fff 40%);
  box-shadow: 0 12px 30px rgba(143, 39, 53, 0.16);
}

.plan-card.is-recommended::before,
.plan-card.recommended::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 38px;
  border-style: solid;
  border-width: 0 15px 18px 0;
  border-color: transparent #8f2735 transparent transparent;
}

.plan-badge {
  min-width: 112px;
  min-height: 30px;
  font-size: 12px;
  position: absolute;
  right: 14px;
  top: -15px;
}

.plan-card h3 {
  margin: 0;
  padding: 13px 54px 12px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, #6f1c27 0%, #8f2735 55%, #b08a36 100%);
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}

.plan-price-block {
  text-align: center;
  padding: 20px 12px 18px;
  background:
    linear-gradient(180deg, rgba(251, 239, 222, 0.9), rgba(255, 255, 255, 0.94));
}

.plan-price-block > span {
  display: block;
  width: min(78%, 230px);
  margin: 0 auto 9px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #b08a36, #d9bb67);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.plan-price-block em {
  font-style: normal;
}

.plan-price-block strong,
.plan-price-block b {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  color: #8f2735;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(42px, 14vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.plan-price-block small {
  margin-left: 2px;
  color: #3f3736;
  font-family: inherit;
  font-size: clamp(15px, 4vw, 19px);
  font-weight: 900;
  white-space: nowrap;
}

.plan-price-block p {
  position: relative;
  display: inline-block;
  margin: 12px 0 4px;
  padding: 0 42px;
  color: #625a59;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.plan-price-block p::before,
.plan-price-block p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #cdbfbc;
}

.plan-price-block p::before {
  left: 0;
}

.plan-price-block p::after {
  right: 0;
}

.plan-price-block .plan-old-note {
  display: block;
  margin: 8px 0 0;
  padding: 0;
  color: #8d8585;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.plan-price-block .plan-old-note::before,
.plan-price-block .plan-old-note::after {
  display: none;
}

.plan-price-block b {
  color: #4a4241;
  font-size: clamp(25px, 8vw, 34px);
}

.plan-price-block b small {
  font-size: clamp(13px, 3.6vw, 16px);
}

.plan-price-block .plan-total {
  color: #8f2735;
  font-size: clamp(27px, 8.4vw, 36px);
}

.plan-price-block .plan-total--zero {
  display: flex;
  margin-top: 9px;
  color: #4a4241;
  font-size: clamp(19px, 5.7vw, 25px);
  line-height: 1.25;
}

.plan-price-block .plan-tax-price,
.plan-price-block .plan-old-price {
  color: #8d8585;
  font-size: clamp(17px, 5.5vw, 23px);
  font-weight: 900;
}

.plan-price-block .plan-tax-price small,
.plan-price-block .plan-old-price small {
  color: #8d8585;
  font-size: clamp(11px, 3.2vw, 14px);
}

.plan-price-block--text strong {
  display: block;
  color: #8f2735;
  font-size: clamp(28px, 8.8vw, 38px);
  line-height: 1.25;
  white-space: normal;
}

.plan-price-block--text strong small {
  display: block;
  margin-top: 6px;
  color: #3f3736;
  font-size: 0.58em;
  line-height: 1.35;
}

.plan-card--long .plan-price-block {
  background:
    radial-gradient(circle at 50% 18%, rgba(191, 152, 82, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 239, 0.94), rgba(255, 255, 255, 0.96));
}

.plan-caption {
  margin: 14px 18px 0;
  color: #5d5555;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.recommend-badge {
  position: absolute;
  z-index: 2;
  left: -16px;
  top: -10px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, #f05a92, #d32e68);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(143, 39, 53, 0.35), 0 9px 20px rgba(30, 18, 22, 0.18);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
}

.recommend-badge--sub {
  background: linear-gradient(145deg, #f2d884, #b08a36);
  box-shadow: 0 0 0 2px rgba(176, 138, 54, 0.35), 0 9px 20px rgba(30, 18, 22, 0.16);
}

.plan-card-spot .plan-price-block p {
  display: block;
  padding: 0;
  line-height: 1.75;
}

.plan-card-spot .plan-price-block p::before,
.plan-card-spot .plan-price-block p::after {
  display: none;
}

.price-note {
  margin: 18px 0 0;
  color: #6e6666;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.75;
}

.price-cta-pair {
  margin-top: 22px;
}

.price-benefit-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.price-benefit-card {
  position: relative;
  overflow: hidden;
  padding: 16px 15px 15px;
  border: 1px solid rgba(176, 138, 54, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff7e6 100%);
  box-shadow: 0 8px 18px rgba(54, 33, 25, 0.07);
  text-align: center;
}

.price-benefit-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  margin-bottom: 8px;
  padding: 3px 14px;
  border-radius: 999px;
  background: #8f2735;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.price-benefit-card h3 {
  margin: 0;
  color: #332d2c;
  font-size: 18px;
  line-height: 1.45;
}

.price-benefit-card h3 strong {
  color: #8f2735;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.45em;
  line-height: 1;
}

.price-benefit-card p {
  margin: 9px 0 0;
  color: #5d5555;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.plan-support-card {
  padding: 0;
}

.plan-support-card--image {
  display: block;
  padding: 0;
  border-color: rgba(176, 138, 54, 0.42);
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}

.plan-support-card--image img {
  display: block;
  width: 100%;
  height: auto;
}

.plan-support-card > span {
  margin-top: 14px;
}

.plan-support-card .plan-price-block {
  padding-top: 4px;
  border-radius: 0 0 8px 8px;
}

.plan-support-card .plan-price-block p {
  display: block;
  margin: 7px 0 0;
  padding: 0;
  color: #6f1c27;
  font-size: 13px;
}

.plan-support-card .plan-price-block p::before,
.plan-support-card .plan-price-block p::after {
  display: none;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 39, 53, 0.11), transparent 40%),
    linear-gradient(180deg, #fff 0%, #fff6fa 100%);
}

.faq-section .faq-heading {
  position: relative;
  isolation: isolate;
  margin-bottom: 30px;
}

.faq-section .faq-heading::before {
  content: "FAQ";
  position: absolute;
  z-index: -1;
  top: -8px;
  left: 50%;
  color: rgba(143, 39, 53, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 82px;
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.faq-section .faq-heading p {
  color: #8f2735;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.faq-section .faq-heading h2 {
  font-size: 30px;
  line-height: 1.35;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid rgba(143, 39, 53, 0.18);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 12px 28px rgba(54, 33, 25, 0.08);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 17px 48px 17px 18px;
  font-weight: 900;
  color: #303841;
  background: linear-gradient(90deg, #fff 0%, #fff7fa 100%);
  line-height: 1.6;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #8f2735, #bf245b);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  vertical-align: middle;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: #8f2735;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px 56px;
  color: #4b5560;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 66px;
  padding-bottom: 108px;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 138, 54, 0.12), transparent 36%),
    linear-gradient(180deg, #fff6fa 0%, #fff 42%, #f7f3f2 100%);
}

.contact-section .contact-heading {
  position: relative;
  isolation: isolate;
  margin-bottom: 30px;
}

.contact-section .contact-heading::before {
  content: "RESERVATION";
  position: absolute;
  z-index: -1;
  top: -6px;
  left: 50%;
  color: rgba(143, 39, 53, 0.07);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 54px;
  font-weight: 200;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.contact-section .contact-heading p {
  color: #8f2735;
  font-size: 18px;
  font-weight: 300;
}

.contact-section .contact-heading h2 {
  font-size: 26px;
}

.contact-card {
  display: grid;
  gap: 17px;
  padding: 24px 20px 22px;
  border-color: rgba(143, 39, 53, 0.18);
  box-shadow: 0 18px 42px rgba(54, 33, 25, 0.12);
}

.contact-card label,
.form-field {
  display: grid;
  gap: 8px;
}

.contact-card label span,
.form-field span {
  font-weight: 900;
  font-size: 13px;
  color: #403938;
}

.contact-card label span::after,
.form-field span::after {
  content: " 必須";
  margin-left: 6px;
  color: #8f2735;
  font-size: 11px;
  font-weight: 900;
}

.contact-card .form-field--optional span::after {
  content: " 任意";
  color: #9b9292;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid #bdb7b6;
  border-radius: 999px;
  padding: 13px 18px;
  background: #fff;
  color: #403938;
  min-height: 52px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 12px rgba(54, 33, 25, 0.05);
}

.contact-card select {
  appearance: none;
  padding-right: 44px;
  background:
    linear-gradient(45deg, transparent 50%, #6d6260 50%) right 21px center / 7px 7px no-repeat,
    linear-gradient(135deg, #6d6260 50%, transparent 50%) right 15px center / 7px 7px no-repeat,
    #fff;
}

.contact-card input[type="date"] {
  color-scheme: light;
}

.form-schedule {
  display: grid;
  gap: 17px;
}

.contact-card textarea {
  min-height: 118px;
  border-radius: 14px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  cursor: pointer;
}

.store-info-block {
  position: relative;
  margin-top: 30px;
  padding: 24px 16px 18px;
  border: 1px solid rgba(143, 39, 53, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 250, 0.96)),
    radial-gradient(circle at 85% 0%, rgba(176, 138, 54, 0.13), transparent 34%);
  box-shadow: 0 18px 42px rgba(54, 33, 25, 0.11);
}

.store-directory-section .store-info-block {
  margin-top: 0;
}

.store-info-block::before {
  display: none;
}

.store-info-heading {
  position: relative;
  margin-bottom: 18px;
  text-align: center;
}

.store-info-heading p {
  color: #8f2735;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.store-info-heading h3 {
  margin-top: 4px;
  color: #332d2c;
  font-size: 24px;
  line-height: 1.35;
}

.store-info-heading span {
  display: block;
  margin-top: 8px;
  color: #6d6260;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.store-list {
  display: grid;
  gap: 10px;
}

.store-card {
  overflow: hidden;
  border: 1px solid rgba(176, 138, 54, 0.26);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(54, 33, 25, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.store-card-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "area area"
    "name badge";
  align-items: center;
  gap: 4px 10px;
  min-height: 76px;
  padding: 11px 52px 11px 15px;
  background: linear-gradient(135deg, #2b2524 0%, #4a3e3d 100%);
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.store-card:not(.is-open) .store-card-head {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  grid-template-areas: "area name badge";
  min-height: 58px;
  padding: 10px 48px 10px 12px;
  gap: 7px;
}

.store-card-head::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.store-card.is-open {
  box-shadow: 0 16px 34px rgba(54, 33, 25, 0.12);
}

.store-card.is-open .store-card-head {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "area"
    "name"
    "badge";
  align-items: start;
  min-height: 102px;
  gap: 6px;
  padding: 13px 52px 13px 15px;
}

.store-card.is-open .store-card-head::after {
  content: "-";
}

.store-card-head span {
  grid-area: area;
  color: #f1c04a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.store-card:not(.is-open) .store-card-head span {
  align-self: center;
  overflow: hidden;
  font-size: 8px;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.store-card-head h4 {
  grid-area: name;
  min-width: 0;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-card.is-open .store-card-head h4 {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.store-card:not(.is-open) .store-card-head h4 {
  align-self: center;
  font-size: 17px;
}

.store-card-head b {
  grid-area: badge;
  justify-self: end;
  position: static;
  padding: 5px 9px;
  border: 1px solid rgba(176, 138, 54, 0.58);
  border-radius: 999px;
  background: #fff;
  color: #8f2735;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(54, 33, 25, 0.1);
}

.store-card.is-open .store-card-head b {
  justify-self: start;
}

.store-card:not(.is-open) .store-card-head b {
  align-self: center;
  max-width: 104px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-card dl {
  display: grid;
  gap: 11px;
  padding: 26px 18px 17px;
}

.store-card:not(.is-open) dl,
.store-card:not(.is-open) .store-map,
.store-card:not(.is-open) .store-map-link {
  display: none;
}

.store-card dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: start;
}

.store-card dt {
  padding-top: 2px;
  color: #b08a36;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.store-card dd {
  color: #403938;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.store-map-wrap {
  position: relative;
  width: 100%;
  height: 172px;
  overflow: hidden;
  border-top: 1px solid rgba(176, 138, 54, 0.2);
  background:
    linear-gradient(135deg, rgba(176, 138, 54, 0.14), rgba(143, 39, 53, 0.08)),
    repeating-linear-gradient(45deg, rgba(176, 138, 54, 0.12) 0 1px, transparent 1px 12px),
    #fffaf1;
}

.store-map-wrap::after {
  content: "GOOGLE MAP";
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(55, 34, 31, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.store-map {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(0.98);
}

.store-map-card {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 22px 18px;
  background:
    linear-gradient(135deg, rgba(143, 39, 53, 0.08), rgba(176, 138, 54, 0.08)),
    repeating-linear-gradient(45deg, rgba(176, 138, 54, 0.12) 0 1px, transparent 1px 12px),
    #fffaf4;
  color: #403938;
  text-align: center;
  filter: none;
}

.store-map-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 13px;
  border-radius: 999px;
  background: #8f2735;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.store-map-card strong {
  font-size: 13px;
  line-height: 1.65;
}

.store-map-link {
  display: grid;
  place-items: center;
  min-height: 42px;
  margin: 0 18px 18px;
  border: 1px solid rgba(143, 39, 53, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #fff6f9);
  color: #8f2735;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(54, 33, 25, 0.07);
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 40;
  width: min(398px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.is-hero-visible .fixed-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}

.is-fixed-cta-muted .fixed-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}

.fixed-cta a {
  min-height: 66px;
  border-radius: 999px;
  color: #fff;
  display: grid;
  font-weight: 900;
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.48),
    inset 0 -7px 0 rgba(0, 83, 38, 0.3),
    0 4px 0 #d9d9d9,
    0 8px 0 #7d8580,
    0 15px 24px rgba(0, 90, 50, 0.24);
}

.thanks-modal {
  border: 0;
  border-radius: 16px;
  padding: 0;
  width: min(340px, calc(100vw - 40px));
  box-shadow: var(--shadow);
}

.thanks-modal::backdrop {
  background: rgba(8, 9, 11, 0.48);
}

.thanks-modal > div {
  padding: 28px 22px;
  text-align: center;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f4f7;
  font-size: 20px;
}

.thanks-modal h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.thanks-modal p {
  margin: 0 0 18px;
  color: #4b5560;
  font-weight: 700;
}

.thanks-modal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.side-panel {
  position: fixed;
  z-index: 8;
  display: none;
}

.side-panel-right {
  top: 146px;
  right: max(22px, calc((100vw - 430px) / 2 - 320px));
  width: 248px;
}

.side-menu {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.side-menu a {
  min-height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #303841);
  font-weight: 900;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.18);
}

.side-offer-card {
  text-align: center;
  background: #fff;
  border: 3px solid var(--gold);
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: var(--shadow);
}

.side-offer-card span {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.side-offer-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.side-offer-card p {
  margin: 0;
  font-size: 12px;
  color: #5c6570;
  font-weight: 900;
}

.side-offer-card b {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: var(--blue-deep);
  font-size: 42px;
  line-height: 1;
  margin-top: 8px;
  white-space: nowrap;
}

.side-offer-card small {
  font-size: 14px;
  white-space: nowrap;
}

.side-web-button {
  margin-top: 16px;
  min-height: 72px;
  font-size: 14px;
}

.side-web-button small {
  font-size: 13px;
}

.side-web-button b {
  font-size: 24px;
}

.side-web-button i {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.fixed-reserve-button small {
  font-size: 16px;
}

.fixed-reserve-button b {
  font-size: 28px;
}

.fixed-reserve-button i {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

/* IDEY later-section polish: keep the Katagiri-style rhythm after the difference block. */
.features-section {
  overflow: hidden;
  padding: 60px 0 64px;
  background:
    linear-gradient(180deg, #fff 0%, #fff8f2 54%, #fff 100%);
}

.features-heading {
  position: relative;
  margin: 0 0 30px;
  padding: 0 24px;
  text-align: center;
}

.features-heading::before {
  content: "FEATURES";
  position: absolute;
  left: 50%;
  top: -18px;
  color: rgba(143, 39, 53, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.02em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.features-heading p,
.flow-heading p {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.features-heading h2,
.flow-heading h2 {
  position: relative;
  z-index: 1;
  color: #3f3939;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
}

.features-heading span,
.flow-heading span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 13px;
  color: #696060;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.feature-list {
  gap: 38px;
}

.feature-step {
  position: relative;
  padding-bottom: 18px;
}

.feature-step::before,
.feature-step::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background: #e4c6cf;
  transform: translateX(-50%);
}

.feature-step::before {
  top: -30px;
  height: 38px;
}

.feature-step::after {
  bottom: -28px;
  height: 38px;
}

.feature-step:first-child::before,
.feature-step:last-child::after {
  display: none;
}

.feature-visual {
  height: 224px;
}

.feature-visual img {
  filter: saturate(0.92) brightness(0.92);
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, rgba(20, 16, 18, 0.26), rgba(20, 16, 18, 0.78));
}

.feature-visual > div {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 24px 28px;
  transform: translateY(-18px);
}

.feature-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0;
  color: #fff;
  background: transparent;
  border-radius: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.66);
}

.feature-visual h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.78), 0 1px 0 rgba(0, 0, 0, 0.45);
}

.feature-body {
  margin: -34px 24px 0;
  border: 1px solid rgba(143, 39, 53, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(44, 30, 36, 0.12);
}

.feature-lead {
  color: #454040;
  font-size: 14px;
  line-height: 1.75;
}

.feature-body li {
  background: #fff1f6;
  color: #3e393a;
}

.feature-body li span {
  color: var(--blue-deep);
  border-color: rgba(143, 39, 53, 0.28);
}

.feature-body p:not(.feature-lead) {
  margin: 17px 0 0;
  color: #665b5d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.features-cta-band {
  background: #fff;
  padding-top: 6px;
}

.flow-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 64px;
  background:
    radial-gradient(circle at 14% 2%, rgba(143, 39, 53, 0.2), transparent 30%),
    linear-gradient(180deg, #33272a 0%, #50333c 100%);
}

.flow-section::before {
  content: "TRIAL FLOW";
  position: absolute;
  left: 50%;
  top: 24px;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.flow-heading {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.flow-heading p {
  color: #f9c5d5;
}

.flow-heading h2 {
  color: #fff;
}

.flow-heading span {
  color: rgba(255, 255, 255, 0.8);
}

.flow-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 22px;
}

.flow-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.flow-dots .active {
  background: #ffe889;
}

.flow-wrap {
  position: relative;
  z-index: 1;
  padding: 0 26px;
}

.flow-card {
  flex: 0 0 100%;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  border-radius: 16px;
  background: #fff8fa;
  border: 1px solid rgba(246, 198, 212, 0.72);
  box-shadow: 0 18px 34px rgba(20, 12, 9, 0.22);
}

.flow-visual {
  position: relative;
  height: 174px;
  overflow: hidden;
  background: #f8d6e0;
}

.flow-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(51, 36, 42, 0.02), rgba(51, 36, 42, 0.48)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 5px);
}

.flow-visual span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  display: inline-grid;
  place-items: center;
  min-width: 92px;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(80, 38, 47, 0.22);
}

.flow-card-body {
  position: relative;
  padding: 22px 20px 24px;
}

.flow-card-body::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -22px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(248, 214, 224, 0.34);
}

.flow-card-body small {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.flow-card-body h3 {
  position: relative;
  z-index: 1;
  margin: 9px 0 10px;
  color: #47393d;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.flow-card-body p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #675a5d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.85;
}

.flow-card-body b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 17px;
  padding: 0 14px;
  color: var(--blue-deep);
  background: #f5eadf;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.flow-nav {
  color: #fff;
  background: rgba(143, 39, 53, 0.86);
}

.campaign-section--repeat {
  padding-top: 62px;
}

.campaign-note {
  margin: 16px 0 0;
  color: #766a6d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.7;
}

.campaign-bottom-cta-band {
  padding-top: 0;
  background: #fff;
}

@media (min-width: 1060px) {
  .side-panel-right {
    display: block;
  }
}

@media (max-width: 430px) {
  .phone-shell {
    padding-top: 100px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .header-campaign-bar {
    top: 68px;
  }

  .brand-logo {
    width: 96px;
  }

  .brand-text {
    font-size: 11px;
  }

  .hero-cta-pair {
    padding: 14px 20px 22px;
  }

  .cta-button {
    min-height: 56px;
    font-size: 15px;
  }

  .offer-section,
  .change-section,
  .voice-section,
  .flow-section,
  .faq-section,
  .contact-section,
  .price-section,
  .difference-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offer-price-compare {
    grid-template-columns: 1fr 22px 1fr;
    gap: 6px;
  }

  .offer-normal-price strong,
  .offer-trial-price strong {
    font-size: clamp(27px, 10vw, 40px);
  }

  .problem-card > div {
    gap: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .point-grid img {
    height: 106px;
  }

  .fixed-cta {
    bottom: 10px;
  }
}


/* IDEY template replacement overrides */
:root {
  --bg: #f5efe7;
  --paper: #ffffff;
  --ink: #201712;
  --muted: #6f625b;
  --line: #eadbca;
  --deep: #1d100c;
  --brand: #2a1710;
  --gold: #bf9852;
  --gold-light: #efd9a5;
  --blue: #8f2735;
  --blue-deep: #6f1c27;
  --soft: #fff9f1;
  --tel: #372119;
  --shadow: 0 16px 42px rgba(54, 33, 25, 0.14);
}

body {
  background:
    radial-gradient(circle at 18px 18px, rgba(191, 152, 82, 0.15) 0 1px, transparent 2px),
    linear-gradient(120deg, #fffaf5 0%, #f6eadf 48%, #fffdf9 100%);
}

.desktop-bg {
  background:
    radial-gradient(circle at 24% 18%, rgba(191, 152, 82, 0.17), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(143, 39, 53, 0.10), transparent 32%);
}

.brand-logo {
  width: 118px;
  max-height: 44px;
  object-fit: contain;
  background: #2d180f;
  border-radius: 4px;
}

.brand-text {
  font-size: 10px;
  color: var(--brand);
}

.header-campaign-bar {
  color: #3d2418;
}

.hero {
  background: #1e120e;
}

.hero-art {
  width: 100%;
  height: auto;
}

.hero-cta-pair {
  margin-top: 0;
  padding: 12px 24px 18px;
  position: relative;
  z-index: 4;
  background: #fff;
}

.blog-preview-section {
  padding: 26px 0 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(191, 152, 82, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-top: 1px solid rgba(191, 152, 82, 0.18);
  border-bottom: 1px solid rgba(191, 152, 82, 0.16);
}

.blog-preview-heading {
  padding: 0 24px;
  margin-bottom: 14px;
  text-align: center;
}

.blog-preview-heading p {
  margin: 0 0 5px;
  color: var(--blue-deep);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.blog-preview-heading h2 {
  margin: 0;
  color: #2a1710;
  font-size: 21px;
  line-height: 1.38;
  font-weight: 900;
}

.blog-preview-heading span {
  display: block;
  margin-top: 8px;
  color: #725f55;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 800;
}

.blog-preview-wrap {
  overflow: hidden;
}

.blog-preview-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, calc(100% - 52px));
  gap: 12px;
  overflow-x: auto;
  padding: 0 24px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.blog-preview-track::-webkit-scrollbar {
  display: none;
}

.blog-card {
  scroll-snap-align: center;
}

.blog-card a {
  min-height: 138px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.96)),
    #fff;
  border: 1px solid rgba(191, 152, 82, 0.42);
  box-shadow: 0 14px 24px rgba(54, 33, 25, 0.09);
}

.blog-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-date {
  color: #9a7b46;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.blog-copy em {
  width: fit-content;
  margin-top: 7px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #8f2735, #bf9852);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.blog-copy h3 {
  margin: 8px 0 0;
  color: #2a1710;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 900;
}

.blog-copy p {
  margin: 7px 0 0;
  color: #715f55;
  font-size: 11px;
  line-height: 1.62;
  font-weight: 800;
}

.blog-card figure {
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  background: #2a1710;
  box-shadow: inset 0 0 0 1px rgba(191, 152, 82, 0.26);
}

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

.blog-card img[src$="handsfree-support-image2-v1.png"] {
  object-position: 54% center;
}

.blog-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
}

.blog-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(191, 152, 82, 0.34);
  transition: width 0.2s ease, background 0.2s ease;
}

.blog-dots span.active {
  width: 20px;
  background: #8f2735;
}

.offer-section,
.change-section,
.voice-section,
.flow-section,
.faq-section,
.price-section,
.difference-section {
  background-color: #fffaf4;
}

.review-avatar {
  background: #fff7ed;
}

.method-price-note strong,
.campaign-value-card strong,
.campaign-value-card em,
.plan-price-block strong,
.ba-result-lead strong {
  white-space: nowrap;
}

.facility-gallery figure img,
.point-grid article img,
.feature-visual img,
.flow-visual img,
.common-problem-list figure img,
.w2-method-circles figure img {
  object-fit: cover;
}

.point-grid img[src$="trainer-physique.jpg"],
.feature-visual img[src$="trainer-physique.jpg"],
.w2-method-circles img[src$="trainer-physique.jpg"] {
  object-position: center 18%;
}

.flow-visual img[src$="building-exterior.jpg"] {
  object-position: center 34%;
}

.store-info-heading::after,
.store-info-heading::before {
  display: none !important;
}

.section-cta-lead {
  color: var(--blue-deep);
}

@media (max-width: 390px) {
  .hero-cta-pair {
    margin-top: 0;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Client revision: male premium IDEY tone and Coming Soon BA */
.campaign-section {
  background:
    radial-gradient(circle at 14% 6%, rgba(191, 152, 82, 0.22), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(143, 39, 53, 0.11), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #fff 74%);
}

.campaign-card {
  border-color: rgba(191, 152, 82, 0.66);
  box-shadow: 0 16px 28px rgba(54, 33, 25, 0.1);
}

.campaign-heading::before,
.ba-heading::before,
.review-heading::before,
.price-section .plan-heading::before,
.faq-heading::before {
  color: rgba(191, 152, 82, 0.12);
}

.campaign-heading p,
.ba-heading p,
.review-heading p,
.price-section .plan-heading p,
.faq-heading p {
  color: var(--blue-deep);
}

.campaign-confetti i:nth-child(6) {
  background: #bf9852;
}

.ba-card--coming {
  padding: 22px 15px 18px;
}

.ba-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0 12px;
}

.ba-coming-grid figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 8px;
  background: #211815;
  box-shadow: inset 0 0 0 1px rgba(191, 152, 82, 0.22);
}

.ba-coming-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.ba-coming-grid figcaption {
  position: absolute;
  left: 6px;
  bottom: 6px;
  min-width: 44px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #211815;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.06em;
}

.ba-result-lead--coming {
  min-height: 104px;
  background:
    radial-gradient(circle at 82% 18%, rgba(191, 152, 82, 0.28), transparent 30%),
    linear-gradient(135deg, #2a1710 0%, #6f1c27 100%);
}

.ba-result-lead--coming strong {
  align-items: center;
  gap: 8px;
  color: #f6d986;
  font-size: clamp(34px, 10vw, 48px);
  letter-spacing: 0.02em;
}

.ba-result-lead--coming small {
  color: #fff;
  font-size: 0.45em;
  letter-spacing: 0.04em;
}

.facility-gallery img[src$="protein-powder.jpg"] {
  object-position: center;
}

.point-grid img[src$="nutrition-support-image2-v1.png"] {
  object-position: center 52%;
}

.feature-visual img[src$="meal-official-client-127006.jpg"] {
  object-position: center 48%;
}

.feature-visual img[src$="handsfree-support-image2-v1.png"] {
  object-position: center 52%;
}

.w2-method-circles img[src$="food-support.jpg"] {
  object-position: center 48%;
}

.flow-visual img[src$="treadmill-support.jpg"] {
  object-position: center 35%;
}

.flow-visual img[src$="flow-training-squat-client.jpg"] {
  object-position: center 42%;
}

.common-problem-list figure img[src$="problem-rebound-male-image2-v3.png"] {
  object-position: center 42%;
}

.common-problem-list figure img[src$="problem-measurement-male-image2-v3.png"] {
  object-position: center 44%;
}

.common-problem-list figure img[src$="problem-price-male-image2-v3.png"] {
  object-position: center 47%;
}

.recommend-badge {
  background: linear-gradient(145deg, #d6b55e, #8f2735);
  box-shadow: 0 0 0 2px rgba(191, 152, 82, 0.36), 0 9px 20px rgba(30, 18, 22, 0.18);
}

.plan-card.is-recommended,
.plan-card.recommended {
  border-color: #bf9852;
  box-shadow: 0 12px 30px rgba(191, 152, 82, 0.18);
}

.plan-card.is-recommended::before,
.plan-card.recommended::before {
  border-color: transparent #bf9852 transparent transparent;
}

.price-benefit-card > span,
.trial-offer-band {
  background: linear-gradient(90deg, #6f1c27 0%, #8f2735 62%, #bf9852 100%);
}
