/* Junpa vNext: kind glass redesign, 2026-07-10 */

:root {
  --j-ink: #173d39;
  --j-ink-soft: #49635d;
  --j-deep: #1f5f57;
  --j-leaf: #6f927b;
  --j-paper: #fff9f0;
  --j-cream: #f7f1e7;
  --j-mist: #f2f7f3;
  --j-sea: #d8eceb;
  --j-peach: #f1d7c8;
  --j-coral: #c87863;
  --j-gold: #c5a35a;
  --j-white: #fffdf9;
  --j-line: rgba(23, 61, 57, 0.13);
  --j-line-strong: rgba(23, 61, 57, 0.22);
  --j-glass: rgba(255, 252, 246, 0.78);
  --j-glass-strong: rgba(255, 253, 249, 0.9);
  --j-shadow: 0 24px 70px rgba(24, 66, 58, 0.12);
  --j-shadow-soft: 0 14px 38px rgba(24, 66, 58, 0.09);
  --j-radius-xl: 34px;
  --j-radius-lg: 26px;
  --j-radius-md: 20px;
  --j-max: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body.junpa-vnext {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--j-ink);
  background:
    radial-gradient(circle at 4% 5%, rgba(216, 236, 235, 0.86), transparent 25rem),
    radial-gradient(circle at 94% 18%, rgba(241, 215, 200, 0.72), transparent 28rem),
    linear-gradient(180deg, #fbf8f1 0%, #f4f7f2 43%, #fff9f0 100%);
  font-family: "BIZ UDPGothic", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

body.junpa-vnext *,
body.junpa-vnext *::before,
body.junpa-vnext *::after {
  box-sizing: border-box;
}

body.junpa-vnext main {
  display: block;
  overflow: clip;
}

body.junpa-vnext img {
  display: block;
  max-width: 100%;
}

body.junpa-vnext figure,
body.junpa-vnext dl,
body.junpa-vnext dd {
  margin: 0;
}

body.junpa-vnext button,
body.junpa-vnext input,
body.junpa-vnext select,
body.junpa-vnext textarea {
  font: inherit;
}

body.junpa-vnext a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

body.junpa-vnext h1,
body.junpa-vnext h2,
body.junpa-vnext h3,
body.junpa-vnext p {
  margin-top: 0;
}

body.junpa-vnext h1,
body.junpa-vnext h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

body.junpa-vnext h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.3vw, 3.45rem);
  font-weight: 600;
  line-height: 1.32;
}

body.junpa-vnext h3 {
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.45;
}

body.junpa-vnext p {
  color: var(--j-ink-soft);
}

body.junpa-vnext :focus-visible {
  outline: 3px solid rgba(200, 120, 99, 0.85);
  outline-offset: 4px;
}

body.junpa-vnext [hidden] {
  display: none !important;
}

body.junpa-vnext .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.junpa-vnext .skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--j-ink);
  border-radius: 12px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

body.junpa-vnext .skip-link:focus {
  transform: translateY(0);
}

body.junpa-vnext .site-header.junpa-header {
  position: sticky;
  z-index: 100;
  top: 12px;
  left: auto;
  right: auto;
  width: min(var(--j-max), calc(100% - 24px));
  min-height: 70px;
  margin: 12px auto 0;
  padding: 8px 9px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 12px 34px rgba(24, 66, 58, 0.1);
}

@supports (backdrop-filter: blur(18px)) {
  body.junpa-vnext .site-header.junpa-header {
    background: rgba(255, 252, 246, 0.72);
    backdrop-filter: blur(18px) saturate(125%);
  }
}

body.junpa-vnext .brand-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 48px;
}

body.junpa-vnext .brand-logo {
  width: clamp(158px, 18vw, 210px);
  height: auto;
}

body.junpa-vnext .site-header .nav {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

body.junpa-vnext .site-header .nav a {
  display: inline-flex;
  min-height: 46px;
  padding: 0.67rem 0.86rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--j-ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

body.junpa-vnext .site-header .nav a:hover {
  color: var(--j-deep);
  background: rgba(216, 236, 235, 0.75);
  transform: translateY(-1px);
}

body.junpa-vnext .site-header .nav .nav-reserve {
  min-width: 106px;
  padding-inline: 1rem;
  color: #fff;
  background: var(--j-ink);
  box-shadow: 0 8px 20px rgba(23, 61, 57, 0.18);
}

body.junpa-vnext .site-header .nav .nav-reserve:hover {
  color: #fff;
  background: var(--j-deep);
}

body.junpa-vnext .menu-toggle {
  display: none;
}

body.junpa-vnext .junpa-hero {
  position: relative;
  isolation: isolate;
  width: min(var(--j-max), calc(100% - 40px));
  min-height: min(850px, calc(100svh - 96px));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 8.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(2.6rem, 6vw, 6rem);
}

body.junpa-vnext .hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

body.junpa-vnext .hero-orb-one {
  top: 12%;
  left: -16%;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(216, 236, 235, 0.94), rgba(216, 236, 235, 0));
}

body.junpa-vnext .hero-orb-two {
  right: -18%;
  bottom: 0;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(241, 215, 200, 0.72), rgba(241, 215, 200, 0));
}

body.junpa-vnext .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: junpa-enter 620ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

body.junpa-vnext .section-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  color: var(--j-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.junpa-vnext .section-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--j-line-strong);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.62);
  color: var(--j-coral);
  font-family: "Segoe UI", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.17em;
}

body.junpa-vnext .hero-copy h1 {
  max-width: 10.5em;
  margin: 0 0 1.6rem;
  color: var(--j-ink);
  font-size: clamp(2.75rem, 5.2vw, 4.6rem);
  font-weight: 600;
  line-height: 1.18;
}

body.junpa-vnext .hero-copy h1 em {
  color: var(--j-deep);
  font-style: normal;
  background: linear-gradient(transparent 68%, rgba(216, 236, 235, 0.9) 68%);
}

body.junpa-vnext .hero-copy .lead {
  max-width: 38em;
  margin-bottom: 1.55rem;
  color: #38544e;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.9;
}

body.junpa-vnext .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

body.junpa-vnext .hero-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.45rem 0.76rem;
  color: var(--j-ink-soft);
  background: rgba(255, 253, 249, 0.67);
  border: 1px solid var(--j-line);
  border-radius: 999px;
  font-size: 0.79rem;
}

body.junpa-vnext .hero-facts strong {
  color: var(--j-ink);
  font-size: 0.95rem;
}

body.junpa-vnext .hero-actions,
body.junpa-vnext .sns-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

body.junpa-vnext .button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

body.junpa-vnext .button:hover {
  transform: translateY(-2px);
}

body.junpa-vnext .button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--j-ink), var(--j-deep));
  box-shadow: 0 12px 26px rgba(23, 61, 57, 0.2);
}

body.junpa-vnext .button.secondary {
  color: var(--j-ink);
  background: rgba(255, 253, 249, 0.87);
  border-color: var(--j-line-strong);
  box-shadow: 0 8px 18px rgba(24, 66, 58, 0.07);
}

body.junpa-vnext .button.ghost {
  color: var(--j-ink);
  background: transparent;
  border-color: var(--j-line);
}

body.junpa-vnext .button.text-button {
  min-height: 46px;
  padding-inline: 0.7rem;
  color: var(--j-ink);
  border-bottom: 1px solid var(--j-line-strong);
  border-radius: 0;
}

body.junpa-vnext .button.full {
  width: 100%;
}

body.junpa-vnext .button.compact {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
}

body.junpa-vnext .need-chooser {
  max-width: 600px;
  margin-top: 1.45rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--j-radius-md);
  background: var(--j-glass);
  box-shadow: 0 14px 36px rgba(24, 66, 58, 0.08);
}

@supports (backdrop-filter: blur(18px)) {
  body.junpa-vnext .need-chooser,
  body.junpa-vnext .hero-glass-note {
    backdrop-filter: blur(18px) saturate(125%);
  }
}

