:root {
  --bg: #070b12;
  --panel: #101722;
  --panel-soft: #151f2d;
  --panel-deep: #090e17;
  --text: #f7f1e6;
  --muted: #a9afba;
  --primary: #d7b56d;
  --primary-strong: #c69a45;
  --accent: #6e55c8;
  --line: rgba(215, 181, 109, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 6%, rgba(110, 85, 200, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(215, 181, 109, 0.1), transparent 28rem),
    linear-gradient(180deg, #070b12 0%, #0d1420 46%, #070b12 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

/* index_1.html 专用字体体系：更商务、更有高端夜店品牌感。 */
.font-brand-page {
  font-family: "Noto Serif JP", serif;
}

.font-brand-page h1,
.font-brand-page h2,
.font-brand-page h3,
.font-brand-page .pain-title,
.font-brand-page .section-title,
.font-brand-page .contact-section h2,
.font-brand-page .section-heading h2,
.font-brand-page .bridge-copy h2,
.font-brand-page .trial-card h2,
.font-brand-page .final-cta h2 {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.font-brand-page .logo-sub,
.font-brand-page .brand-en,
.font-brand-page .app-shot-header span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.font-brand-page .eyebrow,
.font-brand-page .section-label {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.font-brand-page .button,
.font-brand-page .nav,
.font-brand-page .contact-form,
.font-brand-page .contact-method,
.font-brand-page .privacy-box,
.font-brand-page .simple-flow,
.font-brand-page .store-tree,
.font-brand-page .store-tree-head small,
.font-brand-page .footer-info,
.font-brand-page .footer-info p,
.font-brand-page .footer-info address,
.font-brand-page .footer-button,
.font-brand-page input,
.font-brand-page textarea {
  font-family: "Noto Serif JP", serif;
}

.font-brand-page .hero .button {
  font-size: clamp(14px, 0.72vw, 20px);
}

.font-brand-page .hero-note {
  color: rgba(247, 241, 230, 0.78);
  font-size: clamp(12px, 0.62vw, 18px);
  font-weight: 600;
}

.font-brand-page .pain-bubble {
  background: rgba(7, 11, 18, 0.9);
  backdrop-filter: none;
}

.font-brand-page .pain-bubble h3 {
  color: rgba(247, 241, 230, 0.96);
  font-weight: 700;
}

.font-brand-page .pain-bubble p {
  color: rgba(247, 241, 230, 0.82);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 14px max(16px, calc((100% - 1120px) / 2));
  border-bottom: 1px solid rgba(215, 181, 109, 0.12);
  background: rgba(7, 11, 18, 0.68);
  backdrop-filter: blur(16px);
}

.logo,
.nav,
.hero-actions,
.sales-stats,
.footer {
  display: flex;
  align-items: center;
}

.logo {
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.logo-mark {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(215, 181, 109, 0.72);
  border-radius: 12px;
  background: linear-gradient(135deg, #e5c982, var(--primary-strong));
  overflow: hidden;
  box-shadow: none;
}

.logo-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.logo-kanji {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 4px 0 auto;
  z-index: 1;
  color: #080b11;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.logo-moon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 20px;
  fill: #070b12;
}

.logo-sub {
  display: grid;
  place-items: center;
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: 3;
  height: 8px;
  color: var(--primary);
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.nav {
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: var(--primary);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

main > .section:not(.hero) {
  margin-top: 82px;
  padding: 78px 36px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
}

main > .section:not(.hero):nth-of-type(odd) {
  background: rgba(13, 20, 32, 0.9);
}

main > .section:not(.hero):nth-of-type(even) {
  background: rgba(9, 14, 23, 0.96);
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  padding: 0;
  text-align: left;
  background: #0a0711;
  box-shadow: inset 0 -40px 54px rgba(7, 11, 18, 0.62);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 11, 18, 0.64), rgba(7, 11, 18, 0.08), rgba(7, 11, 18, 0.16)),
    linear-gradient(180deg, rgba(7, 11, 18, 0.01), rgba(7, 11, 18, 0.44));
  pointer-events: none;
}

.hero-bg-image {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.04) saturate(1.02);
}

.hero-content {
  position: relative;
  grid-area: 1 / 1;
  align-self: start;
  z-index: 2;
  width: clamp(460px, 32vw, 700px);
  margin-top: clamp(34px, 4vw, 112px);
  margin-left: calc(max(24px, calc((100vw - 1120px) / 4)) + 1vw);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(215, 181, 109, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: clamp(28px, 1.8vw, 52px);
  font-size: clamp(34px, 3.2vw, 88px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.58);
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.pain-title {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.pain-title-line {
  display: block;
  white-space: nowrap;
}

.question-mark {
  display: inline-block;
  margin-left: 6px;
  color: var(--primary);
  font-size: 1.28em;
  line-height: 0.8;
  transform: rotate(8deg) translateY(0.04em);
  text-shadow: 0 0 18px rgba(215, 181, 109, 0.22);
}

.title-accent {
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14em;
  font-style: italic;
  letter-spacing: -0.02em;
}

.hero-lead,
.section-heading p,
.highlight-copy p,
.store-panel p,
.sales-copy p,
.trial-card p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.hero-lead {
  max-width: 760px;
  margin: 0 0 clamp(34px, 2.1vw, 64px);
  color: rgba(247, 241, 230, 0.94);
  font-size: clamp(14px, 1.18vw, 30px);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.62);
  word-break: keep-all;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(36px, 1.35vw, 54px);
  padding: 0 clamp(16px, 0.82vw, 30px);
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: clamp(14px, 0.72vw, 20px);
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #080b11;
  background: linear-gradient(135deg, #e4c77f, var(--primary-strong));
  box-shadow: 0 10px 24px rgba(215, 181, 109, 0.16);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(215, 181, 109, 0.34);
  background: transparent;
}

.hero-actions {
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(247, 241, 230, 0.78);
  font-size: clamp(12px, 0.62vw, 18px);
  font-weight: 600;
  text-shadow: 0 5px 14px rgba(0, 0, 0, 0.48);
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(215, 181, 109, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 0%, rgba(215, 181, 109, 0.12), transparent 20rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before,
.highlight-section::before,
.trial-card::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(110, 85, 200, 0.16);
  filter: blur(12px);
}

.phone {
  position: relative;
  z-index: 1;
  width: min(300px, 82%);
  padding: 22px;
  border: 10px solid #07040b;
  border-radius: 20px;
  background: linear-gradient(180deg, #151f2d, #090e17);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.phone-header,
.metric-row,
.bottle-card,
.pain-card,
.feature-card,
.role-card,
.dashboard,
.trial-card,
.contact-panel,
.contact-method,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 13px;
  border-radius: 14px;
}

.phone-header strong {
  color: #d8c176;
  font-size: 12px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 12px;
}

.bottle-card {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.14), rgba(110, 85, 200, 0.08));
}

.bottle-card small,
.bottle-card span,
.pain-card p,
.feature-card p,
.role-card p,
.contact-method p,
.privacy-box p,
.faq-list p {
  color: var(--muted);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.pain-section .section-heading {
  margin-left: 0;
  text-align: left;
}

#features .section-heading {
  margin-left: 0;
  text-align: left;
}

.role-section .section-heading {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.flow-section .section-heading {
  margin-left: 0;
  text-align: left;
}

.faq-section .section-heading {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.contact-section .section-heading {
  max-width: 1040px;
  min-height: 260px;
  padding: 56px 28px 42px;
  border: 1px solid rgba(215, 181, 109, 0.16);
  border-radius: 20px 20px 0 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 14, 0.16), rgba(5, 8, 14, 0.34)),
    radial-gradient(ellipse at 50% 45%, rgba(7, 11, 18, 0.72) 0%, rgba(7, 11, 18, 0.42) 34%, rgba(7, 11, 18, 0.12) 68%, rgba(7, 11, 18, 0.28) 100%),
    url("../images/contact-bg.png");
  background-position: center top;
  background-size: 100% auto;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.contact-section .section-heading p {
  color: rgba(247, 241, 230, 0.72);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.contact-section .eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.contact-section .eyebrow::after {
  content: none;
}

.contact-section h2 {
  font-family: inherit;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.contact-section {
  position: relative;
}

.pain-grid,
.feature-grid,
.role-grid,
.flow-grid {
  display: grid;
  gap: 18px;
}

.pain-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-card,
.feature-card,
.role-card {
  padding: 24px;
  border-radius: 18px;
}

.pain-card span,
.feature-card span,
.flow-grid span {
  color: var(--primary);
  font-weight: 900;
}

.pain-layout {
  max-width: 980px;
  margin: 0 auto;
}

.pain-visual {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(215, 181, 109, 0.16);
  border-radius: 20px;
  background: #070b12;
  overflow: visible;
}

.pain-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.04), rgba(7, 11, 18, 0.34)),
    radial-gradient(circle at 28% 18%, rgba(215, 181, 109, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 100%, rgba(7, 11, 18, 0.55), transparent 18rem);
  pointer-events: none;
}

.pain-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.pain-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  width: min(310px, 38%);
  padding: 18px 20px;
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 16px;
  background: rgba(7, 11, 18, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  animation: painFloat 5.8s ease-in-out infinite;
}

.pain-bubble-reservation {
  top: 46px;
  left: 28px;
}

.pain-bubble-bottle {
  top: auto;
  right: -116px;
  bottom: 292px;
  left: auto;
  width: min(290px, 36%);
  animation-delay: -1.2s;
}

.pain-bubble-ledger {
  bottom: 28px;
  left: 64px;
  animation-delay: -2.4s;
}

.pain-bubble-sync {
  right: 74px;
  bottom: 26px;
  animation-delay: -3.6s;
}

.pain-bubble > span {
  color: rgba(215, 181, 109, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pain-bubble h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.pain-bubble p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

@keyframes painFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pain-bubble,
  .feature-arrow-badge {
    animation: none;
  }
}

.highlight-section,
.sales-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
}

.bridge-section {
  position: relative;
  display: block;
  margin-top: 64px !important;
  margin-bottom: -24px;
  padding: 48px 36px 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible;
}

.bridge-section::before {
  content: none;
}

.bridge-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.bridge-copy {
  max-width: 920px;
}

.bridge-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.bridge-flow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 24px 0 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bridge-flow span {
  width: auto;
  padding: 0;
  color: rgba(247, 241, 230, 0.78);
  background: transparent;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.bridge-flow strong {
  color: var(--primary);
  line-height: 1;
  transform: rotate(-90deg);
}

.operations-section {
  overflow: hidden;
}

.operations-section .section-heading {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.keep-bottle-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  padding: 30px 42px 42px;
  border: 1px solid rgba(215, 181, 109, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 181, 109, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.app-shot-placeholder {
  display: grid;
  gap: 14px;
  width: min(330px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 10px solid #070b12;
  border-radius: 24px;
  background: linear-gradient(180deg, #151f2d, #090e17);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.app-shot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.app-shot-header strong {
  color: var(--primary);
}

.app-search {
  padding: 12px 14px;
  border: 1px solid rgba(215, 181, 109, 0.18);
  border-radius: 12px;
  color: rgba(247, 241, 230, 0.72);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.app-bottle-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.app-bottle-card.active {
  border-color: rgba(215, 181, 109, 0.38);
  background: rgba(215, 181, 109, 0.12);
}

.app-bottle-card span {
  color: var(--text);
  font-weight: 900;
}

.app-bottle-card strong {
  color: var(--muted);
  font-size: 13px;
}

.keep-bottle-copy p {
  color: var(--muted);
  font-size: 17px;
}

.feature-badge-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-badge-line .point-badge {
  margin-bottom: 0;
}

.feature-arrow-badge {
  position: absolute;
  top: -14px;
  left: 72px;
  padding: 8px 22px 8px 24px;
  color: #080b11;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(135deg, #fff0aa 0%, #d7b56d 42%, #9f7b31 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(72, 49, 12, 0.38),
    0 8px 20px rgba(215, 181, 109, 0.18);
  clip-path: polygon(0 50%, 15px 0, 100% 0, 100% 100%, 15px 100%);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform: rotate(-35deg);
  transform-origin: left center;
  animation: recommendArrowNudge 1.8s ease-in-out infinite;
}

.feature-arrow-badge::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(7, 11, 18, 0.62);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

@keyframes recommendArrowNudge {
  0%,
  100% {
    transform: rotate(-35deg) translateX(0);
  }

  50% {
    transform: rotate(-35deg) translateX(-3px);
  }
}

/* 亮点编号：小型金色竖牌，像会员编号牌一样克制地标记重点。 */
.point-badge {
  display: inline-grid;
  gap: 8px;
  justify-items: center;
  min-width: 38px;
  margin-bottom: 16px;
  color: var(--primary);
  background: none;
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.point-badge::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(215, 181, 109, 0.72);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.feature-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(215, 181, 109, 0.26);
  border-radius: 12px;
  color: var(--primary);
  background: rgba(7, 11, 18, 0.4);
  font-size: 13px;
  font-weight: 800;
}

.support-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.support-feature-card {
  display: grid;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(215, 181, 109, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

/* 02 流程卡：压缩文案与流程间距，减少中间空白 */
.support-feature-card--flow {
  gap: 16px;
  align-content: start;
}

.keep-bottle-copy h3,
.support-feature-card h3 {
  margin-bottom: 18px;
}

.support-feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.simple-flow {
  --flow-gap: 26px;
  --flow-node-width: 68px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--flow-gap);
  margin-top: 24px;
  padding: 4px 4px 0;
}

/* 贯穿四个节点的细连接线 */
.simple-flow::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 38px;
  z-index: 0;
  width: calc((var(--flow-node-width) + var(--flow-gap)) * 3);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 181, 109, 0.18) 8%,
    rgba(215, 181, 109, 0.55) 50%,
    rgba(215, 181, 109, 0.18) 92%,
    transparent
  );
}

.flow-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 var(--flow-node-width);
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.flow-icon-halo {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 181, 109, 0.14) 0%, rgba(215, 181, 109, 0.02) 58%, transparent 72%);
  box-shadow: 0 0 28px rgba(215, 181, 109, 0.1);
}

.flow-node em {
  min-width: 52px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--panel-soft);
  box-shadow: inset 0 0 0 1px rgba(215, 181, 109, 0.08);
  font-style: normal;
}

.flow-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  color: var(--primary);
}

/* 日历：带日期格与挂环 */
.flow-icon-calendar {
  border: 1.5px solid currentColor;
  border-radius: 6px;
}

.flow-icon-calendar::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 4px;
  left: 4px;
  height: 14px;
  border-top: 1.5px solid currentColor;
  box-shadow:
    0 5px 0 -3px currentColor,
    0 10px 0 -3px currentColor;
}

.flow-icon-calendar::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 9px;
  width: 10px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

/* 女性头像：长发轮廓 */
.flow-icon-woman::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.flow-icon-woman::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 0;
  left: 5px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 12px 12px 4px 4px;
}

/* 餐盘 + 刀叉 */
.flow-icon-plate::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.flow-icon-plate::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 6px;
  width: 2px;
  height: 18px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: -5px 2px 0 currentColor;
}

/* 会計：收据/收银 */
.flow-icon-checkout {
  border: 1.5px solid currentColor;
  border-radius: 5px;
}

.flow-icon-checkout::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  left: 6px;
  height: 16px;
  border-top: 1.5px solid currentColor;
  box-shadow:
    0 4px 0 -2px currentColor,
    0 8px 0 -2px currentColor,
    0 12px 0 -2px currentColor;
}

.flow-icon-checkout::after {
  content: "¥";
  position: absolute;
  top: 7px;
  left: 50%;
  color: currentColor;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.store-tree {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(7, 11, 18, 0.48);
  font-family: "Noto Sans JP", monospace;
  font-weight: 800;
}

.store-tree strong {
  color: var(--primary);
}

.store-tree-symbol {
  color: var(--primary);
}

.store-tree-child {
  margin-left: 34px;
}

.store-tree-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.store-tree-head small {
  color: rgba(247, 241, 230, 0.54);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.highlight-section {
  position: relative;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.1), rgba(110, 85, 200, 0.07));
  overflow: hidden;
}

.bottle-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.bottle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 11, 18, 0.52);
}

.bottle-item.active {
  color: #080b11;
  background: linear-gradient(135deg, #e4c77f, var(--primary-strong));
}

.process-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.process-line div {
  min-width: 120px;
  padding: 18px 24px;
  border-radius: 14px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  background: var(--panel-soft);
}

.process-line span {
  color: var(--primary);
  font-size: 26px;
  font-weight: 900;
}

.store-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--primary);
  font-weight: 900;
}

.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-stats {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.sales-stats div {
  min-width: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.sales-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.sales-stats strong {
  font-size: 24px;
}

.dashboard {
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 230px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(7, 11, 18, 0.58);
}

.bar-chart span {
  flex: 1;
  min-width: 22px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.chart-bottom {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
}

.donut {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 48%, var(--accent) 48% 80%, #738095 80% 100%);
  box-shadow: inset 0 0 0 32px #101722;
}

.chart-bottom ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.legend {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}

.legend.drink {
  background: var(--primary);
}

.legend.bottle {
  background: var(--accent);
}

.legend.service {
  background: #738095;
}

.trial-card,
.final-cta {
  position: relative;
  padding: 54px;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.trial-card {
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.11), rgba(255, 255, 255, 0.035));
}

.trial-card > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.trial-card p,
.final-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.flow-grid {
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 14px;
}

.flow-grid div {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 148px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.flow-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(215, 181, 109, 0.12);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding: 26px;
  border: 1px solid rgba(215, 181, 109, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(180deg, rgba(8, 13, 22, 0.78), rgba(5, 8, 14, 0.88));
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  top: -35%;
  right: 14%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.12), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.contact-info,
.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.contact-method {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid rgba(215, 181, 109, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(4, 8, 15, 0.62);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  text-align: center;
  overflow: hidden;
}

.contact-method::before {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  color: var(--primary);
  border: 1px solid rgba(215, 181, 109, 0.2);
  border-radius: 50%;
  background: rgba(215, 181, 109, 0.055);
  font-size: 21px;
  line-height: 1;
}

.contact-method:first-child::before {
  content: "☎";
}

.contact-method:nth-child(2)::before {
  content: "✉";
}

.contact-method:first-child::after,
.contact-method:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 190, 0.68) 0 1px, rgba(255, 244, 190, 0.28) 3px, transparent 6px);
  box-shadow:
    0 0 8px 2px rgba(255, 232, 160, 0.14),
    10px 10px 22px 8px rgba(215, 181, 109, 0.1),
    24px 22px 46px 14px rgba(215, 181, 109, 0.055);
  pointer-events: none;
}

.contact-method h3,
.privacy-box h3,
.privacy-box h4 {
  margin-top: 0;
}

.contact-method h3 {
  position: relative;
  margin-bottom: 26px;
  color: var(--text);
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-method h3::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -14px;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.phone-number {
  display: grid;
  gap: 2px;
  margin: 0 0 20px;
  color: transparent;
  background:
    linear-gradient(180deg, #fff6c5 0%, #d8b05e 36%, #8f6422 58%, #f0d28a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Arial", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  text-shadow:
    0 1px 0 rgba(255, 247, 215, 0.22),
    0 2px 4px rgba(0, 0, 0, 0.42);
}

.contact-method p {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 6px;
  color: rgba(247, 241, 230, 0.68);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  text-align: left;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
  padding: 30px;
  border: 1px solid rgba(215, 181, 109, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(10, 15, 25, 0.8), rgba(4, 8, 14, 0.72)),
    rgba(7, 11, 18, 0.66);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 241, 230, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: rgba(247, 241, 230, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04)),
    rgba(3, 6, 11, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 22px rgba(0, 0, 0, 0.14);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form input {
  min-height: 54px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 181, 109, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.048)),
    rgba(3, 6, 11, 0.48);
  box-shadow:
    0 0 0 3px rgba(215, 181, 109, 0.1),
    0 14px 26px rgba(0, 0, 0, 0.18);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.required {
  display: inline-flex;
  margin-left: 8px;
  padding: 1px 9px;
  border: 1px solid rgba(215, 181, 109, 0.52);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(215, 181, 109, 0.055);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.form-full {
  grid-column: 1 / -1;
}

.privacy-agree {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: -4px;
  margin-bottom: -6px;
  padding: 0 2px;
  color: rgba(247, 241, 230, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.privacy-agree input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex: 0 0 15px;
  width: 15px;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  min-height: 15px;
  max-height: 15px;
  padding: 0;
  border: 1px solid rgba(247, 241, 230, 0.76);
  border-radius: 2px;
  background: transparent;
}

.privacy-agree input:checked {
  border-color: var(--primary);
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.2 5.1 8.3 9.2 3.7' fill='none' stroke='%23080b11' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.privacy-agree input:checked::after {
  content: none;
}

.privacy-box {
  max-height: 240px;
  overflow: auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.032);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.privacy-box::-webkit-scrollbar {
  width: 8px;
}

.privacy-box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.privacy-box::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #f2d98d, var(--primary-strong));
}

.privacy-box h3 {
  color: var(--primary);
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.privacy-box h4 {
  margin-bottom: 8px;
  color: rgba(247, 241, 230, 0.88);
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.privacy-box p {
  margin-bottom: 14px;
  color: rgba(247, 241, 230, 0.68);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-form .button-primary {
  position: relative;
  border: 1px solid rgba(255, 239, 181, 0.42);
  border-radius: 8px;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(135deg, #f2d98d 0%, #d7b56d 46%, #ad8432 100%);
  box-shadow:
    0 12px 26px rgba(215, 181, 109, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(77, 52, 12, 0.35);
}

.contact-form .button-primary::after {
  content: "›";
  position: absolute;
  right: 20px;
  color: rgba(8, 11, 17, 0.72);
  font-size: 24px;
  line-height: 1;
}

.final-cta {
  margin-bottom: 54px;
  border: 1px solid rgba(215, 181, 109, 0.26);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 181, 109, 0.14), transparent 24rem),
    var(--panel);
}

.footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--muted);
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(215, 181, 109, 0.18), rgba(215, 181, 109, 0.24) 48%, rgba(255, 239, 181, 0.78) 50%, rgba(215, 181, 109, 0.24) 52%, rgba(215, 181, 109, 0.18)),
    radial-gradient(circle at 14% 10%, rgba(215, 181, 109, 0.1), transparent 22rem),
    radial-gradient(circle at 92% 100%, rgba(110, 85, 200, 0.08), transparent 20rem),
    linear-gradient(180deg, #05070c 0%, rgba(7, 11, 18, 0.86) 46%, #0b111b 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px, auto, auto, auto;
  background-position: top, center, center, center;
  overflow: hidden;
}

.footer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 150px;
  height: 3px;
  background:
    radial-gradient(ellipse 7px 3px at 50% 50%, rgba(255, 244, 190, 0.98) 0%, rgba(255, 239, 181, 0.72) 28%, rgba(215, 181, 109, 0.22) 58%, transparent 74%),
    linear-gradient(90deg, transparent 0%, rgba(255, 239, 181, 0.12) 34%, rgba(255, 239, 181, 0.36) 50%, rgba(255, 239, 181, 0.12) 66%, transparent 100%);
  box-shadow: 0 0 8px rgba(215, 181, 109, 0.32);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 18px);
  opacity: 0.32;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(360px, 1.48fr);
  gap: 54px;
  align-items: start;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 28px;
  font-size: 15px;
}

.footer-brand-block {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-tagline {
  position: relative;
  margin: 0;
  padding-top: 28px;
  color: rgba(215, 181, 109, 0.92);
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.footer-tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(300px, 34vw);
  height: 1px;
  background:
    radial-gradient(ellipse 7px 3px at 40% 50%, rgba(255, 244, 190, 0.98), rgba(215, 181, 109, 0.22) 58%, transparent 74%),
    linear-gradient(90deg, rgba(215, 181, 109, 0.58), rgba(215, 181, 109, 0.34) 38%, rgba(215, 181, 109, 0.08) 78%, transparent);
  box-shadow: 0 0 8px rgba(215, 181, 109, 0.24);
}

.footer-info {
  display: grid;
  row-gap: 22px;
  justify-items: start;
  text-align: left;
  margin-left: 28px;
}

.footer-label {
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-info p,
.footer-info address {
  margin: 0;
  color: rgba(247, 241, 230, 0.86);
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
  line-height: 2;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.footer-info address {
  margin-bottom: 10px;
}

.footer-copy {
  grid-column: 1 / -1;
  display: grid;
  justify-items: end;
  color: rgba(247, 241, 230, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.footer-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 250px);
  min-height: 56px;
  margin-top: 0;
  padding: 0 28px;
  border: 1px solid rgba(215, 181, 109, 0.78);
  border-radius: 10px;
  color: var(--primary);
  background:
    radial-gradient(circle at 50% 100%, rgba(215, 181, 109, 0.12), transparent 42%),
    rgba(7, 11, 18, 0.38);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-button::before {
  content: "";
  position: absolute;
  right: 22%;
  bottom: -1px;
  left: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 160, 0.86), transparent);
  box-shadow: 0 0 10px rgba(215, 181, 109, 0.38);
}

.footer-button::after {
  content: "›";
  margin-left: 24px;
  color: rgba(215, 181, 109, 0.88);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.footer-button:hover {
  border-color: rgba(255, 226, 153, 0.92);
  background:
    radial-gradient(circle at 50% 100%, rgba(215, 181, 109, 0.18), transparent 46%),
    rgba(215, 181, 109, 0.055);
  box-shadow:
    0 0 0 1px rgba(215, 181, 109, 0.12),
    0 14px 28px rgba(215, 181, 109, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .pain-layout,
  .bridge-section,
  .keep-bottle-feature,
  .highlight-section,
  .sales-section,
  .store-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    width: min(620px, 72vw);
    margin-top: clamp(28px, 6vw, 62px);
    margin-left: 28px;
  }

  h1 {
    white-space: normal;
    font-size: clamp(24px, 5vw, 48px);
  }

  .pain-grid,
  .feature-grid,
  .role-grid,
  .support-feature-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .section {
    padding: 58px 0;
  }

  .contact-section .section-heading p {
    white-space: normal;
  }

  .pain-title-line {
    white-space: normal;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    width: min(100%, 520px);
    margin-top: 28px;
    margin-left: 22px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(20px, 7vw, 34px);
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: clamp(11px, 3.8vw, 16px);
  }

  .hero-note {
    margin-top: 16px;
    font-size: 10px;
  }

  .hero-card {
    min-height: 460px;
    border-radius: 18px;
  }

  .pain-layout {
    gap: 32px;
  }

  .pain-visual {
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 14px;
    overflow: visible;
  }

  .pain-photo {
    min-height: 300px;
    border-radius: 14px;
  }

  .pain-bubble {
    position: static;
    width: 100%;
    grid-template-columns: 38px 1fr;
    padding: 16px;
    animation: none;
  }

  .pain-grid,
  .feature-grid,
  .role-grid,
  .flow-grid,
  .chart-bottom {
    grid-template-columns: 1fr;
  }

  .highlight-section,
  .store-panel,
  .keep-bottle-feature,
  .trial-card,
  .final-cta {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .bridge-section {
    gap: 24px;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .bridge-flow {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .support-feature-grid {
    grid-template-columns: 1fr;
  }

  .simple-flow {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 0;
  }

  .simple-flow::before {
    display: none;
  }

  .flow-node {
    flex: none;
    width: 100%;
    max-width: 200px;
  }

  .process-line {
    align-items: stretch;
  }

  .process-line div {
    width: 100%;
  }

  .process-line span {
    width: 100%;
    text-align: center;
    transform: rotate(90deg);
  }

  .contact-panel,
  .contact-form {
    padding: 20px;
    border-radius: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 36px;
  }

  .footer-copy {
    justify-items: start;
  }
}
