:root {
  --forest: #123c2d;
  --deep: #09281f;
  --soft: #1e513d;
  --ivory: #f6f3ea;
  --paper: #fcfbf7;
  --gold: #c9ad72;
  --gold-light: #e5d6ad;
  --ink: #17231d;
  --sage: #708077;
  --header: 82px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}
body {
  margin: 0;
  padding-top: var(--header);
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", YuGothic, sans-serif;
  line-height: 1.8;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: 14px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgb(229 214 173/0.28);
  background: rgb(9 40 31/0.97);
  color: #fff;
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.site-logo {
  width: auto;
  height: 38px;
}
.site-logo-store {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgb(229 214 173/0.45);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.site-logo--footer {
  height: 46px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  color: rgb(255 255 255/0.86);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.site-nav a {
  position: relative;
  white-space: nowrap;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.site-nav a:hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header)));
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}
.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero img {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.84) contrast(1.04);
}
.hero-overlay {
  background: linear-gradient(
      90deg,
      rgb(4 26 19/0.95),
      rgb(8 34 25/0.78) 38%,
      rgb(8 30 23/0.16) 70%
    ),
    linear-gradient(0deg, rgb(5 25 19/0.62), transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, calc(100% - 80px));
  min-height: min(760px, calc(100svh - var(--header)));
  margin: auto;
  padding: 70px 0 80px;
}
.hero .store-label {
  margin: 0 0 22px;
  color: var(--gold-light);
  font: 12px serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 24px rgb(0 0 0/0.28);
}
.mobile-line-break {
  display: none;
}
.hero-price-badge {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 32px;
  padding: 14px 24px 15px;
  border: 1px solid rgb(229 214 173/0.76);
  border-radius: 2px;
  background: rgb(9 40 31/0.78);
  color: #fff;
  box-shadow: 0 18px 45px rgb(0 0 0/0.22);
  backdrop-filter: blur(10px);
}
.hero-price-badge::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgb(229 214 173/0.22);
  content: "";
}
.hero-price-badge span {
  margin-right: 6px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero-price-badge strong {
  color: #fff;
  font: 400 clamp(44px, 5.5vw, 76px) / 1 serif;
  letter-spacing: -0.025em;
}
.hero-price-badge small {
  color: rgb(255 255 255/0.82);
  font-size: 12px;
  font-weight: 700;
}
.hero-subcopy {
  margin: 17px 0 0;
  color: rgb(255 255 255/0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.section-pad {
  padding: clamp(88px, 9vw, 136px) 0;
}
.section-inner {
  width: min(1120px, calc(100% - 64px));
  margin: auto;
}
.top-lead {
  background: var(--paper);
}
.top-lead .section-inner {
  width: min(850px, calc(100% - 64px));
  text-align: center;
}
.top-lead h2,
.section-title,
.top-image-cta-copy h2 {
  color: var(--deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.top-lead h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.5;
}
.top-lead p,
.section-lead {
  max-width: 720px;
  margin: auto;
  color: #536158;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.section-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 62px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.4;
  text-align: center;
}
.section-title::before,
.section-title::after {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: var(--gold);
  content: "";
}
.section-title::before {
  right: calc(100% + 28px);
}
.section-title::after {
  left: calc(100% + 28px);
}
.top-features,
.ryokuen-price-section,
.faq {
  background: var(--ivory);
}
.flow,
.access {
  background: var(--paper);
}
.store-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  border: 1px solid rgb(18 60 45/0.12);
}
.store-facts article {
  padding: 1.25rem 0.8rem;
  border-right: 1px solid rgb(18 60 45/0.12);
  text-align: center;
}
.store-facts article:last-child {
  border: 0;
}
.store-facts strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--forest);
  font: 500 1.55rem "Yu Mincho", serif;
}
.store-facts span {
  color: var(--sage);
  font-size: 12px;
}
.feature-list,
.flow-list {
  display: grid;
  gap: 24px;
}
.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-item {
  min-height: 350px;
  padding: 42px 30px;
  border: 1px solid rgb(18 60 45/0.12);
  border-radius: 3px;
  background: rgb(255 255 255/0.82);
  text-align: center;
  box-shadow: 0 16px 45px rgb(23 35 29/0.07);
}
.feature-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font: 15px serif;
  letter-spacing: 0.15em;
}
.feature-item img,
.flow-list img {
  width: 76px;
  height: 76px;
  margin: 18px auto;
  object-fit: contain;
  filter: sepia(0.25) saturate(0.65);
}
.feature-item h3,
.flow-list h3 {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 20px;
}
.feature-item p,
.flow-list p {
  margin: 0;
  color: var(--sage);
  font-size: 15px;
}
.top-image-cta {
  position: relative;
  min-height: 586px;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}
