:root {
  --navy: #14245a;
  --navy-deep: #0d1843;
  --navy-soft: #263a78;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --gold: #c9a45f;
  --gold-soft: #ead8ae;
  --blush: #f2c7c3;
  --sky: #cdd9f2;
  --mint: #dbe7d8;
  --ink: #202750;
  --muted: #646887;
  --line: rgba(20, 36, 90, 0.16);
  --shadow: 0 18px 48px rgba(32, 39, 80, 0.1);
  --gutter: clamp(22px, 5vw, 68px);
  --section-y: clamp(84px, 11vw, 150px);
  --radius: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(20, 36, 90, 0.055) 0.75px, transparent 0.75px);
  background-size: 7px 7px;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--blush); outline-offset: 4px; }
h1, h2, h3 {
  min-width: 0;
  word-break: auto-phrase;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: balance;
}
p, li, blockquote, summary { min-width: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 300;
  padding: 10px 16px;
  background: var(--paper);
  border-radius: 999px;
  color: var(--navy);
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 210; height: 3px; }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--gold); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 190;
  min-height: 88px;
  padding: 14px clamp(20px, 4vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 247, 239, 0.93);
  border-bottom: 1px solid transparent;
  transition: min-height 0.3s, border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(16px);
}
.site-header.is-compact { min-height: 72px; border-color: var(--line); box-shadow: 0 10px 30px rgba(20, 36, 90, 0.06); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: var(--gold-soft); font-size: 20px; transform: rotate(-12deg); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-script { font-family: "DM Serif Display", Georgia, serif; font-size: 30px; letter-spacing: 0.08em; }
.brand small { margin-top: 7px; font-size: 8px; letter-spacing: 0.25em; }
.menu-button {
  position: relative;
  z-index: 205;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(20, 36, 90, 0.25);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 36, 90, 0.1);
}
.menu-button span { position: absolute; left: 16px; width: 22px; height: 1.5px; background: var(--navy); transition: 0.3s; }
.menu-button span:nth-child(1) { top: 19px; }
.menu-button span:nth-child(2) { top: 26px; }
.menu-button span:nth-child(3) { top: 33px; }
.menu-button[aria-expanded="true"] span:nth-child(1) { top: 26px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { top: 26px; transform: rotate(-45deg); }

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 110px var(--gutter) 56px;
  color: #fff;
  background: var(--navy-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: 0.45s var(--ease);
}
.site-menu::before, .site-menu::after { content: "✦"; position: absolute; color: var(--gold-soft); opacity: 0.6; font-size: 30px; }
.site-menu::before { top: 15%; left: 9%; }
.site-menu::after { right: 13%; bottom: 13%; font-size: 18px; }
.site-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.menu-inner { width: min(820px, 100%); display: grid; grid-template-columns: 1fr 1fr; gap: 6px 58px; }
.menu-inner a { display: flex; gap: 16px; align-items: center; min-height: 66px; border-bottom: 1px dashed rgba(255,255,255,0.2); text-decoration: none; font-size: 17px; }
.menu-inner small { color: var(--gold-soft); font-size: 10px; letter-spacing: 0.15em; }

.mascot {
  display: block;
  width: 100%;
  aspect-ratio: 640 / 244;
  background-image: url("/assets/nerua-character-expressions-transparent-v2.png");
  background-repeat: no-repeat;
  background-size: 200% 300%;
  filter: drop-shadow(0 16px 20px rgba(20, 36, 90, 0.08));
}
.mascot--hello { background-position: left top; }
.mascot--tired { background-position: right top; }
.mascot--surprised { background-position: left center; }
.mascot--calm { background-position: right center; }
.mascot--tip { background-position: left bottom; }
.mascot--sleep { background-position: right bottom; }
.character-lineup { position: relative; z-index: 1; width: min(1120px, 100%); margin-inline: auto; filter: drop-shadow(0 18px 24px rgba(20, 36, 90, .1)); }

.kicker { margin: 0 0 14px; color: var(--navy-soft); font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; }
.script-label { margin: 0 0 8px; color: var(--gold); font-family: "DM Serif Display", Georgia, serif; font-style: italic; font-size: clamp(30px, 4.5vw, 55px); line-height: 1; letter-spacing: 0.02em; }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head h2, .lead-block h2, .content-section h2, .final-cta h2, .home-note h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Kaisei Decol", "Yu Mincho", serif;
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}
.section-head p:last-child { max-width: 620px; margin: 22px auto 0; color: var(--muted); }
.sticker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border: 1px solid rgba(20,36,90,.18); border-radius: 999px; background: var(--paper); color: var(--navy); font-size: 12px; font-weight: 700; transform: rotate(-1deg); box-shadow: 3px 4px 0 var(--gold-soft); }

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  padding: 145px var(--gutter) 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  right: -11vw;
  top: 74px;
  width: min(68vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--navy-deep);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.025);
}
.hero::after {
  content: "✦  ·  ✧  ·  ✦";
  position: absolute;
  top: 19%;
  right: 6%;
  color: rgba(255,255,255,.75);
  letter-spacing: 1.3em;
  transform: rotate(-8deg);
}
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.hero-copy .sticker { margin-bottom: 24px; }
.hero h1 { margin: 0; color: var(--navy); font-family: "Kaisei Decol", "Yu Mincho", serif; font-size: clamp(42px, 5.5vw, 72px); line-height: 1.28; font-weight: 500; letter-spacing: 0.07em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { margin: 28px 0 0; color: var(--muted); font-size: clamp(15px, 1.6vw, 18px); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.hero-facts li { padding: 8px 14px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--navy); font-size: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-campaign {
  width: min(430px, 100%);
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid rgba(20, 36, 90, .18);
  border-radius: 18px 8px 18px 8px;
  color: var(--navy);
  background: #fff4dc;
  box-shadow: 5px 6px 0 var(--blush);
  text-decoration: none;
  transform: rotate(-.5deg);
}
.hero-campaign span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.hero-campaign strong { font-family: "Kaisei Decol", serif; font-size: clamp(19px, 2vw, 25px); line-height: 1.3; }
.hero-campaign small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.hero-character { position: relative; z-index: 2; align-self: end; padding-bottom: 8%; }
.hero-character .mascot { position: relative; z-index: 2; width: min(680px, 55vw); margin-left: auto; }
.speech {
  position: absolute;
  z-index: 3;
  right: 7%;
  top: 10%;
  max-width: 240px;
  padding: 18px 22px;
  border: 2px solid var(--navy);
  border-radius: 24px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.6;
  transform: rotate(2deg);
  box-shadow: 7px 8px 0 var(--gold-soft);
}
.speech::after { content: ""; position: absolute; left: 38px; bottom: -13px; width: 20px; height: 20px; background: var(--paper); border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg); }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 28px; transform: translateX(-50%); color: var(--navy); font-size: 10px; text-decoration: none; letter-spacing: .2em; }
.scroll-cue::after { content: ""; display: block; width: 1px; height: 42px; margin: 8px auto 0; background: var(--gold); }