body.junpa-vnext .need-chooser > p:first-child {
  margin-bottom: 0.7rem;
  color: var(--j-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

body.junpa-vnext .hero-path-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.junpa-vnext .hero-path-options button {
  min-height: 40px;
  padding: 0.48rem 0.82rem;
  color: var(--j-ink-soft);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--j-line);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

body.junpa-vnext .hero-path-options button:hover,
body.junpa-vnext .hero-path-options button.is-active {
  color: #fff;
  background: var(--j-deep);
  border-color: var(--j-deep);
}

body.junpa-vnext .hero-path-result {
  min-height: 2.9em;
  margin: 0.75rem 0 0;
  color: #34524b;
  font-size: 0.84rem;
  line-height: 1.65;
}

body.junpa-vnext .hero-visual {
  position: relative;
  min-height: 650px;
  animation: junpa-enter 720ms 80ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

body.junpa-vnext .hero-photo {
  position: absolute;
  inset: 2% 0 4% 5%;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 249, 0.64);
  border-radius: 46% 54% 34% 66% / 38% 36% 64% 62%;
  background: var(--j-sea);
  box-shadow: var(--j-shadow);
}

body.junpa-vnext .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 61, 57, 0.16));
  pointer-events: none;
}

body.junpa-vnext .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

body.junpa-vnext .generated-image-note {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  max-width: calc(100% - 1.3rem);
  margin: 0;
  padding: 0.4rem 0.62rem;
  color: #fff;
  background: rgba(23, 61, 57, 0.88);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

body.junpa-vnext .hero-glass-note {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 4.5rem;
  width: min(360px, 72%);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  background: var(--j-glass-strong);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .stamp-mark {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--j-coral);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Yu Mincho", serif;
  font-size: 1.45rem;
  font-weight: 700;
  transform: rotate(-6deg);
}

body.junpa-vnext .hero-glass-note small {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--j-coral);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

body.junpa-vnext .hero-glass-note strong {
  display: block;
  color: var(--j-ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

body.junpa-vnext .hero-glass-note p {
  margin: 0.15rem 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

body.junpa-vnext .steam-lines {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  gap: 0.55rem;
  transform: rotate(-8deg);
}

body.junpa-vnext .steam-lines i {
  display: block;
  width: 11px;
  height: 84px;
  border: 2px solid rgba(31, 95, 87, 0.2);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

body.junpa-vnext .steam-lines i:nth-child(2) {
  height: 112px;
  margin-top: -18px;
}

@keyframes junpa-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

body.junpa-vnext .junpa-section {
  position: relative;
  width: min(var(--j-max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

body.junpa-vnext .section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

body.junpa-vnext .section-heading > p:last-child,
body.junpa-vnext .access-intro > p:last-child,
body.junpa-vnext .register-heading > p:last-child {
  max-width: 43em;
  margin-bottom: 0;
  line-height: 1.9;
}

body.junpa-vnext .heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
}

body.junpa-vnext .heading-split h2 {
  margin-bottom: 0;
}

body.junpa-vnext .heading-split > p {
  margin-bottom: 0;
}

body.junpa-vnext .care-section {
  padding-top: clamp(4rem, 7vw, 6.5rem);
}

body.junpa-vnext .care-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -22vw;
  width: 52vw;
  height: 52vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 236, 235, 0.78), rgba(216, 236, 235, 0));
}

body.junpa-vnext .service-set {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 2fr);
  align-items: stretch;
  gap: 1rem;
}

body.junpa-vnext .service-summary {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 236, 235, 0.25), transparent 55%),
    linear-gradient(145deg, var(--j-ink), var(--j-deep));
  border-radius: var(--j-radius-lg);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .service-summary::after {
  content: "巡";
  position: absolute;
  right: -0.5rem;
  bottom: -2.3rem;
  color: rgba(255, 255, 255, 0.07);
  font-family: "Yu Mincho", serif;
  font-size: 9rem;
  line-height: 1;
}

body.junpa-vnext .service-summary > * {
  position: relative;
  z-index: 1;
}

body.junpa-vnext .service-summary span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.7rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

body.junpa-vnext .service-summary h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

body.junpa-vnext .service-summary p,
body.junpa-vnext .service-summary small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.78;
}

body.junpa-vnext .service-summary small {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
}

body.junpa-vnext .service-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

body.junpa-vnext .service-flow article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0 0 1.25rem;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--j-radius-md);
  box-shadow: 0 10px 26px rgba(24, 66, 58, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

body.junpa-vnext .service-flow article:hover {
  transform: translateY(-4px);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .service-flow img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1rem;
}

body.junpa-vnext .service-flow article > span,
body.junpa-vnext .service-flow h3,
body.junpa-vnext .service-flow p {
  margin-left: 1rem;
  margin-right: 1rem;
}

body.junpa-vnext .service-flow article > span {
  display: inline-flex;
  min-width: 31px;
  min-height: 31px;
  margin-bottom: 0.6rem;
  align-items: center;
  justify-content: center;
  color: var(--j-coral);
  border: 1px solid rgba(200, 120, 99, 0.32);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

body.junpa-vnext .service-flow h3 {
  margin-bottom: 0.45rem;
  color: var(--j-ink);
  font-size: 1rem;
}

body.junpa-vnext .service-flow p {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.65;
}

body.junpa-vnext .care-promises {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--j-line);
  border-bottom: 1px solid var(--j-line);
}

body.junpa-vnext .care-promises article {
  position: relative;
  padding: 1.45rem 1.3rem 1.25rem 3.5rem;
}

body.junpa-vnext .care-promises article + article {
  border-left: 1px solid var(--j-line);
}

body.junpa-vnext .care-promises span {
  position: absolute;
  top: 1.4rem;
  left: 1.2rem;
  color: var(--j-coral);
  font-family: "Segoe UI", sans-serif;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body.junpa-vnext .care-promises strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--j-ink);
  font-size: 0.9rem;
}

body.junpa-vnext .care-promises p {
  margin-bottom: 0;
  font-size: 0.76rem;
  line-height: 1.6;
}

body.junpa-vnext .price-section {
  width: 100%;
  padding-left: max(20px, calc((100% - var(--j-max)) / 2));
  padding-right: max(20px, calc((100% - var(--j-max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.38), rgba(255, 249, 240, 0.9)),
    radial-gradient(circle at 15% 5%, rgba(241, 215, 200, 0.58), transparent 25rem);
}

body.junpa-vnext .price-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

body.junpa-vnext .price-shell .section-heading {
  position: sticky;
  top: 8rem;
  margin-bottom: 0;
}

body.junpa-vnext .price-shell .plan-grid {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

body.junpa-vnext .plan-card {
  min-width: 0;
  min-height: 0;
  padding: clamp(1.45rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.4rem;
  background: rgba(255, 253, 249, 0.91);
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-lg);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .plan-card.featured {
  border-color: rgba(31, 95, 87, 0.32);
  background: linear-gradient(135deg, rgba(216, 236, 235, 0.78), rgba(255, 253, 249, 0.94));
}

body.junpa-vnext .plan-card > div:first-child {
  min-width: 0;
}

body.junpa-vnext .plan-label {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.62rem;
  color: var(--j-coral);
  background: rgba(241, 215, 200, 0.48);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

body.junpa-vnext .plan-card h3 {
  margin: 0 0 0.35rem;
  color: var(--j-ink);
}

body.junpa-vnext .plan-card p {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.68;
}

body.junpa-vnext .plan-price {
  min-width: 150px;
  margin: 0;
  text-align: right;
}

body.junpa-vnext .plan-price strong {
  display: block;
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

body.junpa-vnext .plan-price span {
  color: var(--j-ink-soft);
  font-size: 0.7rem;
}

body.junpa-vnext .plan-card .button {
  grid-column: 1 / -1;
}

body.junpa-vnext .addon-strip {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

body.junpa-vnext .addon-strip article {
  padding: 1rem;
  border-top: 2px solid var(--j-sea);
  background: rgba(255, 253, 249, 0.6);
}

body.junpa-vnext .addon-strip span,
body.junpa-vnext .addon-strip strong {
  display: block;
}

body.junpa-vnext .addon-strip span {
  color: var(--j-coral);
  font-size: 0.68rem;
  font-weight: 900;
}

body.junpa-vnext .addon-strip strong {
  margin: 0.28rem 0;
  color: var(--j-ink);
  font-size: 0.82rem;
}

body.junpa-vnext .addon-strip p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
}

body.junpa-vnext .partner-route {
  position: relative;
  overflow: hidden;
  width: min(var(--j-max), 100%);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 236, 235, 0.17), transparent 42%),
    linear-gradient(145deg, #183f3b, #276b62);
  border-radius: var(--j-radius-xl);
  box-shadow: var(--j-shadow);
}

body.junpa-vnext .partner-photo {
  min-height: 420px;
  overflow: hidden;
}

body.junpa-vnext .partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.junpa-vnext .partner-copy {
  padding: clamp(2rem, 5vw, 4.7rem);
  align-self: center;
}

body.junpa-vnext .partner-copy h2,
body.junpa-vnext .partner-copy .section-kicker {
  color: #fff;
}

body.junpa-vnext .partner-copy .section-kicker span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

body.junpa-vnext .partner-copy p:not(.section-kicker) {
  max-width: 36em;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.76);
}

body.junpa-vnext .trust-section {
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

body.junpa-vnext .trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

body.junpa-vnext .trust-cards article {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-md);
}

body.junpa-vnext .trust-cards article > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--j-deep);
  background: var(--j-sea);
  border-radius: 45% 55% 52% 48%;
  font-family: "Yu Mincho", serif;
  font-size: 1.05rem;
}

body.junpa-vnext .trust-cards h3 {
  margin: 0 0 0.45rem;
  color: var(--j-ink);
}

body.junpa-vnext .trust-cards p {
  margin: 0;
  font-size: 0.82rem;
}

body.junpa-vnext .evidence-disclosure {
  margin-top: 1rem;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.65);
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-md);
}