.top-image-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-image-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(5 35 25/0.88), rgb(7 38 28/0.44));
  content: "";
}
.top-image-cta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(1120px, calc(100% - 64px));
  min-height: 586px;
  margin: auto;
  text-align: center;
}
.top-image-cta-copy h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
}
.top-image-cta-copy p {
  max-width: 460px;
  margin: 0;
  color: rgb(255 255 255/0.82);
}
.ryokuen-price-card {
  position: relative;
  max-width: 720px;
  margin: 2rem auto 0;
  padding: clamp(42px, 6vw, 74px);
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: var(--deep);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgb(9 40 31/0.18);
}
.ryokuen-price-card::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgb(229 214 173/0.22);
  content: "";
}
.ryokuen-price-card .eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold-light);
  font: 400 11px serif;
  letter-spacing: 0.26em;
}
.ryokuen-price-card h3 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.big-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin: 1rem 0;
}
.big-price strong {
  color: #fff;
  font: 400 clamp(3.7rem, 9vw, 7rem) / 0.95 serif;
  letter-spacing: -0.06em;
}
.big-price span,
.big-price small {
  color: var(--gold-light);
}
.ryokuen-price-card ul {
  display: inline-grid;
  gap: 0.65rem;
  margin: 1.1rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.ryokuen-price-card li::before {
  margin-right: 0.65rem;
  color: var(--gold);
  content: "—";
}
.price-note {
  margin-top: 1rem;
  font-size: 0.86rem;
  opacity: 0.72;
}
.flow-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  gap: 18px;
}
.flow-list article {
  padding: 32px 22px;
  border-top: 1px solid var(--gold);
  text-align: center;
}
.flow-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(860px, 100%);
  margin: auto;
}
.faq-item {
  overflow: hidden;
  border: 1px solid rgb(18 60 45/0.14);
  border-radius: 3px;
  background: rgb(255 255 255/0.82);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgb(201 173 114/0.65);
  box-shadow: 0 12px 30px rgb(23 35 29/0.06);
}
.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 22px 76px 22px 30px;
  border: 0;
  background: transparent;
  color: var(--deep);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}