.primary-button, .gold-button, .outline-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.primary-button, .gold-button { color: #fff; background: var(--navy); box-shadow: 5px 6px 0 var(--gold-soft); }
.primary-button:hover, .gold-button:hover { transform: translateY(-3px); box-shadow: 7px 9px 0 var(--gold-soft); }
.outline-button { color: var(--navy); background: var(--paper); border: 1px solid var(--navy); }
.outline-button:hover { background: var(--sky); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.opening-campaign {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(76px, 9vw, 118px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  color: #fff;
  background: var(--navy-deep);
}
.opening-campaign::after {
  content: none;
  position: absolute;
  right: -22px;
  bottom: -54px;
  color: rgba(255, 255, 255, .045);
  font-family: "DM Serif Display", serif;
  font-size: clamp(130px, 24vw, 330px);
  line-height: .8;
  letter-spacing: -.04em;
}
.campaign-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 47% 53% 46% 54% / 56% 44% 56% 44%;
  background: #f5d7d0;
  transform: rotate(-2deg);
}
.campaign-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px dashed rgba(20, 36, 90, .22);
  border-radius: inherit;
}
.campaign-visual .mascot { position: relative; z-index: 2; width: 116%; transform: translateX(-2%) rotate(2deg); }
.campaign-moon { position: absolute; left: 8%; top: 3%; color: var(--navy); font-size: 78px; line-height: 1; transform: rotate(-18deg); }
.campaign-stars { position: absolute; right: 8%; top: 16%; color: var(--navy); font-size: 19px; letter-spacing: .3em; }
.campaign-copy { position: relative; z-index: 2; max-width: 610px; }
.campaign-copy .kicker { color: var(--gold-soft); }
.campaign-copy h2 {
  margin: 0;
  font-family: "Kaisei Decol", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: .055em;
}
.campaign-copy h2 span { color: var(--blush); }
.campaign-copy > p:not(.kicker):not(.campaign-note) { max-width: 550px; color: rgba(255,255,255,.78); }
.campaign-price {
  width: min(520px, 100%);
  margin: 26px 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px 7px 18px 7px;
  background: rgba(255,255,255,.08);
}
.campaign-price > span { padding: 9px 15px; border-radius: 999px; color: var(--navy); background: var(--gold-soft); font-weight: 700; white-space: nowrap; }
.campaign-price p { margin: 0; font-size: 17px; }
.campaign-price strong { color: #fff; font-family: "DM Serif Display", serif; font-size: clamp(42px, 6vw, 66px); line-height: .9; letter-spacing: .01em; }
.campaign-price small { font-size: 10px; }
.campaign-note { max-width: 560px; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.75; }
.opening-campaign .primary-button { margin-top: 12px; color: var(--navy); background: var(--blush); box-shadow: 5px 6px 0 var(--gold-soft); }

.voices-section { padding: var(--section-y) var(--gutter); background: #f7e8e2; }
.voice-grid { width: min(1120px, 100%); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.voice-story {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(20,36,90,.14);
  border-radius: 40px 14px 40px 14px;
  background: var(--paper);
  box-shadow: 8px 9px 0 var(--gold-soft);
}
.voice-story:nth-child(2) { background: #f1f5fd; box-shadow: 8px 9px 0 var(--sky); }
.voice-profile { display: flex; align-items: center; gap: 14px; }
.voice-profile img { width: 70px; height: 70px; flex: 0 0 70px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.voice-profile p { margin: 0; display: grid; }
.voice-profile span { color: var(--gold); font-family: "DM Serif Display", serif; font-size: 13px; letter-spacing: .1em; }
.voice-profile strong { color: var(--navy); font-size: 14px; }
.voice-profile small { color: var(--muted); font-size: 9px; }
.voice-story h3 { margin: 26px 0 18px; color: var(--navy); font-family: "Kaisei Decol", serif; font-size: clamp(23px, 2.7vw, 32px); line-height: 1.52; font-weight: 500; }
.voice-story blockquote { margin: 0; padding: 20px 0 0; border-top: 1px dashed var(--line); color: var(--muted); font-size: 13px; }
.voice-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 0; padding: 0; list-style: none; }
.voice-tags li { padding: 5px 10px; border-radius: 999px; color: var(--navy); background: #fff1ef; font-size: 10px; }
.sleep-chart { margin: 22px 0; padding: 20px; border-radius: 20px 7px 20px 7px; background: #fff; }
.sleep-chart figcaption { margin-bottom: 14px; color: var(--muted); font-size: 10px; }
.sleep-chart > div { margin-top: 12px; }
.sleep-chart p { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 5px; color: var(--muted); font-size: 11px; }
.sleep-chart strong { color: var(--navy); font-family: "DM Serif Display", serif; font-size: 18px; }
.sleep-chart i { display: block; width: var(--value); height: 13px; border-radius: 999px; background: var(--blush); }
.sleep-chart .is-after i { background: var(--navy); }
.voice-disclaimer { max-width: 840px; margin: 34px auto 0; color: var(--muted); font-size: 10px; text-align: center; }

.concerns { padding: var(--section-y) var(--gutter); background: var(--paper); }
.concern-grid { width: min(1100px, 100%); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.concern-card { position: relative; min-height: 150px; padding: 30px 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--cream); text-align: center; box-shadow: 4px 5px 0 var(--gold-soft); }
.concern-card:nth-child(2n) { box-shadow: 4px 5px 0 var(--sky); transform: translateY(10px); }
.concern-card span { display: block; font-size: 28px; line-height: 1; }
.concern-card h3 { margin: 14px 0 6px; font-size: 17px; color: var(--navy); }
.concern-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.home-note { padding: var(--section-y) var(--gutter); }
.note-wrap { width: min(1140px, 100%); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 6vw, 84px); align-items: center; }
.note-character { position: relative; padding: 34px 16px; border: 2px dashed var(--gold); border-radius: 44px; background: var(--paper); transform: rotate(-1deg); }
.note-character::before { content: "good night memo"; position: absolute; top: -15px; left: 34px; padding: 5px 14px; background: var(--blush); border-radius: 6px; color: var(--navy); font-family: "DM Serif Display", serif; font-style: italic; }
.note-copy p { color: var(--muted); }
.home-note h2 { font-size: clamp(30px, 3.7vw, 46px); line-height: 1.5; }
.mini-points { display: grid; gap: 14px; margin-top: 28px; }
.mini-point { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; padding: 16px 18px; border-radius: 18px; background: var(--paper); border: 1px solid var(--line); }
.mini-point b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; font-family: "DM Serif Display", serif; }
.mini-point strong { display: block; color: var(--navy); }
.mini-point small { color: var(--muted); }

.method-section { padding: var(--section-y) var(--gutter); color: #fff; background: var(--navy-deep); }
.method-section .section-head h2, .method-section .section-head p:last-child { color: #fff; }
.method-section .kicker { color: var(--gold-soft); }
.method-flow { width: min(1080px, 100%); margin-inline: auto; display: grid; grid-template-columns: 1fr 92px 1fr; gap: 22px; align-items: center; }
.method-card { padding: 38px; min-height: 330px; border-radius: 34px; color: var(--ink); background: var(--paper); box-shadow: 8px 9px 0 rgba(234,216,174,.75); }
.method-card:nth-child(3) { box-shadow: 8px 9px 0 rgba(205,217,242,.75); }
.method-number { font-family: "DM Serif Display", serif; color: var(--gold); font-size: 54px; line-height: 1; }
.method-card h3 { margin: 16px 0 10px; color: var(--navy); font-family: "Kaisei Decol", serif; font-size: 25px; }
.method-card p { margin: 0; color: var(--muted); font-size: 14px; }
.method-arrow { text-align: center; font-size: 36px; color: var(--gold-soft); }
.method-link { margin-top: 44px; text-align: center; }

.aroma-section { padding: var(--section-y) var(--gutter); background: var(--paper); }
.aroma-grid { width: min(1100px, 100%); margin-inline: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.aroma-card { min-height: 230px; padding: 28px 22px; border: 1px solid var(--line); border-radius: 50% 50% 28px 28px / 36% 36% 28px 28px; background: var(--cream); text-align: center; }
.aroma-card:nth-child(2) { background: #fff6dc; }
.aroma-card:nth-child(3) { background: #edf3e8; }
.aroma-card:nth-child(4) { background: #fff0f0; }
.aroma-icon { font-size: 32px; }
.aroma-card h3 { margin: 12px 0 6px; color: var(--navy); font-family: "DM Serif Display", serif; font-size: 25px; }
.aroma-card p { margin: 0; color: var(--muted); font-size: 12px; }
.aroma-more { margin-top: 42px; text-align: center; }

.price-preview { padding: var(--section-y) var(--gutter); }
.course-grid { width: min(1080px, 100%); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.course-card { position: relative; padding: 36px 26px 30px; border: 1px solid var(--line); border-radius: 32px; background: var(--paper); box-shadow: var(--shadow); text-align: center; }
.course-card.featured { margin-top: -16px; border: 2px solid var(--gold); }
.course-card.featured::before { content: "人気"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg); padding: 5px 20px; border-radius: 999px; background: var(--blush); color: var(--navy); font-size: 12px; font-weight: 700; }
.course-time { color: var(--navy); font-family: "DM Serif Display", serif; font-size: 38px; line-height: 1; }
.course-time small { font-family: "Zen Maru Gothic", sans-serif; font-size: 12px; }
.course-card h3 { margin: 16px 0 6px; color: var(--navy); font-size: 18px; }
.course-price { margin: 14px 0; color: var(--gold); font-size: 13px; }
.course-price strong { font-family: "DM Serif Display", serif; font-size: 34px; }
.course-card p:last-child { color: var(--muted); font-size: 12px; }
.price-note { max-width: 720px; margin: 28px auto 0; color: var(--muted); font-size: 12px; text-align: center; }
.price-link { margin-top: 34px; text-align: center; }

.visit-section { padding: var(--section-y) var(--gutter); background: #eef2fa; }
.visit-flow { width: min(1080px, 100%); margin-inline: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: visit; }
.visit-step { counter-increment: visit; padding: 26px 20px; border-radius: 24px; background: var(--paper); border: 1px solid var(--line); text-align: center; }
.visit-step::before { content: counter(visit, decimal-leading-zero); display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 14px; border-radius: 50%; background: var(--navy); color: #fff; font-family: "DM Serif Display", serif; }
.visit-step h3 { margin: 0 0 8px; color: var(--navy); font-size: 16px; }
.visit-step p { margin: 0; color: var(--muted); font-size: 12px; }

.character-section { position: relative; overflow: hidden; padding: var(--section-y) var(--gutter); background: var(--paper); }
.character-section::before { content: ""; position: absolute; left: 50%; bottom: -28%; width: min(1060px, 96vw); aspect-ratio: 2 / 1; border-radius: 50%; background: #edf2fb; transform: translateX(-50%); }
.character-section .section-head, .character-caption { position: relative; z-index: 1; }
.character-caption { max-width: 700px; margin: 30px auto 0; color: var(--muted); text-align: center; font-size: 13px; }

.journal-section { padding: var(--section-y) var(--gutter); background: #eef4ec; }
.journal-grid { width: min(1120px, 100%); margin-inline: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.journal-card { min-width: 0; }
.journal-card a { height: 100%; display: grid; grid-template-rows: 210px 1fr; overflow: hidden; border: 1px solid rgba(20,36,90,.14); border-radius: 30px 10px 30px 10px; color: inherit; background: var(--paper); box-shadow: 6px 7px 0 var(--gold-soft); text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.journal-card:nth-child(2) a { box-shadow: 6px 7px 0 var(--sky); }
.journal-card:nth-child(3) a { box-shadow: 6px 7px 0 var(--blush); }
.journal-card a:hover { transform: translateY(-5px); }
.journal-card img { width: 100%; height: 100%; object-fit: cover; }
.journal-card a > div { display: flex; flex-direction: column; padding: 23px; }
.journal-card p { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 12px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.journal-card p span { color: var(--navy); font-weight: 700; }
.journal-card h3 { margin: 16px 0 22px; color: var(--navy); font-family: "Kaisei Decol", serif; font-size: 18px; line-height: 1.65; font-weight: 500; }
.journal-card small { margin-top: auto; color: var(--gold); font-weight: 700; }
.journal-all { margin: 42px 0 0; text-align: center; }

.faq-section { padding: var(--section-y) var(--gutter); }
.faq-list { width: min(860px, 100%); margin-inline: auto; }
.faq-list details { border-bottom: 1px dashed rgba(20,36,90,.25); background: transparent; }
.faq-list summary { position: relative; padding: 24px 58px 24px 18px; color: var(--navy); cursor: pointer; list-style: none; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q"; margin-right: 14px; color: var(--gold); font-family: "DM Serif Display", serif; font-size: 22px; }
.faq-list summary span, .faq-list summary::after { position: absolute; right: 22px; top: 50%; width: 16px; height: 1px; background: var(--navy); content: ""; transition: transform .25s; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { margin: 0; padding: 0 54px 24px; color: var(--muted); }
.faq-more { margin-top: 36px; text-align: center; }

.final-cta { position: relative; overflow: hidden; padding: 110px var(--gutter) 128px; color: #fff; background: var(--navy-deep); text-align: center; }
.final-cta::before { content: "☾"; position: absolute; left: 6%; top: -28px; color: rgba(234,216,174,.16); font-size: 210px; line-height: 1; transform: rotate(-18deg); }
.final-cta::after { content: "✦　·　✧　·　✦"; position: absolute; right: 7%; top: 28%; color: rgba(255,255,255,.45); }
.final-cta h2 { position: relative; color: #fff; }
.final-cta p { position: relative; color: rgba(255,255,255,.72); }
.final-cta .gold-button { position: relative; margin-top: 30px; color: var(--navy); background: var(--gold-soft); box-shadow: 5px 6px 0 rgba(255,255,255,.24); }
.final-mascot { position: relative; width: min(430px, 80vw); margin: 28px auto -58px; }

.site-footer { padding: 58px var(--gutter) 92px; background: #f1e9dc; text-align: center; color: var(--muted); }
.footer-brand { justify-content: center; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin: 26px 0; }
.site-footer nav a { color: var(--navy); font-size: 12px; text-decoration: none; }
.site-footer p { max-width: 760px; margin: 0 auto 20px; font-size: 11px; }
.site-footer > small { font-size: 10px; }
.fixed-booking {
  position: fixed;
  z-index: 170;
  right: 22px;
  bottom: 20px;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 4px 5px 0 var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.subpage-hero { position: relative; min-height: 610px; padding: 150px var(--gutter) 72px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); align-items: center; gap: 40px; overflow: hidden; background: #eef2fa; }
.subpage-hero::before { content: ""; position: absolute; right: -12%; top: 15%; width: 54%; aspect-ratio: 1; border-radius: 50%; background: var(--gold-soft); opacity: .6; }
.subpage-hero-copy, .subpage-character { position: relative; z-index: 1; }
.subpage-hero h1 { margin: 0; color: var(--navy); font-family: "Kaisei Decol", serif; font-size: clamp(38px, 6vw, 72px); font-weight: 500; line-height: 1.35; letter-spacing: .06em; }
.subpage-hero p:not(.script-label):not(.kicker) { max-width: 600px; color: var(--muted); }
.subpage-character .mascot { width: min(560px, 44vw); margin-left: auto; }
.subpage-speech { position: absolute; z-index: 3; top: -10px; right: 6%; padding: 12px 18px; border: 1px solid var(--navy); border-radius: 18px; background: var(--paper); color: var(--navy); font-size: 12px; font-weight: 700; transform: rotate(2deg); }
.breadcrumb { padding: 18px var(--gutter); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); color: var(--muted); font-size: 11px; }
.breadcrumb a { color: var(--navy); text-underline-offset: 4px; }
.page-content { padding: var(--section-y) var(--gutter); background: var(--cream); }
.content-inner { width: min(1000px, 100%); margin-inline: auto; }
.lead-block { max-width: 760px; margin: 0 auto 78px; text-align: center; }
.lead-block p:last-child { margin: 24px auto 0; color: var(--muted); }
.content-section { margin-top: 84px; padding-top: 84px; border-top: 2px dashed rgba(20,36,90,.15); }
.content-section > p { color: var(--muted); }
.content-section > h2 + p { margin-top: 22px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.content-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 4px 5px 0 var(--sky); }
.content-card:nth-child(2n) { box-shadow: 4px 5px 0 var(--gold-soft); }
.content-card span { color: var(--gold); font-family: "DM Serif Display", serif; font-size: 13px; letter-spacing: .12em; }
.content-card h3 { margin: 10px 0 8px; color: var(--navy); font-size: 18px; }
.content-card p { margin: 0; color: var(--muted); font-size: 13px; }
.character-tip { display: grid; grid-template-columns: minmax(260px, .8fr) 1.2fr; gap: 36px; align-items: center; margin: 38px 0; padding: 30px; border: 2px dashed var(--gold); border-radius: 32px; background: var(--paper); }
.character-tip .mascot { min-width: 260px; }
.character-tip h3 { margin: 0 0 10px; color: var(--navy); font-family: "Kaisei Decol", serif; font-size: 24px; }
.character-tip p { margin: 0; color: var(--muted); }
.simple-list { margin: 28px 0 0; padding: 0; list-style: none; }
.simple-list li { position: relative; padding: 13px 12px 13px 36px; border-bottom: 1px dashed var(--line); }
.simple-list li::before { content: "☾"; position: absolute; left: 8px; top: 13px; color: var(--gold); }
.simple-list a { color: var(--navy); font-weight: 700; text-underline-offset: 4px; }
.notice-box { margin-top: 32px; padding: 24px 26px; border: 1px solid rgba(201,164,95,.55); border-radius: 20px; background: #fff8e8; color: var(--muted); font-size: 13px; }
.notice-box strong { display: block; margin-bottom: 6px; color: var(--navy); }
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.process-line div { min-height: 126px; padding: 22px 16px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line); text-align: center; }
.process-line span { display: block; margin-bottom: 10px; color: var(--gold); font-family: "DM Serif Display", serif; font-size: 24px; }
.process-line strong { color: var(--navy); font-size: 13px; }
.oil-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.oil-group { padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); }
.oil-group:nth-child(2) { background: #fff8e5; }
.oil-group:nth-child(3) { background: #eff5eb; }
.oil-group:nth-child(4) { background: #fff1f0; }
.oil-group h3 { margin: 0; color: var(--navy); font-family: "DM Serif Display", serif; font-size: 30px; }
.oil-group > p { margin: 5px 0 18px; color: var(--muted); font-size: 12px; }
.oil-list { display: flex; flex-wrap: wrap; gap: 7px; }
.oil-list span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--navy); font-size: 11px; }
.course-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.course-detail { padding: 34px 24px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); text-align: center; box-shadow: 5px 6px 0 var(--gold-soft); }
.course-detail.featured { border: 2px solid var(--gold); transform: translateY(-8px); box-shadow: 5px 6px 0 var(--blush); }
.course-detail h3 { margin: 12px 0; color: var(--navy); }
.course-detail .price { margin: 14px 0; color: var(--gold); }
.course-detail .price strong { font-family: "DM Serif Display", serif; font-size: 40px; }
.course-detail p { color: var(--muted); font-size: 12px; }
.access-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; margin-top: 36px; padding: 28px; border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: var(--shadow); }
.access-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 20px; }
.access-info { align-self: center; }
.access-info address { color: var(--navy); font-style: normal; font-size: 17px; }
.access-info p { color: var(--muted); font-size: 13px; }
.contact-panel { padding: clamp(36px, 7vw, 74px); border: 2px dashed var(--gold); border-radius: 42px; background: var(--paper); text-align: center; box-shadow: var(--shadow); }
.contact-panel h2 { margin: 0; color: var(--navy); font-family: "Kaisei Decol", serif; font-size: clamp(30px, 4.6vw, 50px); }
.contact-panel p { max-width: 680px; margin: 18px auto; color: var(--muted); }
.contact-panel .mascot { width: min(430px, 90%); margin: 8px auto 0; }
.centered-link { margin: 38px auto 0; display: flex; width: max-content; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero::before { width: 76vw; }
  .opening-campaign { grid-template-columns: minmax(300px, .85fr) 1.15fr; gap: 38px; }
  .campaign-visual { min-height: 340px; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-card:last-child { grid-column: 1 / -1; width: min(540px, 100%); justify-self: center; }
  .method-flow { grid-template-columns: 1fr 60px 1fr; }
  .aroma-grid { grid-template-columns: 1fr 1fr; }
  .visit-flow, .process-line { grid-template-columns: 1fr 1fr; }
  .course-detail-grid { grid-template-columns: 1fr; }
  .course-detail.featured { transform: none; }
}

@media (max-width: 700px) {
  :root { --gutter: 22px; --section-y: 82px; --radius: 24px; }
  body { padding-bottom: 58px; font-size: 14px; }
  .site-header { min-height: 72px; padding-inline: 18px; }
  .site-header.is-compact { min-height: 66px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-script { font-size: 24px; }
  .brand small { font-size: 6px; }
  .menu-button { width: 48px; height: 48px; }
  .menu-button span { left: 14px; width: 20px; }
  .menu-button span:nth-child(1) { top: 16px; }
  .menu-button span:nth-child(2) { top: 23px; }
  .menu-button span:nth-child(3) { top: 30px; }
  .menu-button[aria-expanded="true"] span:nth-child(1), .menu-button[aria-expanded="true"] span:nth-child(3) { top: 23px; }
  .site-menu { place-items: start stretch; overflow-y: auto; padding: 92px 26px 46px; }
  .menu-inner { grid-template-columns: 1fr; gap: 0; }
  .menu-inner a { min-height: 56px; font-size: 15px; }

  .section-head { margin-bottom: 42px; }
  .section-head h2, .lead-block h2, .content-section h2, .final-cta h2, .home-note h2 { font-size: clamp(28px, 8.4vw, 36px); line-height: 1.48; letter-spacing: .035em; }
  .hero { min-height: auto; padding-top: 112px; padding-bottom: 52px; grid-template-columns: 1fr; align-content: start; gap: 34px; }
  .hero::before { top: auto; bottom: 38px; right: -30%; width: 125vw; }
  .hero::after { top: auto; bottom: 18%; right: 1%; font-size: 10px; }
  .hero h1 { font-size: clamp(36px, 10.2vw, 44px); line-height: 1.34; letter-spacing: .045em; }
  .hero-lead { margin-top: 20px; }
  .hero-campaign { grid-template-columns: 54px 1fr; gap: 0 12px; padding: 11px 13px; }
  .hero-campaign span { width: 54px; height: 54px; font-size: 9px; }
  .hero-campaign strong { font-size: 19px; }
  .hero-actions { margin-top: 22px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr); gap: 9px; }
  .hero-actions a { min-width: 0; padding-inline: 10px; font-size: 12px; white-space: nowrap; }
  .hero-character { padding-bottom: 18px; }
  .hero-character .mascot { width: 112%; margin-left: -6%; }
  .speech { top: -4px; right: 0; max-width: 190px; padding: 12px 16px; font-size: 12px; }
  .scroll-cue { display: none; }

  .opening-campaign { min-height: 0; grid-template-columns: 1fr; gap: 34px; }
  .campaign-copy { order: -1; }
  .campaign-copy h2 { font-size: clamp(31px, 9vw, 39px); line-height: 1.45; }
  .campaign-visual { min-height: 290px; width: min(420px, 100%); margin-inline: auto; }
  .campaign-visual .mascot { width: 118%; }
  .campaign-price { gap: 12px; padding: 15px; }
  .campaign-price > span { padding-inline: 12px; }
  .campaign-price strong { font-size: clamp(40px, 13vw, 56px); }
  .voice-grid { grid-template-columns: 1fr; gap: 20px; }
  .voice-story { border-radius: 28px 10px 28px 10px; }
  .voice-story h3 { font-size: 23px; }
  .concern-grid { grid-template-columns: 1fr; gap: 12px; }
  .concern-card { min-height: 0; padding: 22px 18px; }
  .concern-card:nth-child(2n) { transform: none; }
  .note-wrap { grid-template-columns: 1fr; }
  .note-copy { order: -1; }
  .method-flow { grid-template-columns: 1fr; }
  .method-arrow { transform: rotate(90deg); }
  .method-card { min-height: 0; padding: 28px; }
  .aroma-grid { gap: 12px; }
  .aroma-card { min-height: 210px; padding: 24px 12px; }
  .course-grid { grid-template-columns: 1fr; }
  .course-card.featured { margin-top: 0; }
  .visit-flow, .process-line { grid-template-columns: 1fr 1fr; gap: 10px; }
  .visit-step, .process-line div { min-height: 130px; padding: 20px 12px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card:last-child { grid-column: auto; width: 100%; }
  .journal-card a { grid-template-rows: 190px 1fr; border-radius: 24px 8px 24px 8px; }
  .final-cta { padding-block: 88px 104px; }

  .subpage-hero { min-height: 660px; padding-top: 124px; grid-template-columns: 1fr; align-content: start; gap: 24px; }
  .subpage-hero h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.42; letter-spacing: .04em; }
  .subpage-hero::before { right: -35%; top: 42%; width: 120%; }
  .subpage-character .mascot { width: 118%; margin: 0 0 0 -9%; }
  .subpage-speech { top: -12px; right: 0; }
  .lead-block { margin-bottom: 62px; }
  .content-section { margin-top: 62px; padding-top: 62px; }
  .content-grid, .oil-groups, .access-card, .character-tip { grid-template-columns: 1fr; }
  .content-inner > *, .content-section, .content-card, .oil-group { min-width: 0; }
  .character-tip { padding: 22px; }
  .character-tip .mascot { min-width: 0; }
  .oil-group { padding: 24px; }
  .access-card { padding: 18px; }
  .access-card img { min-height: 240px; }
  .faq-list summary { padding-left: 8px; }
  .faq-list details p { padding-left: 12px; padding-right: 32px; }
  .fixed-booking { inset: auto 0 0; right: 0; bottom: 0; justify-content: center; min-height: 58px; border-radius: 0; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Opening price guide */
.opening-badge {
  display: inline-block;
  margin: 0 0 8px !important;
  padding: 6px 12px;
  color: #fff !important;
  background: var(--navy);
  border-radius: 999px;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-lines {
  display: grid;
  gap: 6px;
  margin: 16px 0 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
}

.price-lines dt,
.price-lines dd {
  margin: 0;
}

.price-lines dd {
  color: var(--navy);
  font-weight: 700;
}

.wellness-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.wellness-ticket-grid article {
  padding: 26px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px 10px 26px 10px;
}

.wellness-ticket-grid article.featured {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.wellness-ticket-grid h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 18px;
}

.wellness-ticket-grid article.featured h3 {
  color: #fff;
}

.wellness-ticket-grid h3 small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.wellness-ticket-grid article.featured h3 small {
  color: rgba(255, 255, 255, 0.65);
}

.wellness-ticket-grid p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 10px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.wellness-ticket-grid article.featured p {
  border-color: rgba(255, 255, 255, 0.18);
}

.wellness-ticket-grid p > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.wellness-ticket-grid p > strong {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  line-height: 1.2;
}

.wellness-ticket-grid p > small {
  color: var(--muted);
  font-size: 9px;
}

.wellness-ticket-grid article.featured p > small {
  color: rgba(255, 255, 255, 0.62);
}

.ticket-terms {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .wellness-ticket-grid {
    grid-template-columns: 1fr;
  }

  .wellness-ticket-grid article {
    border-radius: 22px 8px 22px 8px;
  }
}

/* Midnight-blue sleep editorial refresh */
:root {
  --navy: #0a214f;
  --navy-deep: #051537;
  --navy-soft: #1e4e91;
  --cream: #edf4ff;
  --paper: #f9fbff;
  --gold: #d6b76a;
  --gold-soft: #ead79e;
  --blush: #efc9c4;
  --sky: #bdd3f6;
  --mint: #dce8f7;
  --ink: #132a55;
  --muted: #5f7091;
  --line: rgba(30, 78, 145, 0.2);
  --shadow: 0 22px 60px rgba(5, 21, 55, 0.12);
}

body {
  background: var(--cream);
  letter-spacing: .025em;
}

body::before {
  opacity: .9;
  background-image:
    radial-gradient(circle at 16% 19%, rgba(255,255,255,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 13%, rgba(214,183,106,.48) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 76%, rgba(255,255,255,.38) 0 1px, transparent 1.5px);
  background-size: 92px 92px, 137px 137px, 173px 173px;
}

.site-header {
  color: #fff;
  background: rgba(5, 21, 55, .9);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: none;
}

.site-header.is-compact { border-color: rgba(255,255,255,.12); box-shadow: 0 12px 34px rgba(0,0,0,.18); }
.brand { color: #fff; }
.brand-mark { color: var(--gold-soft); background: transparent; border: 1px solid rgba(214,183,106,.58); }
.menu-button { border-color: rgba(255,255,255,.35); background: rgba(10,33,79,.72); box-shadow: 0 8px 26px rgba(0,0,0,.18); }
.menu-button span { background: #fff; }
.site-menu { background: #06163a; }
.menu-inner a { border-bottom-style: solid; border-bottom-color: rgba(255,255,255,.15); }

.section-head h2,
.lead-block h2,
.content-section h2,
.final-cta h2,
.home-note h2,
.subpage-hero h1,
.contact-panel h2 {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  letter-spacing: .035em;
  text-wrap: balance;
}

.kicker { color: #5475ad; letter-spacing: .19em; }
.script-label { color: var(--gold); }
.sticker { border: 0; border-radius: 0; background: transparent; box-shadow: none; transform: none; }

.hero {
  min-height: min(960px, 100svh);
  color: #fff;
  background:
    radial-gradient(circle at 76% 33%, rgba(89,139,209,.22) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 23%, rgba(255,255,255,.75) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 47%, #2f6ab7 0, #17488f 17%, #092656 42%, transparent 42.4%),
    #051537;
  background-size: 80px 80px, 126px 126px, auto, auto;
}

.hero::before {
  right: -4%;
  top: 14%;
  width: min(54vw, 760px);
  background: radial-gradient(circle at 34% 28%, #bdd8ff 0, #6b9bd9 24%, #2f65ac 58%, #153d7a 100%);
  box-shadow: 0 0 100px rgba(91,146,221,.28), inset -40px -32px 80px rgba(4,21,55,.28);
  opacity: .8;
}

.hero::after { top: 17%; color: rgba(255,255,255,.72); }
.hero-copy .sticker { color: var(--gold-soft); letter-spacing: .12em; }
.hero h1 { color: #fff; font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", serif; font-size: clamp(44px, 5.2vw, 70px); line-height: 1.32; }
.hero h1 em { color: #b9d4ff; }
.hero-lead { color: rgba(241,247,255,.78); }
.hero-facts { gap: 0; }
.hero-facts li { position: relative; padding: 4px 15px 4px 18px; border: 0; border-radius: 0; color: rgba(255,255,255,.78); background: transparent; }
.hero-facts li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 8px; }
.hero-campaign { border-color: rgba(214,183,106,.55); border-radius: 2px; color: #fff; background: rgba(7,28,67,.74); box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 18px 42px rgba(0,0,0,.18); transform: none; }
.hero-campaign span { color: var(--navy-deep); background: var(--gold-soft); }
.hero-campaign small { color: rgba(255,255,255,.56); }
.hero-character { padding-bottom: 5%; }
.hero-character .mascot { filter: drop-shadow(0 24px 30px rgba(0,0,0,.28)); }
@media (min-width: 761px) {
  .hero-character .mascot { width: min(790px, 62vw); margin-left: -5%; }
}
.speech { border: 1px solid rgba(255,255,255,.42); border-radius: 2px; color: #fff; background: rgba(5,21,55,.82); box-shadow: 7px 8px 0 rgba(214,183,106,.32); }
.speech::after { background: #0a214f; border-color: rgba(255,255,255,.42); }
.scroll-cue { color: rgba(255,255,255,.68); }
.primary-button, .gold-button { color: var(--navy-deep); background: var(--gold-soft); box-shadow: none; }
.primary-button:hover, .gold-button:hover { box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.outline-button { color: #fff; background: transparent; border-color: rgba(255,255,255,.58); }
.outline-button:hover { color: var(--navy-deep); background: #fff; }

.opening-campaign {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.78) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 62%, rgba(103,151,220,.22) 0 1px, transparent 1.5px),
    #0a2b63;
  background-size: 118px 118px, 86px 86px, auto;
}
.opening-campaign::before { content: ""; position: absolute; inset: auto -8% -180px; height: 300px; border-radius: 50% 50% 0 0; background: rgba(33,78,139,.55); }
.campaign-visual { min-height: 430px; border-radius: 50%; background: radial-gradient(circle at 35% 28%, #b8d6ff 0, #5f91d2 32%, #275c9e 65%, #12376e 100%); box-shadow: 0 0 80px rgba(103,151,220,.3); transform: none; }
.campaign-visual::before { inset: 12%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.campaign-visual .mascot { width: 118%; transform: translateX(-2%); filter: drop-shadow(0 24px 30px rgba(0,0,0,.28)); }
.campaign-moon, .campaign-stars { color: rgba(255,255,255,.8); }
.campaign-copy h2 span { color: #b9d4ff; }
.campaign-price { border-radius: 2px; background: rgba(255,255,255,.06); }
.campaign-price > span { color: var(--navy-deep); background: var(--gold-soft); }
.opening-campaign .primary-button { color: var(--navy-deep); background: var(--gold-soft); box-shadow: none; }

.voices-section { background: #e6efff; }
.voice-story { border-radius: 0; background: rgba(255,255,255,.92); box-shadow: 12px 12px 0 #c7d9f5; }
.voice-story:nth-child(2) { background: #f7faff; box-shadow: 12px 12px 0 #b8cdef; }
.voice-profile img { border-color: #e7effc; }
.voice-tags li { border-radius: 2px; background: #e5efff; }
.sleep-chart { border-radius: 0; background: #edf4ff; }
.sleep-chart i { background: #7ea1d8; }
.sleep-chart .is-after i { background: #153f7f; }

.concerns { color: #fff; background: #071d46; }
.concerns .section-head h2 { color: #fff; }
.concerns .section-head p:last-child { color: rgba(255,255,255,.66); }
.concerns .kicker { color: var(--gold-soft); }
.concern-grid { grid-template-columns: repeat(2, 1fr); gap: 0 52px; }
.concern-card { min-height: 0; display: grid; grid-template-columns: 42px 1fr; column-gap: 16px; padding: 25px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); border-radius: 0; color: #fff; background: transparent; text-align: left; box-shadow: none; }
.concern-card:nth-child(2n) { box-shadow: none; transform: none; }
.concern-card span { grid-row: 1 / 3; align-self: center; color: #9bb9eb; }
.concern-card h3 { margin: 0 0 3px; color: #fff; }
.concern-card p { color: rgba(255,255,255,.58); }

.home-note { background: #edf4ff; }
.note-character { border: 1px solid rgba(30,78,145,.25); border-radius: 4px; background: #dce9ff; transform: none; }
.note-character::before { color: #fff; background: var(--navy-soft); }
.mini-point { border-radius: 0; background: rgba(255,255,255,.84); }
.mini-point b { background: var(--navy-soft); }

.method-section { background: #06183d; }
.method-card { border: 1px solid rgba(255,255,255,.14); border-radius: 0; color: #fff; background: #0d2d66; box-shadow: 0 6px 0 rgba(214,183,106,.48); }
.method-card:nth-child(3) { background: #123a79; box-shadow: 0 6px 0 rgba(142,176,226,.58); }
.method-card h3 { color: #fff; }
.method-card p { color: rgba(255,255,255,.7); }

.aroma-section { background: #f2f6ff; }
.aroma-card { border-color: rgba(30,78,145,.18); border-radius: 50% 50% 8px 8px / 34% 34% 8px 8px; background: #e5efff; }
.aroma-card:nth-child(2) { background: #eaf1ff; }
.aroma-card:nth-child(3) { background: #dce9fa; }
.aroma-card:nth-child(4) { background: #e9e8f8; }

.price-preview { background: #dce8fa; }
.course-card { border-radius: 0; background: rgba(255,255,255,.9); box-shadow: 8px 8px 0 #b9cdeb; }
.course-card.featured { border-color: var(--navy-soft); box-shadow: 8px 8px 0 #7f9fd0; }
.course-card.featured::before { border-radius: 0; color: #fff; background: var(--navy-soft); }
.opening-badge { border-radius: 0; background: var(--navy-soft); }

.visit-section { background: #f8fbff; }
.visit-flow { gap: 0; }
.visit-step { position: relative; border: 0; border-top: 1px solid #8eabd5; border-radius: 0; background: transparent; }
.visit-step::before { background: var(--navy-soft); box-shadow: 0 0 0 6px #f8fbff; }

.journal-section { color: #fff; background: #071b43; }
.journal-section .section-head h2 { color: #fff; }
.journal-section .section-head p:last-child { color: rgba(255,255,255,.64); }
.journal-section .kicker { color: var(--gold-soft); }
.journal-section .journal-card a { grid-template-rows: auto 1fr; border-color: rgba(255,255,255,.12); border-radius: 0; background: #0e2e67; box-shadow: 7px 7px 0 #234d8f; }
.journal-section .journal-card img { width: 100%; height: auto; aspect-ratio: 1280 / 670; object-fit: contain; background: #dfeaf5; }
.journal-card:nth-child(2) a, .journal-card:nth-child(3) a { box-shadow: 7px 7px 0 #234d8f; }
.journal-card h3, .journal-card p span { color: #fff; }
.journal-card p { color: #9fb5db; }
.journal-card small { color: var(--gold-soft); }
.journal-section .outline-button { border-color: rgba(255,255,255,.48); }

.faq-section { background: #eef4ff; }
.faq-list details { border-bottom-style: solid; border-bottom-color: rgba(30,78,145,.2); }
.final-cta { background: #041332; }
.site-footer { color: #9eb0cf; background: #020d24; }
.site-footer nav a, .site-footer .brand { color: #fff; }
.fixed-booking { color: var(--navy-deep); background: var(--gold-soft); box-shadow: none; }

.subpage-hero {
  color: #fff;
  background:
    radial-gradient(circle at 13% 28%, rgba(255,255,255,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 18%, rgba(214,183,106,.62) 0 1px, transparent 1.5px),
    #071c46;
  background-size: 112px 112px, 87px 87px, auto;
}
.subpage-hero::before { right: -5%; top: 10%; width: 48%; background: radial-gradient(circle at 35% 28%, #a9c9f3, #4d82c7 40%, #204f91 72%, #10356f); opacity: .88; box-shadow: 0 0 80px rgba(82,132,199,.26); }
.subpage-hero h1 { color: #fff; }
.subpage-hero p:not(.script-label):not(.kicker) { color: rgba(255,255,255,.7); }
.subpage-speech { border-radius: 2px; border-color: rgba(255,255,255,.42); color: #fff; background: rgba(5,21,55,.82); }
.breadcrumb { color: #9eb1d4; border-color: rgba(255,255,255,.1); background: #06183d; }
.breadcrumb a { color: #fff; }
.page-content { background: #edf4ff; }
.content-section { border-top-style: solid; border-top-color: rgba(30,78,145,.2); }
.content-card { border-radius: 0; background: rgba(255,255,255,.9); box-shadow: 6px 6px 0 #bed1ef; }
.content-card:nth-child(2n) { box-shadow: 6px 6px 0 #d4ddf1; }
.character-tip { border: 1px solid rgba(30,78,145,.24); border-radius: 0; background: #dce9ff; }
.notice-box { border-radius: 0; border-color: rgba(30,78,145,.25); background: #e3edff; }
.process-line div { border-radius: 0; background: rgba(255,255,255,.9); }
.oil-group { border-radius: 0; background: #f9fbff; }
.oil-group:nth-child(2) { background: #eaf1ff; }
.oil-group:nth-child(3) { background: #dce9fa; }
.oil-group:nth-child(4) { background: #ececfa; }
.course-detail { border-radius: 0; box-shadow: 6px 6px 0 #bed1ef; }
.course-detail.featured { border-color: var(--navy-soft); box-shadow: 6px 6px 0 #799bcf; }
.access-card { border-radius: 0; background: #f9fbff; box-shadow: 10px 10px 0 #bed1ef; }
.access-card img { border-radius: 0; }
.contact-panel { border: 1px solid rgba(30,78,145,.25); border-radius: 0; background: #f9fbff; box-shadow: 10px 10px 0 #bed1ef; }
.wellness-ticket-grid article { border-radius: 0; }

/* Official menu and price guide */
.price-time-guide {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: 28px 54px;
  margin: 70px 0 18px;
  padding: 34px clamp(24px, 4vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 89% 22%, rgba(255,255,255,.72) 0 1px, transparent 1.4px),
    radial-gradient(circle at 74% 78%, rgba(124,170,232,.42) 0 1px, transparent 1.5px),
    #0a2b63;
  background-size: 112px 112px, 84px 84px, auto;
}

.price-time-guide .kicker { color: var(--gold-soft); }
.price-time-guide h2 { margin: 8px 0 0; color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.price-time-guide ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.price-time-guide li { position: relative; display: grid; align-content: center; min-height: 112px; padding: 18px 22px; border-left: 1px solid rgba(255,255,255,.2); }
.price-time-guide li:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.price-time-guide li span { color: var(--gold-soft); font-family: "DM Serif Display", serif; font-size: 15px; }
.price-time-guide li strong { margin-top: 8px; font-size: 14px; font-weight: 500; }
.price-time-guide li small { margin-top: 3px; color: rgba(255,255,255,.62); font-size: 11px; }
.price-time-guide > p { grid-column: 2; margin: -14px 0 0; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.8; }

.course-detail .treatment-time { margin: -2px 0 10px; color: var(--navy-soft); font-size: 11px; letter-spacing: .08em; }
.course-detail .price small { margin-left: 6px; color: var(--muted); font-family: "Zen Maru Gothic", sans-serif; font-size: 9px; }
.course-detail-grid .course-detail { display: flex; flex-direction: column; }
.course-detail-grid .course-detail > p:last-child { margin-top: auto; padding-top: 10px; line-height: 1.9; }

.wellness-ticket-grid .ticket-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.wellness-ticket-grid .ticket-row > span { grid-row: 1 / 4; color: var(--gold); font-size: 12px; font-weight: 700; }
.wellness-ticket-grid .ticket-row > strong { font-family: "DM Serif Display", serif; font-size: 25px; line-height: 1.15; }
.wellness-ticket-grid .ticket-row > small { color: var(--muted); font-size: 10px; }
.wellness-ticket-grid .ticket-row > em { color: #a64e53; font-size: 10px; font-style: normal; font-weight: 700; }
.wellness-ticket-grid article.featured .ticket-row { border-color: rgba(255,255,255,.18); }
.wellness-ticket-grid article.featured .ticket-row > small { color: rgba(255,255,255,.62); }
.wellness-ticket-grid article.featured .ticket-row > em { color: #f0cd91; }

.price-recommendations { padding-bottom: 30px; }
.recommendation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 32px; border-top: 1px solid #8da8cf; border-bottom: 1px solid #8da8cf; }
.recommendation-grid article { position: relative; padding: 38px clamp(24px, 4vw, 48px); background: rgba(255,255,255,.6); }
.recommendation-grid article + article { border-left: 1px solid #8da8cf; background: #dce8fa; }
.recommendation-grid article > span { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.recommendation-grid h3 { margin: 12px 0 8px; color: var(--navy); font-family: "Shippori Mincho", "Yu Mincho", serif; font-size: clamp(22px, 2.6vw, 31px); font-weight: 500; }
.recommendation-price { margin: 10px 0 18px; color: var(--navy); }
.recommendation-price strong { font-family: "DM Serif Display", serif; font-size: clamp(38px, 4vw, 54px); line-height: 1; }
.recommendation-price small { margin-left: 6px; color: var(--muted); font-size: 9px; }
.recommendation-grid article > p:last-child { max-width: 420px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

@media (max-width: 900px) {
  .hero::before { width: 64vw; right: -14%; }
  .campaign-visual { min-height: 350px; }
  .price-time-guide { grid-template-columns: 1fr; }
  .price-time-guide > p { grid-column: 1; margin-top: -8px; }
}

@media (max-width: 700px) {
  :root { --section-y: 76px; }
  body { line-height: 1.9; }
  .site-header { background: rgba(5,21,55,.94); }
  .hero { min-height: auto; padding: 108px 20px 46px; gap: 24px; background-size: 74px 74px, 108px 108px, auto, auto; }
  .hero::before { width: 112vw; right: -45%; top: auto; bottom: -5%; opacity: .62; }
  .hero::after { bottom: 17%; }
  .hero h1 { font-size: clamp(35px, 9.6vw, 42px); line-height: 1.38; letter-spacing: .025em; }
  .hero-lead { font-size: 14px; line-height: 1.9; }
  .hero-facts li { width: 50%; padding-left: 14px; }
  .hero-campaign { grid-template-columns: 50px 1fr; padding: 10px 12px; }
  .hero-campaign span { width: 50px; height: 50px; }
  .hero-campaign strong { font-size: 18px; }
  .hero-character { margin-top: -4px; }
  .hero-character .mascot { width: 108%; margin-left: -4%; }
  .speech { right: 0; }
  .price-time-guide { margin-top: 44px; padding: 28px 20px; }
  .price-time-guide ol { grid-template-columns: 1fr; }
  .price-time-guide li { min-height: 0; padding: 15px 12px; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .price-time-guide li:last-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .wellness-ticket-grid .ticket-row > small,
  .wellness-ticket-grid .ticket-row > em { font-size: 11px; line-height: 1.55; }
  .ticket-terms { font-size: 10.5px; }
  .recommendation-grid article > p:last-child { font-size: 12.5px; }
  .recommendation-grid { grid-template-columns: 1fr; }
  .recommendation-grid article + article { border-top: 1px solid #8da8cf; border-left: 0; }
  .opening-campaign { padding-inline: 22px; }
  .campaign-visual { min-height: 300px; }
  .campaign-copy h2 { font-size: clamp(30px, 8.5vw, 36px); line-height: 1.52; letter-spacing: .025em; }
  .voice-story { padding: 26px 22px; box-shadow: 7px 7px 0 #c7d9f5; }
  .concern-grid { grid-template-columns: 1fr; }
  .concern-card { grid-template-columns: 38px 1fr; padding-block: 20px; }
  .section-head h2, .lead-block h2, .content-section h2, .final-cta h2, .home-note h2 { font-size: clamp(27px, 7.8vw, 34px); line-height: 1.58; letter-spacing: .02em; }
  .section-head p:last-child { line-height: 1.9; }
  .method-card { padding: 28px 24px; }
  .aroma-card { min-height: 198px; }
  .journal-card a { border-radius: 0; }
  .subpage-hero { min-height: 620px; padding: 112px 22px 58px; }
  .subpage-hero::before { width: 118%; right: -46%; top: 41%; }
  .subpage-hero h1 { font-size: clamp(33px, 9vw, 40px); line-height: 1.5; letter-spacing: .02em; }
  .subpage-character .mascot { width: 110%; margin-left: -5%; }
  .content-card, .oil-group, .character-tip, .contact-panel { border-radius: 0; }
  .fixed-booking { color: var(--navy-deep); background: var(--gold-soft); }
}

/* Typography scale refinement: keep key messages compact and readable. */
.script-label {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
}

.hero h1 {
  max-width: 11em;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.42;
  letter-spacing: .035em;
  text-wrap: balance;
}

.section-head h2,
.lead-block h2,
.content-section h2,
.final-cta h2,
.home-note h2,
.contact-panel h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.58;
  letter-spacing: .035em;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.campaign-copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.55;
  letter-spacing: .035em;
  text-wrap: balance;
}

.campaign-price strong {
  font-size: clamp(38px, 4.5vw, 54px);
}

.voice-story h3 {
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.65;
  text-wrap: balance;
}

.subpage-hero h1 {
  max-width: 18em;
  font-size: clamp(31px, 3.2vw, 40px);
  line-height: 1.55;
  letter-spacing: .035em;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.price-time-guide h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.55;
}

.recommendation-grid h3 {
  font-size: clamp(20px, 2.1vw, 27px);
}

.recommendation-price strong {
  font-size: clamp(34px, 3.2vw, 44px);
}

.method-number {
  font-size: 44px;
}

@media (max-width: 700px) {
  .script-label {
    font-size: clamp(23px, 6.8vw, 28px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.5;
    letter-spacing: .02em;
  }

  .section-head h2,
  .lead-block h2,
  .content-section h2,
  .final-cta h2,
  .home-note h2,
  .contact-panel h2 {
    font-size: clamp(23px, 6.5vw, 27px);
    line-height: 1.68;
    letter-spacing: .015em;
  }

  .campaign-copy h2 {
    font-size: clamp(24px, 6.8vw, 28px);
    line-height: 1.65;
    letter-spacing: .015em;
  }

  .campaign-price strong {
    font-size: clamp(36px, 10.8vw, 44px);
  }

  .voice-story h3 {
    font-size: 21px;
    line-height: 1.7;
  }

  .subpage-hero h1 {
    max-width: 100%;
    font-size: clamp(25px, 7vw, 29px);
    line-height: 1.65;
    letter-spacing: .015em;
  }

  .price-time-guide h2 {
    font-size: clamp(22px, 6.4vw, 26px);
  }

  .recommendation-grid h3 {
    font-size: 21px;
  }

  .recommendation-price strong {
    font-size: clamp(32px, 9.5vw, 38px);
  }

  .method-number {
    font-size: 38px;
  }
}

/* 2026-08-14: real-photo sleep editorial system for the service LP */
body {
  color: #17243a;
  background: #f7f2e9;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  letter-spacing: .025em;
}

.brand-script,
.script-label,
.method-number,
.course-time,
.course-detail .price strong,
.campaign-price strong,
.journal-card p span,
.content-card > span,
.editorial-tip > div > span {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-script { font-weight: 600; }
.script-label { letter-spacing: .045em; }
.hero-copy,
.subpage-hero-copy { isolation: isolate; }

.hero {
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  gap: clamp(44px, 6vw, 104px);
  background:
    radial-gradient(circle at 10% 12%, rgba(215,187,132,.1), transparent 28%),
    radial-gradient(circle at 76% 28%, rgba(100,143,200,.16), transparent 35%),
    #06172b;
}

.hero::before {
  right: -14%;
  top: -18%;
  width: min(58vw, 860px);
  border-radius: 48% 52% 45% 55% / 58% 46% 54% 42%;
  background: radial-gradient(circle at 36% 35%, rgba(158,190,226,.28), rgba(38,78,126,.12) 48%, transparent 68%);
  box-shadow: none;
  animation: nerua-orbit 16s ease-in-out infinite alternate;
}

.hero::after { opacity: .5; }
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(42px, 4.6vw, 64px); line-height: 1.38; }
.hero-lead { max-width: 34em; }

.hero-editorial-visual,
.campaign-editorial-visual,
.note-editorial-visual,
.subpage-editorial-image,
.final-editorial-visual {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
}

.hero-editorial-visual {
  min-height: 650px;
  align-self: stretch;
  border-radius: 48% 48% 28px 28px / 18% 18% 28px 28px;
  box-shadow: 0 38px 90px rgba(0,0,0,.34);
}

.hero-editorial-visual::after,
.campaign-editorial-visual::after,
.subpage-editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(2,12,28,.72));
}

.hero-editorial-visual img,
.campaign-editorial-visual img,
.note-editorial-visual img,
.subpage-editorial-image img,
.final-editorial-visual img,
.editorial-tip img,
.contact-editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-editorial-visual img,
.campaign-editorial-visual img,
.subpage-editorial-image img {
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}

.hero-editorial-visual:hover img,
.campaign-editorial-visual:hover img,
.subpage-editorial-image:hover img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

.hero-editorial-visual figcaption,
.campaign-editorial-visual figcaption,
.subpage-editorial-image figcaption,
.note-editorial-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 44px);
  right: clamp(20px, 4vw, 44px);
  bottom: clamp(20px, 4vw, 38px);
  color: rgba(255,255,255,.86);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}

.hero-editorial-visual figcaption { display: grid; gap: 5px; }
.hero-editorial-visual figcaption strong {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 500;
  letter-spacing: .08em;
}

.campaign-editorial-visual {
  min-height: 520px;
  border-radius: 54% 46% 26px 26px / 32% 28% 26px 26px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  transform: rotate(-1.2deg);
}

.home-note { background: #e9f0f3; }
.note-editorial-visual {
  min-height: 620px;
  border-radius: 48% 48% 22px 22px / 16% 16% 22px 22px;
  box-shadow: 0 30px 68px rgba(21,44,65,.18);
}
.note-editorial-visual figcaption { text-shadow: 0 1px 18px rgba(0,0,0,.7); }

.subpage-hero {
  min-height: 680px;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  gap: clamp(40px, 7vw, 110px);
  background:
    radial-gradient(circle at 14% 19%, rgba(218,193,148,.12), transparent 30%),
    #07192e;
}

.subpage-hero::before {
  right: -16%;
  top: -30%;
  width: 70%;
  background: radial-gradient(circle at 40% 42%, rgba(121,166,212,.24), rgba(20,56,95,.08) 52%, transparent 70%);
  box-shadow: none;
  opacity: 1;
  animation: nerua-orbit 18s ease-in-out infinite alternate-reverse;
}

.subpage-editorial-image {
  height: 530px;
  border-radius: 52% 48% 22px 22px / 22% 18% 22px 22px;
  box-shadow: 0 30px 72px rgba(0,0,0,.3);
}

.editorial-tip {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  margin: 42px 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(28,65,94,.13);
  border-radius: 34px 12px 34px 12px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 52px rgba(22,46,68,.08);
}

.editorial-tip img {
  min-height: 250px;
  max-height: 330px;
  border-radius: 50% 50% 16px 16px / 24% 24% 16px 16px;
}
.editorial-tip > div > span {
  display: block;
  margin-bottom: 10px;
  color: #9b7746;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}
.editorial-tip h3 {
  margin: 0 0 12px;
  color: #10243a;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.55;
}
.editorial-tip p { margin: 0; color: #5f6977; }

.final-editorial-visual {
  width: min(760px, 88vw);
  height: clamp(150px, 22vw, 250px);
  margin: 30px auto 10px;
  border-radius: 999px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.final-editorial-visual img { object-position: center; }

.contact-editorial-image {
  width: min(720px, 100%);
  height: clamp(260px, 40vw, 460px);
  margin: 30px auto 12px;
  border-radius: 48% 48% 22px 22px / 18% 18% 22px 22px;
}

.voice-story {
  border-radius: 34px 14px 34px 14px;
  box-shadow: 0 22px 50px rgba(34,70,101,.1);
}
.voice-story:nth-child(2) { box-shadow: 0 22px 50px rgba(34,70,101,.1); }

.journal-section .journal-card a {
  overflow: hidden;
  border-radius: 26px 10px 26px 10px;
  box-shadow: 0 20px 42px rgba(0,0,0,.22);
}
.journal-section .journal-card img { aspect-ratio: 3 / 2; object-fit: cover; }
.journal-card:nth-child(2) a,
.journal-card:nth-child(3) a { box-shadow: 0 20px 42px rgba(0,0,0,.22); }

.course-detail {
  border-radius: 44% 44% 24px 24px / 12% 12% 24px 24px;
  box-shadow: 0 18px 44px rgba(30,61,90,.1);
}
.course-detail.featured {
  border-color: #9b7746;
  box-shadow: 0 24px 60px rgba(12,37,66,.18);
}
.opening-badge { background: linear-gradient(110deg, #94703f, #d1b47a); }
.course-detail.featured .opening-badge { color: #07192e !important; background: #e9d39e; }
.wellness-ticket-grid article { border-radius: 26px 10px 26px 10px; }
.recommendation-grid { overflow: hidden; border-radius: 28px 10px 28px 10px; }

@keyframes nerua-orbit {
  from { transform: translate3d(-1.5%, -1%, 0) rotate(-1deg); }
  to { transform: translate3d(2%, 2%, 0) rotate(2deg); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); }
  .subpage-hero { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); }
  .hero-editorial-visual { min-height: 570px; }
  .subpage-editorial-image { height: 470px; }
}

@media (max-width: 760px) {
  body { line-height: 1.9; letter-spacing: .018em; }
  .hero,
  .subpage-hero { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 116px 22px 46px; }
  .hero h1 { font-size: clamp(31px, 8.3vw, 36px); line-height: 1.48; }
  .hero-copy { max-width: 100%; }
  .hero-editorial-visual { min-height: 470px; border-radius: 48% 48% 22px 22px / 14% 14% 22px 22px; }
  .hero-editorial-visual figcaption strong { font-size: 17px; }
  .opening-campaign { padding-inline: 22px; }
  .campaign-editorial-visual { min-height: 390px; border-radius: 50% 50% 20px 20px / 22% 22% 20px 20px; transform: none; }
  .note-editorial-visual { min-height: 470px; }
  .subpage-hero { min-height: auto; padding: 118px 22px 54px; }
  .subpage-hero h1 { font-size: clamp(26px, 7.2vw, 31px); line-height: 1.58; }
  .subpage-editorial-image { height: 390px; border-radius: 50% 50% 20px 20px / 16% 16% 20px 20px; }
  .editorial-tip { grid-template-columns: 1fr; padding: 18px; border-radius: 28px 10px 28px 10px; }
  .editorial-tip img { min-height: 250px; max-height: 290px; }
  .editorial-tip h3 { font-size: 21px; }
  .final-editorial-visual { height: 148px; margin-top: 24px; }
  .course-detail { border-radius: 30px 10px 30px 10px; }
  .recommendation-grid { border-radius: 24px 8px 24px 8px; }
}

/* Character-only visual system: approved NERUA artwork, no generated photography. */
:where(h1, h2, h3, .speech, .subpage-speech) {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
}
.hero-character {
  min-width: 0;
  align-self: end;
  padding-bottom: 3%;
}
.hero-character .mascot {
  width: min(760px, 58vw);
  margin-left: -4%;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .28));
}

.voice-profile {
  align-items: center;
}
.voice-profile .voice-mascot {
  width: 112px;
  flex: 0 0 112px;
  border: 1px solid rgba(185, 212, 255, .58);
  border-radius: 999px;
  background-color: #e6f0ff;
  box-shadow: 0 10px 24px rgba(9, 34, 71, .1);
}

.journal-section .journal-card img {
  aspect-ratio: 1280 / 670;
  object-fit: contain;
  background: #f8f3ea;
}

.access-character {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 22%, rgba(185, 212, 255, .45), transparent 30%),
    linear-gradient(155deg, #112e61, #061735 78%);
}
.access-character .mascot {
  width: min(390px, 112%);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, .3));
}
.access-character small {
  color: #d9e8ff;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}

.contact-mascot {
  width: min(430px, 92%);
  margin: 10px auto 4px;
}

@media (max-width: 900px) {
  .hero,
  .subpage-hero {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  }
}

@media (max-width: 760px) {
  .hero,
  .subpage-hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-character .mascot,
  .subpage-character .mascot {
    width: 108%;
    margin-left: -4%;
  }
  .voice-profile .voice-mascot {
    width: 92px;
    flex-basis: 92px;
  }
  .access-character {
    min-height: 240px;
    border-radius: 16px;
  }
}