body.junpa-vnext .evidence-disclosure > summary {
  min-height: 70px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--j-ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

body.junpa-vnext .evidence-disclosure > summary::-webkit-details-marker {
  display: none;
}

body.junpa-vnext .evidence-disclosure > summary small {
  color: var(--j-coral);
  font-size: 0.72rem;
}

body.junpa-vnext .evidence-disclosure[open] > summary {
  border-bottom: 1px solid var(--j-line);
}

body.junpa-vnext .evidence-section {
  padding: clamp(1.3rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

body.junpa-vnext .evidence-copy h2 {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

body.junpa-vnext .evidence-metrics {
  display: grid;
  gap: 0.65rem;
}

body.junpa-vnext .evidence-metrics article {
  padding: 0.9rem;
  background: var(--j-mist);
  border-radius: 15px;
}

body.junpa-vnext .evidence-metrics strong,
body.junpa-vnext .evidence-metrics span {
  display: block;
}

body.junpa-vnext .evidence-metrics strong {
  color: var(--j-deep);
  font-size: 0.84rem;
}

body.junpa-vnext .evidence-metrics span {
  margin: 0.16rem 0;
  color: var(--j-ink);
  font-size: 0.75rem;
  font-weight: 800;
}

body.junpa-vnext .evidence-metrics p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.55;
}

body.junpa-vnext .evidence-step-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

body.junpa-vnext .evidence-step-tabs button {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  color: var(--j-ink-soft);
  background: #fff;
  border: 1px solid var(--j-line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

body.junpa-vnext .evidence-step-tabs button.is-active {
  color: #fff;
  background: var(--j-deep);
}

body.junpa-vnext .evidence-detail {
  padding: 1.3rem;
  background: #fff;
  border-radius: 18px;
}

body.junpa-vnext .evidence-detail > span,
body.junpa-vnext .evidence-detail small {
  color: var(--j-coral);
  font-size: 0.7rem;
  font-weight: 800;
}

body.junpa-vnext .evidence-detail h3 {
  margin: 0.45rem 0;
  color: var(--j-ink);
}

body.junpa-vnext .evidence-detail p,
body.junpa-vnext .evidence-detail-notes p {
  font-size: 0.75rem;
}

body.junpa-vnext .evidence-detail-notes {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0;
}

body.junpa-vnext .evidence-detail-notes section {
  padding: 0.75rem;
  background: var(--j-mist);
  border-radius: 12px;
}

body.junpa-vnext .evidence-detail-notes strong {
  color: var(--j-ink);
  font-size: 0.72rem;
}

body.junpa-vnext .evidence-source-list {
  margin-top: 0.7rem;
  padding: 1rem;
  background: rgba(216, 236, 235, 0.42);
  border-radius: 14px;
}

body.junpa-vnext .evidence-source-list h3 {
  margin: 0 0 0.5rem;
  color: var(--j-ink);
  font-size: 0.82rem;
}

body.junpa-vnext .evidence-source-list ul {
  margin: 0;
  padding-left: 1.1rem;
}

body.junpa-vnext .evidence-source-list li {
  margin: 0.25rem 0;
  color: var(--j-ink-soft);
  font-size: 0.7rem;
}

body.junpa-vnext .register-section {
  display: block;
  width: min(var(--j-max), calc(100% - 32px));
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 95% 5%, rgba(241, 215, 200, 0.66), transparent 30rem),
    var(--j-glass);
  box-shadow: var(--j-shadow);
}

@supports (backdrop-filter: blur(22px)) {
  body.junpa-vnext .register-section {
    backdrop-filter: blur(22px) saturate(118%);
  }
}

body.junpa-vnext .register-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

body.junpa-vnext .register-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.92fr);
  align-items: start;
  gap: 1rem;
}

body.junpa-vnext .register-form,
body.junpa-vnext .member-login-card,
body.junpa-vnext .booking-box,
body.junpa-vnext .payment-box {
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-lg);
}

body.junpa-vnext .register-form {
  position: static;
  top: auto;
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
  display: grid;
  gap: 1rem;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .form-intro,
body.junpa-vnext .member-card-heading {
  margin-bottom: 0.25rem;
}

body.junpa-vnext .form-intro > span,
body.junpa-vnext .member-card-heading > span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  color: var(--j-coral);
  background: rgba(241, 215, 200, 0.5);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

body.junpa-vnext .form-intro h3,
body.junpa-vnext .member-card-heading h3 {
  margin: 0 0 0.35rem;
  color: var(--j-ink);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

body.junpa-vnext .form-intro p,
body.junpa-vnext .member-card-heading p {
  margin: 0;
  font-size: 0.78rem;
}

body.junpa-vnext .register-form label,
body.junpa-vnext .member-login-card label,
body.junpa-vnext .member-reservation-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--j-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

body.junpa-vnext .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body.junpa-vnext input,
body.junpa-vnext select,
body.junpa-vnext textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.9rem;
  color: var(--j-ink);
  background: #fff;
  border: 1px solid rgba(23, 61, 57, 0.2);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(23, 61, 57, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.junpa-vnext textarea {
  min-height: 110px;
  resize: vertical;
}

body.junpa-vnext input:focus,
body.junpa-vnext select:focus,
body.junpa-vnext textarea:focus {
  border-color: var(--j-deep);
  box-shadow: 0 0 0 4px rgba(31, 95, 87, 0.1);
  outline: 0;
}

body.junpa-vnext input::placeholder,
body.junpa-vnext textarea::placeholder {
  color: #879893;
}

body.junpa-vnext .check-line {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  padding: 0.85rem;
  background: var(--j-mist);
  border-radius: 14px;
  line-height: 1.6;
}

body.junpa-vnext .check-line input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 0.1rem 0 0;
  accent-color: var(--j-deep);
}

body.junpa-vnext .check-line span {
  color: var(--j-ink-soft);
  font-size: 0.73rem;
  font-weight: 500;
}

body.junpa-vnext .form-message {
  min-height: 1.6em;
  margin: 0;
  color: var(--j-deep);
  font-size: 0.75rem;
  line-height: 1.6;
}

body.junpa-vnext .form-message:empty {
  display: none;
}

body.junpa-vnext .form-message .button,
body.junpa-vnext .inline-payment {
  width: auto;
  min-height: 38px;
  margin: 0.5rem 0.25rem 0 0;
  padding: 0.5rem 0.7rem;
  font-size: 0.7rem;
}

body.junpa-vnext .register-copy {
  display: grid;
  gap: 0.8rem;
}

body.junpa-vnext .member-login-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 100% 0, rgba(216, 236, 235, 0.75), transparent 65%),
    rgba(255, 253, 249, 0.9);
}

body.junpa-vnext .member-login-form,
body.junpa-vnext .member-reservation-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

body.junpa-vnext .member-reservation-head {
  margin-top: 1.2rem;
  padding-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid var(--j-line);
}

body.junpa-vnext .member-reservation-head span,
body.junpa-vnext .member-reservation-head strong {
  display: block;
}

body.junpa-vnext .member-reservation-head span {
  color: var(--j-coral);
  font-size: 0.65rem;
  font-weight: 900;
}

body.junpa-vnext .member-reservation-head strong {
  color: var(--j-ink);
  font-size: 0.9rem;
}

body.junpa-vnext .booking-box,
body.junpa-vnext .payment-box {
  padding: 1.15rem 1.3rem;
  background: rgba(255, 253, 249, 0.67);
}

body.junpa-vnext .booking-box h3,
body.junpa-vnext .payment-box h3 {
  margin: 0 0 0.35rem;
  color: var(--j-ink);
  font-size: 0.9rem;
}

body.junpa-vnext .booking-box p,
body.junpa-vnext .payment-box p {
  margin-bottom: 0.35rem;
  font-size: 0.73rem;
  line-height: 1.58;
}

body.junpa-vnext .booking-box small,
body.junpa-vnext .payment-box small,
body.junpa-vnext .payment-waiting {
  color: var(--j-coral);
  font-size: 0.68rem;
  font-weight: 800;
}

body.junpa-vnext .access-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

body.junpa-vnext .access-intro h2 {
  margin-bottom: 1.2rem;
}

body.junpa-vnext .location-box {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

body.junpa-vnext .location-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2rem -4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 236, 235, 0.8), transparent 68%);
}