.faq-question:hover {
  background: rgb(201 173 114/0.06);
}
.faq-question span {
  flex: 0 0 auto;
  margin-right: 20px;
  color: var(--gold);
  font: 700 26px/1 serif;
}
.faq-question::after {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  content: "";
  transform: translateY(-68%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"]::after {
  transform: translateY(-28%) rotate(225deg);
}
.faq-answer {
  border-top: 1px solid rgb(18 60 45/0.1);
  background: rgb(255 255 255/0.58);
}
.faq-answer p {
  margin: 0;
  padding: 22px 32px 25px 76px;
  color: var(--sage);
  line-height: 1.9;
}
.map-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(751px, 100%);
  height: 385px;
  margin: 0 auto 44px;
  border: 1px solid rgb(201 173 114/0.5);
  background: radial-gradient(
      circle at 50% 44%,
      rgb(201 173 114/0.2),
      transparent 32%
    ),
    linear-gradient(135deg, var(--deep), var(--soft));
  color: #fff;
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.map-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.map-link__pin {
  width: 28px;
  height: 28px;
  margin-bottom: 25px;
  border: 3px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.map-link strong {
  margin-bottom: 9px;
  color: var(--gold-light);
  font: 400 18px serif;
  letter-spacing: 0.2em;
}
.map-link > span:last-child {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.access-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px 80px;
  width: min(720px, 100%);
  margin: auto;
}
.access-info p {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: var(--sage);
  font-size: 13px;
}
.access-info p::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}
.site-footer {
  padding: 92px 0 48px;
  background: var(--deep);
  color: #fff;
}
.footer-inner {
  width: min(900px, calc(100% - 64px));
  margin: auto;
  text-align: center;
}
.footer-brand {
  justify-content: center;
  margin-bottom: 52px;
}
.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 18px 48px;
  margin-bottom: 60px;
}
.site-footer nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
}
.copyright {
  margin: 0;
  color: rgb(255 255 255/0.52);
  font-size: 11px;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  :root {
    --header: 68px;
  }
  .site-header {
    min-height: var(--header);
    padding: 10px 18px;
  }
  .menu-toggle {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-toggle span {
    position: absolute;
    left: 6px;
    display: block;
    width: 32px;
    height: 2px;
    margin: 0;
    background: var(--gold-light);
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
  }
  .menu-toggle span:nth-child(1) {
    top: 12px;
  }
  .menu-toggle span:nth-child(2) {
    top: 21px;
  }
  .menu-toggle span:nth-child(3) {
    top: 30px;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }
  .site-nav {
    display: none;
  }
  .site-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    padding: 92px 30px 40px;
    background: var(--deep);
  }
  .site-nav.is-open a {
    display: block;
    padding: 17px 4px;
    border-bottom: 1px solid rgb(229 214 173/0.2);
    color: #fff;
    font-size: 15px;
  }
  body.menu-open .brand {
    opacity: 0;
  }
  body.menu-open .site-header {
    inset: 0;
    height: 100dvh;
    min-height: 100dvh;
    padding: 10px 18px;
    align-items: flex-start;
    background: var(--deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.menu-open .site-nav {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    height: 100%;
    padding: 92px 30px 40px;
    background: var(--deep);
  }
  body.menu-open .menu-toggle {
    position: absolute;
    top: 10px;
    right: 18px;
    z-index: 1200;
  }
  .hero,
  .hero-content {
    min-height: calc(100svh - var(--header));
  }
  .hero-content {
    justify-content: flex-end;
    width: min(620px, calc(100% - 40px));
    padding: 70px 0 44px;
  }
  .hero img {
    object-position: 27% center;
  }
  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgb(5 28 20/0.96),
      rgb(5 28 20/0.68) 46%,
      rgb(5 28 20/0.13) 78%
    );
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 40px);
  }
  .mobile-line-break {
    display: inline;
  }
  .hero-price-badge {
    width: 100%;
    justify-content: center;
    gap: 0.22rem;
    margin-top: 24px;
    padding: 12px;
  }
  .hero-price-badge span {
    margin-right: 2px;
    font-size: 12px;
  }
  .hero-price-badge strong {
    flex: 0 1 auto;
    font-size: clamp(39px, 12vw, 54px);
  }
  .hero-price-badge small {
    font-size: 10px;
  }
  .hero-subcopy {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .section-inner,
  .top-lead .section-inner {
    width: min(620px, calc(100% - 40px));
  }
  .section-title::before,
  .section-title::after {
    width: 28px;
  }
  .section-title::before {
    right: calc(100% + 13px);
  }
  .section-title::after {
    left: calc(100% + 13px);
  }
  .feature-list,
  .flow-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    min-height: auto;
  }
  .store-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-facts article:nth-child(2) {
    border-right: 0;
  }
  .store-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(18 60 45/0.12);
  }
  .faq-question {
    min-height: 74px;
    padding: 20px 58px 20px 20px;
    font-size: 16px;
  }
  .faq-question span {
    margin-right: 12px;
  }
  .faq-question::after {
    right: 22px;
  }
  .faq-answer p {
    padding: 0 22px 24px 52px;
    font-size: 14px;
  }
  .map-link {
    height: 300px;
  }
  .access-info {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .site-footer nav {
    grid-template-columns: repeat(2, auto);
    gap: 16px 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* Facility photography ---------------------------------------------------- */
.experience {
  padding: clamp(72px, 9vw, 132px) 24px;
  background: #f4f2ea;
  color: #112b22;
}
.experience__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.experience__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  column-gap: clamp(36px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.experience__eyebrow {
  grid-column: 1/-1;
  margin: 0 0 18px;
  color: #b08a42;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.experience__heading h2 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.02em;
}
.experience__heading > p:last-child {
  margin: 0;
  color: #54675f;
  font-size: clamp(0.94rem, 1.25vw, 1.05rem);
  line-height: 2;
}
.experience__grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 22px;
}
.experience-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  margin: 0;
  border-radius: 3px;
  background: #0d261e;
}
.experience-card--wide {
  grid-row: span 2;
  min-height: 642px;
}
.experience-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
  filter: saturate(0.82) contrast(1.04);
}
.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(4, 20, 15, 0.82) 100%
  );
  pointer-events: none;
}
.experience-card figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 30px;
  color: #fff;
}
.experience-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #d8bb79;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.experience-card figcaption strong {
  display: block;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.5;
}
.experience-card:hover img {
  transform: scale(1.025);
  filter: saturate(0.92) contrast(1.06);
}

@media (max-width: 760px) {
  .experience {
    padding: 64px 18px;
  }
  .experience__heading {
    display: block;
    margin-bottom: 30px;
  }
  .experience__heading h2 {
    margin-bottom: 20px;
  }
  .experience__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .experience-card,
  .experience-card--wide {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .experience-card figcaption {
    padding: 22px;
  }
  .experience-card figcaption strong {
    font-size: 1.05rem;
  }
}

/* Fixed trial CTA */
body {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.floating-trial-banner {
  position: fixed;
  left: 50%;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 1000;
  width: min(calc(100% - 32px), 680px);
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  color: #fff;
  background: #06c755;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 92, 50, 0.24);
  text-decoration: none;
  transform: translateX(-50%);
}

.floating-trial-banner__eyebrow {
  padding: 5px 10px;
  color: #064e2a;
  background: #dfffe9;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.floating-trial-banner__label {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
}

.floating-trial-banner__arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #06a847;
  background: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
}

.floating-trial-banner:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (hover: hover) {
  .floating-trial-banner {
    transition: transform 180ms ease, box-shadow 180ms ease,
      background-color 180ms ease;
  }

  .floating-trial-banner:hover {
    background: #05b94e;
    box-shadow: 0 15px 34px rgba(0, 92, 50, 0.3);
    transform: translateX(-50%) translateY(-2px);
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .floating-trial-banner {
    bottom: calc(8px + env(safe-area-inset-bottom));
    width: calc(100% - 20px);
    min-height: 60px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 9px 12px 9px 16px;
  }

  .floating-trial-banner__eyebrow {
    display: none;
  }

  .floating-trial-banner__label {
    font-size: 1rem;
    text-align: left;
  }

  .floating-trial-banner__arrow {
    width: 34px;
    height: 34px;
  }
}

/* Joining campaign */
.hero-campaign-note {
  display: grid;
  width: fit-content;
  max-width: 430px;
  margin-top: 12px;
  padding: 10px 16px;
  border-left: 2px solid var(--gold);
  background: rgb(5 28 20/0.72);
  color: rgb(255 255 255/0.88);
  line-height: 1.45;
  backdrop-filter: blur(8px);
}
.hero-campaign-note > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero-campaign-note strong {
  margin-top: 2px;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 19px);
}
.hero-campaign-note s {
  color: rgb(255 255 255/0.7);
  text-decoration-color: var(--gold-light);
  text-decoration-thickness: 1px;
}
.hero-campaign-note b {
  margin-left: 5px;
  color: var(--gold-light);
  font-size: 1.14em;
}
.hero-campaign-note small {
  margin-top: 3px;
  color: rgb(255 255 255/0.66);
  font-size: 10px;
}
.joining-fee {
  width: min(430px, 100%);
  margin: 30px auto 0;
  padding: 15px 20px;
  border-top: 1px solid rgb(229 214 173/0.28);
  border-bottom: 1px solid rgb(229 214 173/0.28);
  color: var(--gold-light);
  font-size: 14px;
}
.joining-fee strong {
  margin-left: 10px;
  color: #fff;
  font: 400 24px serif;
}
.campaign {
  overflow: hidden;
  background: var(--paper);
}
.campaign-inner {
  text-align: center;
}
.campaign-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font: 12px serif;
  letter-spacing: 0.24em;
}
.campaign .section-title {
  margin-bottom: 28px;
}
.campaign-lead {
  max-width: 720px;
  margin: 0 auto 42px;
  color: var(--sage);
  font-size: 15px;
  line-height: 2;
}
.campaign-comparison {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px minmax(220px, 1fr);
  align-items: stretch;
  width: min(860px, 100%);
  margin: auto;
}
.campaign-price {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgb(18 60 45/0.16);
  background: #fff;
}
.campaign-price > span {
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.campaign-price strong {
  margin-top: 10px;
  color: var(--deep);
  font: 400 clamp(48px, 6vw, 72px) / 1 serif;
}
.campaign-price small {
  margin-left: 4px;
  font: 700 14px "Hiragino Sans", "Yu Gothic", sans-serif;
}
.campaign-price--usual strong {
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}
.campaign-price--free {
  border-color: var(--gold);
  background: var(--deep);
  box-shadow: 0 20px 48px rgb(9 40 31/0.14);
}
.campaign-price--free > span,
.campaign-price--free strong {
  color: #fff;
}
.campaign-price--free strong {
  font-size: clamp(62px, 7vw, 88px);
}
.campaign-price--free small {
  color: var(--gold-light);
}
.campaign-arrow {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 20px 16px;
  color: var(--forest);
}
.campaign-arrow span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
.campaign-arrow b {
  color: var(--gold);
  font: 400 34px/1 serif;
}
.campaign-loss-note {
  margin: 30px auto 0;
  color: var(--deep);
  font-size: 15px;
  font-weight: 700;
}
.campaign-condition {
  margin: 12px auto 30px;
  color: var(--sage);
  font-size: 13px;
  line-height: 1.8;
}
.campaign-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: min(440px, 100%);
  min-height: 68px;
  padding: 16px 28px;
  background: #06c755;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 30px rgb(0 122 65/0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.campaign-cta:hover {
  background: #05b94e;
  transform: translateY(-2px);
}
.campaign-cta span {
  font-size: 22px;
}
.campaign-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 34px auto 0;
  padding: 0;
  color: var(--sage);
  list-style: none;
}
.campaign-flow li {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
.campaign-flow li:not(:last-child)::after {
  margin: 0 18px;
  color: var(--gold);
  content: "→";
}
.campaign-flow span {
  display: grid;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font: 700 12px serif;
}
@media (max-width: 760px) {
  .hero-campaign-note {
    width: 100%;
    margin-top: 10px;
    padding: 8px 12px;
  }
  .hero-campaign-note > span {
    font-size: 10px;
  }
  .hero-campaign-note strong {
    font-size: 14px;
  }
  .hero-campaign-note small {
    font-size: 9px;
  }
  .campaign-comparison {
    grid-template-columns: 1fr;
    width: min(430px, 100%);
  }
  .campaign-price {
    min-height: 165px;
    padding: 24px;
  }
  .campaign-arrow {
    gap: 5px;
    padding: 16px;
  }
  .campaign-arrow b {
    font-size: 28px;
  }
  .campaign-flow {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    gap: 12px;
    text-align: left;
  }
  .campaign-flow li:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 900px) {
  .site-logo {
    height: 30px;
  }
  .site-logo-store {
    display: none;
  }
  .site-logo--footer {
    height: 40px;
  }
}