body.junpa-vnext .location-box article {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  background: var(--j-glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--j-radius-lg);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .location-box article::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -35px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(200, 120, 99, 0.16);
  border-radius: 50%;
}

body.junpa-vnext .location-box span {
  color: var(--j-coral);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.junpa-vnext .location-box strong {
  display: block;
  margin: 0.3rem 0;
  color: var(--j-ink);
  font-size: 1rem;
}

body.junpa-vnext .location-box p {
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  line-height: 1.65;
}

body.junpa-vnext .location-box .button {
  min-height: 42px;
  padding: 0.58rem 0.85rem;
  font-size: 0.72rem;
}

body.junpa-vnext .journal-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 1rem;
}

body.junpa-vnext .journal-main {
  min-width: 0;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: rgba(255, 253, 249, 0.66);
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-xl);
}

body.junpa-vnext .journal-main .section-heading {
  margin-bottom: 2rem;
}

body.junpa-vnext .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

body.junpa-vnext .blog-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-md);
}

body.junpa-vnext .blog-card:nth-child(n + 3) {
  display: none;
}

body.junpa-vnext .blog-card img,
body.junpa-vnext .blog-card figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

body.junpa-vnext .blog-card > div,
body.junpa-vnext .blog-card-body {
  padding: 1rem;
}

body.junpa-vnext .blog-card span,
body.junpa-vnext .blog-card time {
  color: var(--j-coral);
  font-size: 0.66rem;
  font-weight: 900;
}

body.junpa-vnext .blog-card h3 {
  margin: 0.35rem 0;
  color: var(--j-ink);
  font-size: 0.98rem;
}

body.junpa-vnext .blog-card p,
body.junpa-vnext .blog-card summary,
body.junpa-vnext .blog-card details {
  font-size: 0.73rem;
  line-height: 1.6;
}

body.junpa-vnext .blog-card details {
  margin-top: 0.7rem;
}

body.junpa-vnext .blog-card summary {
  color: var(--j-deep);
  font-weight: 800;
  cursor: pointer;
}

body.junpa-vnext .sns-panel {
  position: sticky;
  top: 8rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(241, 215, 200, 0.15), transparent 45%),
    linear-gradient(145deg, var(--j-ink), var(--j-deep));
  border-radius: var(--j-radius-xl);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .sns-panel > span {
  color: var(--j-peach);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.junpa-vnext .sns-panel h2 {
  margin: 0.7rem 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

body.junpa-vnext .sns-panel > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

body.junpa-vnext .sns-grid {
  display: grid;
  gap: 0.45rem;
  margin: 1.2rem 0;
}

body.junpa-vnext .sns-grid article {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

body.junpa-vnext .sns-grid span,
body.junpa-vnext .sns-grid h3,
body.junpa-vnext .sns-grid p {
  color: rgba(255, 255, 255, 0.82);
}

body.junpa-vnext .sns-grid span {
  font-size: 0.62rem;
  font-weight: 900;
}

body.junpa-vnext .sns-grid h3 {
  margin: 0.15rem 0;
  font-size: 0.8rem;
}

body.junpa-vnext .sns-grid p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.5;
}

body.junpa-vnext .faq-section {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

body.junpa-vnext .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

body.junpa-vnext .faq-list details {
  align-self: start;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid var(--j-line);
  border-radius: 18px;
}

body.junpa-vnext .faq-list summary {
  min-height: 64px;
  padding: 1rem 3rem 1rem 1.1rem;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--j-ink);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

body.junpa-vnext .faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  color: var(--j-coral);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

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

body.junpa-vnext .faq-list details[open] summary {
  border-bottom: 1px solid var(--j-line);
}

body.junpa-vnext .faq-list details p {
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.77rem;
  line-height: 1.75;
}

body.junpa-vnext .site-footer {
  width: min(var(--j-max), calc(100% - 40px));
  margin: 1rem auto 0;
  padding: 2rem 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem 3rem;
  align-items: end;
  color: var(--j-ink);
  border-top: 1px solid var(--j-line);
  background: transparent;
}

body.junpa-vnext .footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 0.5rem;
}

body.junpa-vnext .footer-brand p {
  max-width: 36em;
  margin: 0;
  font-size: 0.74rem;
}

body.junpa-vnext .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

body.junpa-vnext .footer-links a {
  color: var(--j-ink);
  font-size: 0.75rem;
  font-weight: 800;
}

body.junpa-vnext .site-footer > small {
  grid-column: 1 / -1;
  color: var(--j-ink-soft);
  font-size: 0.65rem;
}

body.junpa-vnext .mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  body.junpa-vnext .junpa-hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 2rem;
  }

  body.junpa-vnext .hero-visual {
    min-height: 560px;
  }

  body.junpa-vnext .service-set,
  body.junpa-vnext .price-shell,
  body.junpa-vnext .access-section,
  body.junpa-vnext .journal-section {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .price-shell .section-heading,
  body.junpa-vnext .sns-panel {
    position: static;
  }

  body.junpa-vnext .price-shell .plan-grid,
  body.junpa-vnext .addon-strip {
    grid-column: 1;
    grid-row: auto;
  }

  body.junpa-vnext .partner-route {
    grid-template-columns: 0.85fr 1.15fr;
  }

  body.junpa-vnext .register-grid {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .register-copy {
    grid-template-columns: 1fr 1fr;
  }

  body.junpa-vnext .member-login-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  body.junpa-vnext {
    padding-bottom: 74px;
    font-size: 15px;
  }

  body.junpa-vnext .site-header.junpa-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 62px;
    margin-top: 8px;
    padding: 6px 7px 6px 12px;
    border-radius: 20px;
  }

  body.junpa-vnext .brand-logo {
    width: 152px;
  }

  body.junpa-vnext .menu-toggle {
    position: relative;
    z-index: 4;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    background: transparent;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
  }

  body.junpa-vnext .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--j-ink);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.junpa-vnext .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.junpa-vnext .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.junpa-vnext .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.junpa-vnext .site-header .nav {
    position: absolute;
    z-index: 3;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    width: 100%;
    padding: 0.7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    background: rgba(255, 252, 246, 0.97);
    border: 1px solid var(--j-line);
    border-radius: 20px;
    box-shadow: var(--j-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.junpa-vnext .site-header.is-menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.junpa-vnext .site-header .nav a {
    width: 100%;
    min-height: 48px;
    background: rgba(216, 236, 235, 0.42);
  }

  body.junpa-vnext .site-header .nav .nav-reserve {
    grid-column: 1 / -1;
  }

  body.junpa-vnext .junpa-hero {
    width: calc(100% - 32px);
    min-height: 0;
    padding: 4.5rem 0 5.5rem;
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  body.junpa-vnext .hero-copy {
    max-width: none;
  }

  body.junpa-vnext .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
  }

  body.junpa-vnext .hero-copy .lead {
    font-size: 0.98rem;
  }

  body.junpa-vnext .hero-actions .button {
    flex: 1 1 160px;
  }

  body.junpa-vnext .hero-path-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  body.junpa-vnext .hero-path-options button {
    min-height: 46px;
  }

  body.junpa-vnext .hero-visual {
    min-height: 510px;
  }

  body.junpa-vnext .hero-photo {
    inset: 0 0 2% 0;
  }

  body.junpa-vnext .hero-glass-note {
    right: 0;
    bottom: 1.2rem;
    width: 86%;
  }

  body.junpa-vnext .junpa-section {
    width: calc(100% - 32px);
    padding: 4.8rem 0;
  }

  body.junpa-vnext .heading-split {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  body.junpa-vnext .service-flow,
  body.junpa-vnext .care-promises,
  body.junpa-vnext .trust-cards,
  body.junpa-vnext .faq-list,
  body.junpa-vnext .blog-grid {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .service-flow {
    gap: 0.7rem;
  }

  body.junpa-vnext .service-flow article {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    padding: 0;
  }

  body.junpa-vnext .service-flow img {
    grid-row: 1 / 4;
    width: 132px;
    height: 100%;
    min-height: 170px;
    margin: 0;
  }

  body.junpa-vnext .service-flow article > span {
    margin-top: 0.85rem;
  }

  body.junpa-vnext .care-promises {
    border-bottom: 0;
  }

  body.junpa-vnext .care-promises article,
  body.junpa-vnext .care-promises article + article {
    border-left: 0;
    border-bottom: 1px solid var(--j-line);
  }

  body.junpa-vnext .price-section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  body.junpa-vnext .plan-card {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .plan-price {
    text-align: left;
  }

  body.junpa-vnext .addon-strip {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .partner-route {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .partner-photo {
    min-height: 300px;
    max-height: 380px;
  }

  body.junpa-vnext .evidence-section,
  body.junpa-vnext .register-copy {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .register-section {
    width: calc(100% - 20px);
    padding: 1.2rem;
  }

  body.junpa-vnext .register-heading {
    padding: 1rem 0.4rem 0;
  }

  body.junpa-vnext .form-row {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .journal-main {
    padding: 1.2rem;
  }

  body.junpa-vnext .site-footer {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    padding-bottom: 1.5rem;
  }

  body.junpa-vnext .footer-links {
    justify-content: flex-start;
  }

  body.junpa-vnext .mobile-action-bar {
    position: fixed;
    z-index: 120;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    min-height: 58px;
    padding: 6px;
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 6px;
    background: rgba(255, 252, 246, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(23, 61, 57, 0.18);
    backdrop-filter: blur(18px);
  }

  body.junpa-vnext .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--j-ink);
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 900;
    text-decoration: none;
  }

  body.junpa-vnext .mobile-action-bar .primary {
    color: #fff;
    background: var(--j-ink);
  }
}

@media (max-width: 460px) {
  body.junpa-vnext .hero-facts span {
    flex: 1 1 calc(50% - 0.35rem);
    justify-content: center;
  }

  body.junpa-vnext .hero-visual {
    min-height: 445px;
  }

  body.junpa-vnext .hero-glass-note {
    width: 94%;
    padding: 0.85rem;
  }

  body.junpa-vnext .stamp-mark {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  body.junpa-vnext .service-flow article {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  body.junpa-vnext .service-flow img {
    width: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.junpa-vnext *,
  body.junpa-vnext *::before,
  body.junpa-vnext *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2026-07-11: frame-free wide hero */
body.junpa-vnext .junpa-hero {
  width: 100%;
  min-height: min(820px, calc(100svh - 92px));
  margin: 0;
  padding:
    clamp(4.5rem, 8vw, 7.5rem)
    max(24px, calc((100vw - var(--j-max)) / 2))
    clamp(4.5rem, 8vw, 7rem);
  grid-template-columns: minmax(340px, 52%) minmax(0, 1fr);
  overflow: hidden;
  background: var(--j-paper);
}

body.junpa-vnext .junpa-hero .hero-copy {
  width: min(600px, 100%);
  max-width: none;
  padding: 1.25rem 0;
}

body.junpa-vnext .junpa-hero .hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0;
  min-height: 0;
}

body.junpa-vnext .junpa-hero .hero-photo {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: #e8e0d2;
  box-shadow: none;
}

body.junpa-vnext .junpa-hero .hero-photo::after {
  background:
    linear-gradient(
      90deg,
      rgba(255, 249, 240, 0.99) 0%,
      rgba(255, 249, 240, 0.94) 30%,
      rgba(255, 249, 240, 0.66) 46%,
      rgba(255, 249, 240, 0.16) 68%,
      rgba(255, 249, 240, 0.02) 100%
    ),
    linear-gradient(180deg, rgba(23, 61, 57, 0.02), rgba(23, 61, 57, 0.1));
}

body.junpa-vnext .junpa-hero .hero-photo img {
  object-position: 55% 50%;
}

body.junpa-vnext .junpa-hero .hero-glass-note,
body.junpa-vnext .junpa-hero .steam-lines,
body.junpa-vnext .junpa-hero .hero-orb {
  display: none;
}

body.junpa-vnext .junpa-hero .need-chooser {
  background: rgba(255, 252, 246, 0.9);
}

@media (max-width: 760px) {
  body.junpa-vnext .junpa-hero {
    width: 100%;
    min-height: calc(100svh - 64px);
    padding: 4rem 16px 4.75rem;
    display: block;
    overflow: hidden;
  }

  body.junpa-vnext .junpa-hero .hero-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
  }

  body.junpa-vnext .junpa-hero .hero-visual {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  body.junpa-vnext .junpa-hero .hero-photo {
    inset: 0;
  }

  body.junpa-vnext .junpa-hero .hero-photo::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 249, 240, 0.92) 0%,
        rgba(255, 249, 240, 0.86) 38%,
        rgba(255, 249, 240, 0.76) 68%,
        rgba(255, 249, 240, 0.58) 100%
      ),
      linear-gradient(90deg, rgba(255, 249, 240, 0.42), rgba(255, 249, 240, 0.08));
  }

  body.junpa-vnext .junpa-hero .hero-photo img {
    object-position: 50% 48%;
  }
}

/* 2026-07-12: balanced men/women care, compact navigation, visible journal */
body.junpa-vnext .hero-route-grid {
  width: min(590px, 100%);
  margin: 1.35rem 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

body.junpa-vnext .hero-route-card {
  min-width: 0;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.2rem;
  color: var(--j-ink);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 10px 28px rgba(23, 61, 57, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@supports (backdrop-filter: blur(14px)) {
  body.junpa-vnext .hero-route-card {
    background: rgba(255, 252, 246, 0.68);
    backdrop-filter: blur(14px) saturate(118%);
  }
}

body.junpa-vnext .hero-route-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 105, 95, 0.25);
  box-shadow: 0 14px 34px rgba(23, 61, 57, 0.13);
}

body.junpa-vnext .hero-route-card span {
  color: var(--j-coral);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

body.junpa-vnext .hero-route-card strong {
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  line-height: 1.45;
}

body.junpa-vnext .hero-route-card small {
  color: var(--j-muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

body.junpa-vnext .service-set {
  display: block;
}

body.junpa-vnext .common-warm-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: stretch;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-xl);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .common-warm-card > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

body.junpa-vnext .common-warm-card > div {
  padding: clamp(1.7rem, 4vw, 3.2rem);
  align-self: center;
}

body.junpa-vnext .common-warm-card span,
body.junpa-vnext .care-path-audience {
  display: inline-flex;
  width: fit-content;
  color: var(--j-coral);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.junpa-vnext .common-warm-card h3 {
  margin: 0.55rem 0 0.75rem;
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

body.junpa-vnext .common-warm-card p {
  margin: 0 0 1rem;
  line-height: 1.85;
}

body.junpa-vnext .common-warm-card small {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  color: var(--j-deep);
  background: var(--j-sea);
  border-radius: 999px;
  font-weight: 800;
}

body.junpa-vnext .warm-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.junpa-vnext .warm-choice-card {
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-lg);
  box-shadow: var(--j-shadow-soft);
}

body.junpa-vnext .warm-choice-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.junpa-vnext .warm-choice-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
}

body.junpa-vnext .warm-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

body.junpa-vnext .warm-choice-card.is-nemuri > img {
  object-position: 50% 50%;
}

body.junpa-vnext .warm-choice-card.is-yomogi > img {
  object-position: 66% 48%;
}

body.junpa-vnext .warm-choice-card > div {
  flex: 1;
  padding: clamp(1.3rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.junpa-vnext .warm-choice-card span {
  color: var(--j-coral);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.junpa-vnext .warm-choice-card h3 {
  margin: 0.45rem 0 0.65rem;
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

body.junpa-vnext .warm-choice-card p {
  margin: 0 0 1rem;
  line-height: 1.78;
}

body.junpa-vnext .warm-choice-card small {
  margin-top: auto;
  padding: 0.5rem 0.72rem;
  color: var(--j-deep);
  background: rgba(216, 236, 235, 0.66);
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.55;
}

body.junpa-vnext .warm-choice-card a {
  margin-top: 0.9rem;
  color: var(--j-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-underline-offset: 0.2em;
}

body.junpa-vnext .care-path-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.junpa-vnext .care-path-card {
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 7rem;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius-lg);
  box-shadow: 0 12px 32px rgba(24, 66, 58, 0.09);
}

body.junpa-vnext .care-path-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.junpa-vnext .care-path-body {
  flex: 1;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.junpa-vnext .care-path-body > small {
  margin-top: 0.55rem;
  color: var(--j-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

body.junpa-vnext .care-path-body h3 {
  margin: 0.42rem 0 0.72rem;
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

body.junpa-vnext .care-path-body > p:not(.care-route-note) {
  margin: 0;
  line-height: 1.78;
}

body.junpa-vnext .care-path-body ul {
  width: 100%;
  margin: 1.15rem 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

body.junpa-vnext .care-path-body li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--j-ink);
  font-size: 0.8rem;
  line-height: 1.55;
}

body.junpa-vnext .care-path-body li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--j-coral);
  font-weight: 900;
}

body.junpa-vnext .care-route-note {
  width: 100%;
  margin: auto 0 0.95rem;
  padding: 0.68rem 0.8rem;
  color: var(--j-deep);
  background: rgba(216, 236, 235, 0.66);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

body.junpa-vnext .care-claim-note {
  max-width: 78em;
  margin: 1rem auto 0;
  color: var(--j-muted);
  font-size: 0.7rem;
  line-height: 1.7;
  text-align: center;
}

body.junpa-vnext .journal-section {
  grid-template-columns: 1fr;
}

body.junpa-vnext .journal-main {
  width: 100%;
}

body.junpa-vnext .journal-main .section-heading > p:last-child {
  max-width: 58em;
}

body.junpa-vnext .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.junpa-vnext .blog-card:nth-child(n + 3) {
  display: block;
}

body.junpa-vnext .blog-card-media {
  padding: 0 !important;
}

body.junpa-vnext .blog-card > span,
body.junpa-vnext .blog-card > h3,
body.junpa-vnext .blog-card > p,
body.junpa-vnext .blog-card > details {
  margin-right: 1.05rem;
  margin-left: 1.05rem;
}

body.junpa-vnext .blog-card > span {
  display: block;
  margin-top: 1rem;
}

body.junpa-vnext .blog-card > details {
  margin-bottom: 1.1rem;
}

body.junpa-vnext .sns-panel {
  position: static;
}

@media (min-width: 921px) {
  body.junpa-vnext .site-header.junpa-header {
    min-height: 62px;
    gap: 0.75rem;
  }

  body.junpa-vnext .brand-logo-link {
    min-height: 42px;
  }

  body.junpa-vnext .brand-logo {
    width: clamp(146px, 15vw, 176px);
  }

  body.junpa-vnext .site-header .nav a {
    min-height: 42px;
    padding: 0.58rem 0.72rem;
  }
}

@media (max-width: 920px) {
  body.junpa-vnext .site-header.junpa-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 56px;
    margin-top: 8px;
    padding: 5px 6px 5px 11px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    border-radius: 18px;
  }

  body.junpa-vnext .brand-logo-link {
    min-width: 0;
    min-height: 42px;
    flex: 0 1 auto;
  }

  body.junpa-vnext .brand-logo {
    display: block;
    width: clamp(128px, 29vw, 148px);
    max-height: 38px;
  }

  body.junpa-vnext .menu-toggle {
    position: relative;
    z-index: 4;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    display: grid;
    flex: 0 0 44px;
    align-content: center;
    justify-items: center;
    gap: 5px;
    background: rgba(216, 236, 235, 0.42);
    border: 0;
    border-radius: 13px;
    cursor: pointer;
  }

  body.junpa-vnext .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--j-ink);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.junpa-vnext .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.junpa-vnext .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.junpa-vnext .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.junpa-vnext .site-header .nav {
    position: absolute;
    z-index: 3;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    width: 100%;
    padding: 0.65rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid var(--j-line);
    border-radius: 18px;
    box-shadow: var(--j-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.junpa-vnext .site-header.is-menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.junpa-vnext .site-header .nav a {
    width: 100%;
    min-height: 46px;
    padding: 0.6rem;
    background: rgba(216, 236, 235, 0.42);
  }

  body.junpa-vnext .site-header .nav .nav-reserve {
    grid-column: 1 / -1;
  }

  body.junpa-vnext .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.junpa-vnext .junpa-hero {
    padding-top: 3.3rem;
  }

  body.junpa-vnext .common-warm-card {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .warm-choice-grid {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .common-warm-card > img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body.junpa-vnext .care-path-grid,
  body.junpa-vnext .blog-grid {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .care-claim-note {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body.junpa-vnext .hero-route-grid {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .hero-route-card {
    padding: 0.8rem 0.9rem;
  }
}
/* 2026-07-12: prevent narrow-screen clipping */
@media (max-width: 560px) {
  body.junpa-vnext .site-header.junpa-header {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    box-sizing: border-box;
    padding-right: 56px;
  }

  body.junpa-vnext .site-header.junpa-header .brand-logo-link {
    width: auto;
    max-width: 100%;
  }

  body.junpa-vnext .site-header.junpa-header .menu-toggle {
    position: absolute;
    top: 6px;
    right: 6px;
    margin: 0;
  }

  body.junpa-vnext .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 2.3rem);
    line-height: 1.22;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 920px) {
  body.junpa-vnext .site-header.junpa-header .menu-toggle {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 200;
    color: #fff;
    background: var(--j-ink) !important;
  }

  body.junpa-vnext .site-header.junpa-header .menu-toggle span {
    background: #fff !important;
  }
}

/* 2026-07-15: nemuri mushi evidence refresh */
body.junpa-vnext .hero-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.junpa-vnext .hero-route-nemuri {
  background: linear-gradient(145deg, rgba(238, 224, 207, 0.96), rgba(255, 253, 249, 0.98));
  border-color: rgba(139, 90, 60, 0.24);
}

body.junpa-vnext .hero-facts {
  flex-wrap: wrap;
}

body.junpa-vnext .nemuri-section {
  position: relative;
  width: min(var(--j-max), calc(100% - 32px));
  margin: clamp(2.5rem, 6vw, 6rem) auto;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(232, 191, 101, 0.18), transparent 31%),
    linear-gradient(145deg, rgba(255, 251, 242, 0.98), rgba(238, 229, 214, 0.9));
  border: 1px solid rgba(116, 89, 64, 0.18);
  border-radius: var(--j-radius-xl);
  box-shadow: var(--j-shadow-soft);
  scroll-margin-top: 7rem;
}

body.junpa-vnext .nemuri-visual {
  position: relative;
  min-width: 0;
}

body.junpa-vnext .nemuri-visual figure {
  margin: 0;
}

body.junpa-vnext .nemuri-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--j-radius-xl) - 10px);
}

body.junpa-vnext .nemuri-visual figcaption {
  margin: 0.65rem 0.35rem 0;
  color: var(--j-muted);
  font-size: 0.68rem;
  line-height: 1.6;
}

body.junpa-vnext .nemuri-stamp {
  position: absolute;
  right: -0.35rem;
  bottom: 2.8rem;
  width: 142px;
  min-height: 142px;
  padding: 1rem;
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(255, 253, 249, 0.95);
  border: 2px solid var(--j-coral);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(62, 46, 37, 0.16);
  transform: rotate(-4deg);
}

body.junpa-vnext .nemuri-stamp span,
body.junpa-vnext .nemuri-stamp strong,
body.junpa-vnext .nemuri-stamp small {
  display: block;
}

body.junpa-vnext .nemuri-stamp span {
  color: var(--j-coral);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

body.junpa-vnext .nemuri-stamp strong {
  margin: 0.25rem 0;
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: 1.05rem;
}

body.junpa-vnext .nemuri-stamp small {
  color: var(--j-muted);
  font-size: 0.58rem;
  line-height: 1.45;
}

body.junpa-vnext .nemuri-copy h2 {
  margin: 0.55rem 0 0.9rem;
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.28;
}

body.junpa-vnext .nemuri-lead {
  margin: 0;
  color: var(--j-ink-soft);
  line-height: 1.9;
}

body.junpa-vnext .nemuri-points {
  margin: 1.35rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

body.junpa-vnext .nemuri-points article {
  padding: 0.9rem;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(116, 89, 64, 0.16);
  border-radius: 15px;
}

body.junpa-vnext .nemuri-points span,
body.junpa-vnext .nemuri-points strong {
  display: block;
}

body.junpa-vnext .nemuri-points span {
  color: var(--j-coral);
  font-size: 0.62rem;
  font-weight: 900;
}

body.junpa-vnext .nemuri-points strong {
  margin: 0.24rem 0;
  color: var(--j-ink);
  font-size: 0.78rem;
}

body.junpa-vnext .nemuri-points p {
  margin: 0;
  font-size: 0.67rem;
  line-height: 1.6;
}

body.junpa-vnext .nemuri-evidence-brief {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

body.junpa-vnext .nemuri-evidence-brief p {
  margin: 0;
  padding: 0.8rem 0.9rem;
  display: grid;
  grid-template-columns: 12em 1fr;
  gap: 0.75rem;
  background: rgba(216, 236, 235, 0.58);
  border-radius: 13px;
  font-size: 0.71rem;
  line-height: 1.65;
}

body.junpa-vnext .nemuri-evidence-brief p + p {
  background: rgba(244, 220, 207, 0.58);
}

body.junpa-vnext .nemuri-evidence-brief strong {
  color: var(--j-deep);
}

body.junpa-vnext .nemuri-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

body.junpa-vnext .planned-plan-card {
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) auto;
  gap: 1.2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(239, 225, 208, 0.88), rgba(255, 253, 249, 0.95));
  border: 1px dashed rgba(139, 90, 60, 0.42);
  border-radius: var(--j-radius-lg);
}

body.junpa-vnext .planned-plan-card span {
  color: var(--j-coral);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

body.junpa-vnext .planned-plan-card h3 {
  margin: 0.25rem 0;
  color: var(--j-ink);
  font-family: "Yu Mincho", serif;
  font-size: 1.45rem;
}

body.junpa-vnext .planned-plan-card p {
  margin: 0;
  font-size: 0.76rem;
}

body.junpa-vnext .planned-plan-card dl,
body.junpa-vnext .planned-plan-card dl div {
  margin: 0;
}

body.junpa-vnext .planned-plan-card dl {
  display: grid;
  gap: 0.45rem;
}

body.junpa-vnext .planned-plan-card dl div {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 0.5rem;
  font-size: 0.72rem;
}

body.junpa-vnext .planned-plan-card dt {
  color: var(--j-muted);
}

body.junpa-vnext .planned-plan-card dd {
  margin: 0;
  color: var(--j-ink);
  font-weight: 800;
}

body.junpa-vnext .trust-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.junpa-vnext .evidence-level-grid {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

body.junpa-vnext .evidence-level-grid article {
  padding: 0.85rem;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--j-line);
  border-radius: 14px;
}

body.junpa-vnext .evidence-level-grid span,
body.junpa-vnext .evidence-level-grid strong {
  display: block;
}

body.junpa-vnext .evidence-level-grid span {
  color: var(--j-coral);
  font-size: 0.62rem;
  font-weight: 900;
}

body.junpa-vnext .evidence-level-grid strong {
  margin: 0.2rem 0;
  color: var(--j-ink);
  font-size: 0.76rem;
}

body.junpa-vnext .evidence-level-grid p {
  margin: 0;
  font-size: 0.65rem;
  line-height: 1.55;
}

body.junpa-vnext .evidence-strength {
  width: fit-content;
  margin-bottom: 0.5rem;
  padding: 0.34rem 0.6rem;
  color: #fff !important;
  background: var(--j-deep);
  border-radius: 999px;
  letter-spacing: 0.06em;
}

body.junpa-vnext .evidence-detail-notes .is-unestablished {
  background: rgba(244, 220, 207, 0.66);
  border-left: 4px solid var(--j-coral);
}

body.junpa-vnext .evidence-detail > small {
  display: block;
  padding: 0.8rem;
  color: var(--j-ink-soft);
  background: rgba(232, 191, 101, 0.16);
  border-radius: 12px;
  line-height: 1.65;
}

body.junpa-vnext .safety-panel {
  margin-top: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem;
  background: var(--j-ink);
  border-radius: var(--j-radius-lg);
}

body.junpa-vnext .safety-panel h2 {
  margin: 0.4rem 0 0;
  color: #fff;
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

body.junpa-vnext .safety-panel .section-kicker {
  color: rgba(255, 255, 255, 0.8);
}

body.junpa-vnext .safety-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  list-style: none;
}

body.junpa-vnext .safety-panel li {
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  font-size: 0.7rem;
  line-height: 1.6;
}

body.junpa-vnext .safety-panel li strong {
  display: block;
  margin-bottom: 0.16rem;
  color: #f6d98f;
  font-size: 0.72rem;
}

body.junpa-vnext .nemuri-interest-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
}

body.junpa-vnext .nemuri-interest-note span,
body.junpa-vnext .nemuri-interest-note a {
  font-weight: 900;
}

body.junpa-vnext .nemuri-interest-note p {
  margin: 0;
  font-size: 0.71rem;
}

body.junpa-vnext .nemuri-interest-note a {
  color: var(--j-deep);
}

body.junpa-vnext .research-topic-strip {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

body.junpa-vnext .research-topic-strip article {
  padding: 0.95rem;
  background: rgba(216, 236, 235, 0.46);
  border: 1px solid var(--j-line);
  border-radius: 14px;
}

body.junpa-vnext .research-topic-strip span,
body.junpa-vnext .research-topic-strip strong {
  display: block;
}

body.junpa-vnext .research-topic-strip span {
  color: var(--j-coral);
  font-size: 0.63rem;
  font-weight: 900;
}

body.junpa-vnext .research-topic-strip strong {
  margin: 0.2rem 0;
  color: var(--j-ink);
  font-size: 0.78rem;
}

body.junpa-vnext .research-topic-strip p {
  margin: 0;
  font-size: 0.66rem;
}

@media (max-width: 1080px) {
  body.junpa-vnext .nemuri-section {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .nemuri-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  body.junpa-vnext .planned-plan-card {
    grid-template-columns: 1fr 1fr;
  }

  body.junpa-vnext .planned-plan-card .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  body.junpa-vnext .hero-route-grid,
  body.junpa-vnext .trust-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.junpa-vnext .safety-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.junpa-vnext .nemuri-section {
    width: calc(100% - 20px);
    padding: 0.8rem;
  }

  body.junpa-vnext .nemuri-copy {
    padding: 0 0.5rem 0.5rem;
  }

  body.junpa-vnext .nemuri-points,
  body.junpa-vnext .evidence-level-grid,
  body.junpa-vnext .research-topic-strip {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .nemuri-evidence-brief p,
  body.junpa-vnext .planned-plan-card,
  body.junpa-vnext .nemuri-interest-note {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .planned-plan-card .button {
    grid-column: auto;
    justify-self: stretch;
  }

  body.junpa-vnext .safety-panel ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.junpa-vnext .hero-route-grid,
  body.junpa-vnext .trust-cards {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .nemuri-stamp {
    right: 0.3rem;
    bottom: 2.6rem;
    width: 118px;
    min-height: 118px;
  }

  body.junpa-vnext .nemuri-actions .button {
    width: 100%;
  }
}
/* 2026-07-17: content density and layout reset */
body.junpa-vnext .junpa-hero > *,
body.junpa-vnext .nemuri-section > *,
body.junpa-vnext .price-shell > *,
body.junpa-vnext .plan-grid > * {
  min-width: 0;
}

body.junpa-vnext .junpa-hero {
  align-items: center;
}

body.junpa-vnext .pause-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-block: clamp(1rem, 3vw, 2.5rem) clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: #f8f4ec;
  background: #173d39;
  border-radius: clamp(24px, 4vw, 44px);
}

body.junpa-vnext .pause-intro h2 {
  margin: 0.55rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.16;
}

body.junpa-vnext .pause-intro > p:last-child,
body.junpa-vnext .pause-grid p,
body.junpa-vnext .pause-note {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

body.junpa-vnext .pause-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

body.junpa-vnext .pause-grid article {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

body.junpa-vnext .pause-grid span {
  color: #dfbd8d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.junpa-vnext .pause-grid h3 {
  margin: 0.55rem 0 0.4rem;
  color: #fff;
  font-size: 1rem;
}

body.junpa-vnext .pause-grid p {
  margin: 0;
  font-size: 0.78rem;
}

body.junpa-vnext .pause-note {
  grid-column: 2;
  margin: -1.8rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.7rem;
}

body.junpa-vnext .hero-copy .lead {
  max-width: 42rem;
  line-height: 1.75;
}

body.junpa-vnext .hero-route-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

body.junpa-vnext .hero-route-card {
  min-height: 128px;
}

body.junpa-vnext .hero-facts {
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

body.junpa-vnext .hero-visual {
  min-height: clamp(460px, 52vw, 580px);
}

body.junpa-vnext .hero-photo {
  inset: 3% 0 3% 5%;
  border-width: 8px;
  border-radius: 34px;
}

body.junpa-vnext .hero-photo img {
  object-position: center;
}

body.junpa-vnext .hero-photo .source-image-note {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  max-width: calc(100% - 1.3rem);
  margin: 0;
  padding: 0.4rem 0.6rem;
  color: #fff;
  background: rgba(23, 61, 57, 0.78);
  border-radius: 999px;
  font-size: 0.66rem;
}

body.junpa-vnext .nemuri-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  margin-block: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: visible;
}

body.junpa-vnext .nemuri-visual img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f5eee4;
}

body.junpa-vnext .nemuri-stamp {
  right: 0.5rem;
  bottom: 3.1rem;
  width: 112px;
  min-height: 112px;
  padding: 0.75rem;
}

body.junpa-vnext .nemuri-copy h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.9rem, 3.3vw, 2.85rem);
}

body.junpa-vnext .nemuri-lead {
  max-width: 38rem;
  line-height: 1.75;
}

body.junpa-vnext .nemuri-quick-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

body.junpa-vnext .nemuri-quick-list li {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: baseline;
  padding: 0.62rem 0.78rem;
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid rgba(116, 89, 64, 0.14);
  border-radius: 12px;
}

body.junpa-vnext .nemuri-quick-list strong {
  color: var(--j-coral);
  font-size: 0.72rem;
}

body.junpa-vnext .nemuri-quick-list span {
  color: var(--j-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

body.junpa-vnext .digital-detox-inline {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.3rem 0.8rem;
  align-items: center;
  color: #f9f5ed;
  background: #173d39;
  border-radius: 15px;
}

body.junpa-vnext .digital-detox-inline div span,
body.junpa-vnext .digital-detox-inline div strong {
  display: block;
}

body.junpa-vnext .digital-detox-inline div span {
  color: #dfbd8d;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.junpa-vnext .digital-detox-inline div strong {
  margin-top: 0.15rem;
  font-size: 0.9rem;
}

body.junpa-vnext .digital-detox-inline p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.6;
}

body.junpa-vnext .digital-detox-inline a {
  grid-column: 2;
  grid-row: 1 / 3;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

body.junpa-vnext .reference-gallery-section {
  width: min(var(--j-max), calc(100% - 32px));
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 0;
  overflow: hidden;
  background: #f8f3eb;
  border: 1px solid rgba(108, 72, 48, 0.14);
  border-radius: var(--j-radius-lg);
}

body.junpa-vnext .reference-gallery-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

body.junpa-vnext .reference-gallery-summary::-webkit-details-marker {
  display: none;
}

body.junpa-vnext .reference-gallery-summary span {
  color: var(--j-coral);
  font-size: 0.68rem;
  font-weight: 900;
}

body.junpa-vnext .reference-gallery-summary strong {
  color: var(--j-ink);
  font-size: 1rem;
}

body.junpa-vnext .reference-gallery-summary small {
  color: var(--j-muted);
  font-size: 0.7rem;
}

body.junpa-vnext .reference-gallery-section[open] .reference-gallery-summary {
  border-bottom: 1px solid rgba(108, 72, 48, 0.12);
}

body.junpa-vnext .reference-gallery-body {
  padding: 1.2rem;
}

body.junpa-vnext .reference-gallery-body > p:first-child {
  max-width: 48rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
}

body.junpa-vnext .reference-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

body.junpa-vnext .reference-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  background: #fffdf9;
  border: 1px solid rgba(78, 60, 46, 0.12);
  border-radius: 16px;
}

body.junpa-vnext .reference-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f2ece3;
}

body.junpa-vnext .reference-gallery-grid figcaption {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
}

body.junpa-vnext .reference-gallery-grid figcaption span {
  color: var(--j-coral);
  font-size: 0.66rem;
  font-weight: 900;
}

body.junpa-vnext .reference-gallery-grid figcaption strong {
  color: var(--j-ink);
}

body.junpa-vnext .reference-gallery-grid figcaption small,
body.junpa-vnext .reference-source-note {
  color: var(--j-muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

body.junpa-vnext .reference-source-note {
  margin: 0.9rem 0 0;
}

body.junpa-vnext .price-shell {
  display: block;
}

body.junpa-vnext .price-shell .section-heading {
  position: static;
  max-width: 48rem;
  margin-bottom: 1.35rem;
}

body.junpa-vnext .price-shell .plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body.junpa-vnext .plan-card {
  min-height: 0;
  padding: 1.2rem;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.85rem;
}

body.junpa-vnext .plan-card h3 {
  margin-bottom: 0;
}

body.junpa-vnext .plan-price {
  min-width: 0;
  text-align: left;
}

body.junpa-vnext .plan-card .button {
  grid-column: auto;
  width: 100%;
}

body.junpa-vnext .plan-more {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  padding: 0;
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid var(--j-line);
  border-radius: 16px;
}

body.junpa-vnext .plan-more > summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  color: var(--j-ink);
  cursor: pointer;
  font-weight: 900;
}

body.junpa-vnext .plan-more > summary small {
  color: var(--j-muted);
  font-size: 0.7rem;
  font-weight: 500;
}

body.junpa-vnext .plan-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0 0.8rem 0.8rem;
}

body.junpa-vnext .addon-strip {
  grid-column: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.75rem;
}

body.junpa-vnext .addon-strip article {
  padding: 0.75rem 0.85rem;
}

body.junpa-vnext .pricing-source-note {
  margin: 0.9rem 0 0;
  color: var(--j-muted);
  font-size: 0.72rem;
}

body.junpa-vnext .pricing-source-note a {
  color: var(--j-deep);
  font-weight: 900;
}

body.junpa-vnext .trust-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  body.junpa-vnext .nemuri-section {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .nemuri-visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  body.junpa-vnext .price-shell .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.junpa-vnext .plan-more,
  body.junpa-vnext .plan-card:last-of-type {
    grid-column: 1 / -1;
  }

  body.junpa-vnext .reference-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.junpa-vnext .pause-section {
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
    padding: 1.35rem;
  }

  body.junpa-vnext .pause-grid {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .pause-note {
    grid-column: 1;
    margin: 0;
  }

  body.junpa-vnext .hero-route-grid,
  body.junpa-vnext .price-shell .plan-grid,
  body.junpa-vnext .plan-more-grid,
  body.junpa-vnext .addon-strip,
  body.junpa-vnext .trust-cards {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .hero-route-card {
    min-height: 0;
    padding: 0.9rem 1rem;
  }

  body.junpa-vnext .hero-visual {
    min-height: 430px;
  }

  body.junpa-vnext .hero-photo {
    inset: 0;
    border-radius: 24px;
  }

  body.junpa-vnext .hero-glass-note {
    width: calc(100% - 1rem);
    right: 0.5rem;
    bottom: 0.5rem;
  }

  body.junpa-vnext .nemuri-section {
    width: calc(100% - 20px);
    padding: 0.75rem;
  }

  body.junpa-vnext .nemuri-stamp {
    right: 0.35rem;
    bottom: 2.8rem;
    width: 94px;
    min-height: 94px;
  }

  body.junpa-vnext .nemuri-copy {
    padding: 0 0.35rem 0.35rem;
  }

  body.junpa-vnext .nemuri-quick-list li {
    grid-template-columns: 4.8rem minmax(0, 1fr);
  }

  body.junpa-vnext .digital-detox-inline {
    display: block;
  }

  body.junpa-vnext .digital-detox-inline p {
    margin-top: 0.4rem;
  }

  body.junpa-vnext .digital-detox-inline a {
    display: inline-block;
    margin-top: 0.55rem;
  }

  body.junpa-vnext .nemuri-actions .button {
    width: 100%;
  }

  body.junpa-vnext .reference-gallery-section {
    width: calc(100% - 20px);
  }

  body.junpa-vnext .reference-gallery-summary {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  body.junpa-vnext .reference-gallery-grid figure {
    grid-template-columns: 1fr;
  }

  body.junpa-vnext .reference-gallery-grid img {
    height: min(62vh, 520px);
  }

  body.junpa-vnext .plan-more,
  body.junpa-vnext .plan-card:last-of-type {
    grid-column: auto;
  }

  body.junpa-vnext .plan-more > summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }
}
