:root {
  --bg-top: #0e1a2f;
  --bg-mid: #13243a;
  --bg-bottom: #081321;
  --paper: #f4e7ca;
  --paper-strong: #efdfbb;
  --paper-edge: #b79256;
  --ink: #25180a;
  --ink-soft: #4b3820;
  --accent: #9a6a20;
  --accent-deep: #6f4815;
  --line: rgba(92, 67, 33, 0.28);
  --panel-shadow: 0 20px 48px rgba(6, 13, 28, 0.32);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1120px;
  --font-title: "Eagle Lake", "Times New Roman", serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "EB Garamond", "Noto Serif JP", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth scrolling only when the flipbook is NOT active.
   body.has-flipbook uses overflow:hidden + wheel-driven rAF animation,
   and scroll-behavior:smooth on <html> fights the behavior:"auto" scrollTo
   calls made during flipbook initialisation, producing a double-scroll. */
html:not(:has(body.has-flipbook)) {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  line-height: 1.7;
  background:
    radial-gradient(880px 420px at 14% 12%, rgba(249, 217, 148, 0.12), transparent 65%),
    radial-gradient(760px 400px at 88% 26%, rgba(142, 181, 255, 0.12), transparent 66%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-bottom) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.4px);
  background-size: 240px 240px;
  opacity: 0.22;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
}

h1,
h2,
h3 {
  margin: 0 0 0.5em;
  font-family: var(--font-title);
  color: var(--ink);
  line-height: 1.28;
  letter-spacing: 0.015em;
}

h1 {
  font-size: clamp(1.95rem, 5.3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.45rem, 3.8vw, 2.3rem);
}

h3 {
  font-size: clamp(1.08rem, 2.4vw, 1.4rem);
}

p,
li {
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.container {
  width: min(var(--container), calc(100% - 2.2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 40;
  background: #fff8e7;
  color: #1f1406;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(236, 210, 164, 0.28);
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(9, 19, 35, 0.82), rgba(9, 19, 35, 0.74));
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.brand-main {
  color: #f5deb0;
  font-family: var(--font-title);
  font-size: 1.16rem;
  letter-spacing: 0.06em;
}

.brand-sub {
  color: #f4d99e;
  font-family: var(--font-script);
  font-size: 1rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.56rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 150, 0.32);
  background: rgba(255, 238, 204, 0.08);
  color: #f5e3c2;
  font-size: 0.84rem;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(250, 226, 179, 0.22);
  border-color: rgba(242, 208, 150, 0.62);
}

.lang-toggle {
  display: inline-flex;
  padding: 0.2rem;
  gap: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 210, 164, 0.34);
  background: rgba(255, 244, 218, 0.08);
}

.lang-btn {
  min-height: 30px;
  padding: 0.28rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #edd9b3;
  font-size: 0.76rem;
  font-family: var(--font-title);
  cursor: pointer;
}

.lang-btn.is-active {
  background: linear-gradient(180deg, #faedcf, #e7cb94);
  color: #3d2a10;
}

.story-main {
  padding: 2.2rem 0 2.6rem;
}

/* ================================================================
   FLIPBOOK ANIMATION STYLES — DO NOT MODIFY THIS SECTION
   Everything from here until "END FLIPBOOK STYLES" drives the
   page-flip animation. Edit page content styles above this line.
   ================================================================ */

.flipbook-shell {
  position: relative;
}

.flipbook-sticky {
  position: sticky;
  top: 84px;
  height: calc(100svh - 100px);
  display: grid;
  place-items: center;
}

.flipbook-book {
  /* Portrait book — roughly A4/B5 proportions (3:4 ratio) */
  width: min(620px, calc(100vw - 3rem));
  height: min(820px, calc(100svh - 145px));
  position: relative;
}

@media (min-width: 769px) {
  .flipbook-sticky {
    top: 76px;
    height: calc(100svh - 82px);
    align-items: start;
    padding-top: clamp(0.7rem, 2svh, 1.15rem);
  }

  .flipbook-book {
    width: min(620px, calc(100vw - 3rem));
    height: min(860px, calc(100svh - 136px));
  }

  body.has-flipbook .story-main {
    padding-top: 0;
  }
}

.flipbook-hint {
  position: absolute;
  top: clamp(4.3rem, 18vw, 7.2rem);
  left: 50%;
  z-index: 26;
  width: min(78%, 18rem);
  margin: 0;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 238, 177, 0.95);
  background: linear-gradient(180deg, rgba(255, 231, 126, 0.98), rgba(185, 101, 16, 0.96));
  color: #160b02;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 245, 202, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0.42rem 1rem rgba(20, 11, 3, 0.46);
  transform: translateX(-50%);
  /* Fade out after a few seconds */
  animation: hintFade 5s ease-in-out forwards;
}

@keyframes hintFade {
  0%, 70% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

body.has-flipbook .story-main {
  padding-top: 1rem;
  padding-bottom: 1.4rem;
}

/* Nav-actions is moved to body by JS — position it at the top-right
   on desktop to match where the header normally shows it */
body.has-flipbook > .nav-actions {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 31;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 1.4rem;
  pointer-events: auto;
}

body.has-flipbook {
  overflow: hidden;
}

body.has-flipbook .section.chapter {
  margin: 0;
  padding: 0;
}

/* ── Book-page edge structure ────────────────────────────────────
   Gives each flipbook page a visible border and stacked-page
   depth so it reads as a physical book page, not a flat panel. */

body.has-flipbook .chapter .container {
  border: 2.5px solid #6b4a1f;
  border-left: 4px solid #4a3010;
  box-shadow:
    /* inner highlight along top/right for paper feel */
    inset 2px 2px 6px rgba(255, 248, 228, 0.5),
    inset -1px -1px 4px rgba(139, 98, 42, 0.12),
    /* stacked pages — thick book effect */
    2px 2px 0 0 #ddd0ac,
    2.5px 2.5px 0 0 #7a5a28,
    4px 4px 0 0 #d6c89e,
    4.5px 4.5px 0 0 #6b4a1f,
    6px 6px 0 0 #d1be90,
    6.5px 6.5px 0 0 #5e3f18,
    8px 8px 0 0 #ccb886,
    8.5px 8.5px 0 0 #543614,
    10px 10px 0 0 #c7b27e,
    10.5px 10.5px 0 0 #4a3010,
    12px 12px 0 0 #c2ac76,
    12.5px 12.5px 0 0 #422a0e,
    14px 14px 0 0 #bda66e,
    14.5px 14.5px 0 0 #3b2508,
    /* final depth shadow */
    18px 20px 30px rgba(30, 18, 6, 0.35);
  border-radius: 4px 18px 18px 4px;
  position: relative;
}

/* Spine edge — a dark strip on the left mimicking the book binding */
body.has-flipbook .chapter .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(
    to right,
    #3a2410 0%,
    #4e3215 12%,
    #6a4d28 28%,
    rgba(140, 108, 58, 0.35) 50%,
    rgba(183, 146, 86, 0.15) 70%,
    rgba(210, 180, 120, 0.06) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

body.has-flipbook .section.chapter .container {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 72, 21, 0.25) transparent;
}

body.has-flipbook .section.chapter .reveal {
  opacity: 1;
  transform: none;
}

/* Portrait-book content layout — stack everything vertically */
body.has-flipbook .hero-grid {
  grid-template-columns: 1fr;
}

body.has-flipbook .hero-visual {
  max-width: 280px;
  margin-inline: auto;
}

body.has-flipbook .hero-points {
  grid-template-columns: 1fr;
}

body.has-flipbook .two-col,
body.has-flipbook .pillars {
  grid-template-columns: 1fr;
}

body.has-flipbook .flow-grid {
  grid-template-columns: 1fr;
}

body.has-flipbook .pricing-grid {
  grid-template-columns: 1fr;
}

body.has-flipbook .chapter .container {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 72, 21, 0.3) transparent;
}

/* Smaller text in flipbook to fit portrait pages */
body.has-flipbook h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

body.has-flipbook h2 {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
}

body.has-flipbook h3 {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

body.has-flipbook p,
body.has-flipbook li {
  font-size: 0.88rem;
}

body.has-flipbook .cta-row {
  flex-direction: column;
  align-items: flex-start;
}

/* ============== END FLIPBOOK STYLES — safe to edit below ============== */

.flip-story-section .flip-layout-page {
  min-height: 100%;
  background:
    linear-gradient(rgba(255, 250, 235, 0.04), rgba(255, 250, 235, 0.04)),
    url("../assets/flip images/flip background.png") center / cover no-repeat;
  color: #2f1b0c;
}

.flip-layout-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  padding: clamp(1.65rem, 4.1vw, 2.35rem) clamp(0.8rem, 2.6vw, 1.45rem) clamp(0.8rem, 2.6vw, 1.45rem);
}

.flip-layout-header {
  text-align: center;
  margin-bottom: clamp(0.85rem, 2.6vw, 1.25rem);
}

.flip-layout-header .chapter-label {
  margin: 0 auto 0.46rem;
  color: #6b2f1a;
  background: rgba(252, 237, 198, 0.56);
  border-color: rgba(138, 90, 36, 0.32);
}

.flip-layout-title {
  margin: 0;
  color: #6b2f1a;
  font-family: var(--font-title);
  font-size: clamp(2rem, 5.6vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(201, 156, 74, 0.32);
}

.flip-layout-subtitle {
  margin: 0.4rem auto 0;
  max-width: 28rem;
  color: #8a5a24;
  font-family: var(--font-title);
  font-size: clamp(1rem, 2.7vw, 1.28rem);
  line-height: 1.38;
}

.flip-layout-body {
  position: relative;
  color: #2f1b0c;
}

.flip-layout-body::after {
  content: "";
  display: block;
  clear: both;
}

.flip-layout-image {
  float: right;
  width: min(46%, 13.5rem);
  margin: 0.2rem 0 0.75rem 1rem;
  position: relative;
  padding: 0.28rem;
  border: 2px solid rgba(138, 90, 36, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 231, 0.42);
  box-shadow: 0 0.45rem 1rem rgba(47, 27, 12, 0.18);
}

.flip-layout-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.image-corner {
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  border-color: rgba(138, 90, 36, 0.74);
  pointer-events: none;
}

.image-corner-tl {
  top: -0.42rem;
  left: -0.42rem;
  border-top: 1px solid;
  border-left: 1px solid;
}

.image-corner-tr {
  top: -0.42rem;
  right: -0.42rem;
  border-top: 1px solid;
  border-right: 1px solid;
}

.image-corner-bl {
  bottom: -0.42rem;
  left: -0.42rem;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.image-corner-br {
  right: -0.42rem;
  bottom: -0.42rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.flip-layout-copy p {
  margin: 0 0 0.82rem;
  color: #2f1b0c;
  font-size: clamp(1rem, 2.55vw, 1.24rem);
  font-weight: 700;
  line-height: 1.72;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 245, 214, 0.45);
}

.flip-layout-cta {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}

.flip-layout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 17.5rem);
  min-height: 3.25rem;
  padding: 0.74rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 59, 18, 0.78);
  background: linear-gradient(180deg, #e6ca74 0%, #c7972d 52%, #9a691b 100%);
  color: #2f1b0c;
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 241, 184, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 195, 0.72),
    0 0.28rem 0.65rem rgba(47, 27, 12, 0.25);
}

.flip-layout-button:hover,
.flip-layout-button:focus-visible {
  background: linear-gradient(180deg, #ecd789 0%, #cca03b 52%, #8a5a24 100%);
  outline: 2px solid rgba(107, 47, 26, 0.32);
  outline-offset: 3px;
}

body.has-flipbook #concept .flip-layout-page {
  background:
    linear-gradient(rgba(255, 250, 235, 0.04), rgba(255, 250, 235, 0.04)),
    url("../assets/flip images/flip background.png") center / cover no-repeat;
  overflow-y: auto;
}

body.has-flipbook #concept .flip-layout-content {
  padding: clamp(1.28rem, 3.1vw, 1.7rem) clamp(0.72rem, 2vw, 1rem) clamp(0.72rem, 2vw, 1rem);
}

body.has-flipbook #concept .flip-layout-title {
  color: #6b2f1a;
  font-size: clamp(1.85rem, 5vw, 2.7rem);
}

body.has-flipbook #concept .flip-layout-subtitle {
  color: #8a5a24;
  font-size: clamp(0.94rem, 2.5vw, 1.16rem);
}

body.has-flipbook #concept .flip-layout-copy p {
  color: #2f1b0c;
  font-size: clamp(0.95rem, 2.35vw, 1.08rem);
  font-weight: 700;
  line-height: 1.58;
}

body.has-flipbook #concept .flip-layout-button {
  min-height: 2.85rem;
  font-size: 0.95rem;
}

@media (min-width: 769px) {
  html body.has-flipbook #concept .concept-layout-page {
    padding: 1.25rem 0.6rem 0.7rem 0.95rem;
    overflow: hidden;
  }

  html body.has-flipbook #concept .concept-layout-content {
    padding: 1.08rem 0.28rem 0.42rem;
    transform: translateY(72px);
  }

  html body.has-flipbook #concept .concept-layout-header {
    margin-bottom: 0.7rem;
  }

  html body.has-flipbook #concept .concept-layout-header .chapter-label {
    margin-bottom: 0.3rem;
    font-size: 0.58rem;
  }

  html body.has-flipbook #concept .concept-layout-header .flip-layout-title {
    max-width: 21.3rem;
    margin-inline: auto;
    font-size: clamp(1.62rem, 4.1vw, 1.86rem);
    line-height: 1.05;
  }

  html body.has-flipbook #concept .concept-layout-header .flip-layout-subtitle {
    margin-top: 0.42rem;
    font-size: clamp(0.76rem, 3.65vw, 0.92rem);
    line-height: 1.34;
  }

  html body.has-flipbook #concept .concept-layout-image {
    width: min(64%, 12.5rem);
    margin: 0.08rem 0 0.54rem 0.58rem;
    padding: 0.18rem;
  }

  html body.has-flipbook #concept .concept-layout-copy p {
    margin-bottom: 0.48rem;
    font-size: clamp(0.82rem, 3.75vw, 0.94rem);
    font-weight: 720;
    line-height: 1.46;
  }

  html body.has-flipbook #concept .concept-lead {
    clear: none;
    width: calc(53% - 0.58rem);
    margin: 0 0 0.34rem;
    padding: 0.34rem 0.42rem;
    border: 1px solid rgba(111, 72, 21, 0.18);
    border-radius: 10px;
    background: rgba(255, 250, 238, 0.64);
    color: #2d1a0a;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  html body.has-flipbook #concept .concept-copy-panel {
    overflow: visible;
    width: calc(53% - 0.58rem);
    min-height: 7.35rem;
    margin: 0 0 0.44rem;
    padding: 0.48rem 0.46rem;
    background:
      linear-gradient(180deg, rgba(255, 231, 137, 0.82), rgba(218, 163, 45, 0.68));
    border-color: rgba(128, 84, 14, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 205, 0.62),
      0 0.24rem 0.56rem rgba(75, 41, 8, 0.12);
  }

  html body.has-flipbook #concept .concept-callout {
    clear: both;
    margin-top: 0.42rem;
    width: 96%;
    padding: 0.4rem 0.58rem;
    background:
      linear-gradient(180deg, rgba(230, 244, 243, 0.72), rgba(188, 222, 225, 0.62));
    border: 1px solid rgba(85, 129, 139, 0.34);
    border-radius: 10px;
    color: #2d4c52;
    font-size: clamp(0.84rem, 3.9vw, 0.98rem);
    line-height: 1.42;
  }

  html body.has-flipbook #concept .concept-keywords {
    gap: 0.38rem;
    margin-top: 0.62rem;
  }

  html body.has-flipbook #concept .concept-keywords span {
    min-width: 3.35rem;
    min-height: 1.55rem;
    justify-content: center;
    padding: 0.16rem 0.58rem;
    background: rgba(255, 238, 191, 0.78);
    border-color: rgba(123, 73, 19, 0.35);
    color: #5f2813;
    font-size: 0.68rem;
  }

  html body.has-flipbook #concept .concept-layout-cta {
    padding-top: 0.62rem;
  }

  html body.has-flipbook #concept .concept-layout-cta .flip-layout-button {
    min-height: 2.54rem;
    padding-inline: 1.1rem;
    color: #281505;
    font-size: 0.94rem;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 242, 178, 0.82);
  }
}

#concept .concept-layout-page {
  background:
    url("../assets/flip images/flip background.png") center / 100% 100% no-repeat;
}

.concept-layout-content {
  padding-top: clamp(1.08rem, 2.8vw, 1.7rem);
}

.concept-layout-header {
  margin-bottom: clamp(0.48rem, 1.6vw, 0.76rem);
}

.concept-layout-header .chapter-label {
  color: #6f3b1c;
  background: rgba(255, 244, 213, 0.62);
}

.concept-layout-header .flip-layout-title {
  color: #713319;
  font-size: clamp(1.72rem, 4.8vw, 2.75rem);
  line-height: 1.08;
}

.concept-layout-header .flip-layout-subtitle {
  max-width: 22rem;
  color: #7f5320;
  font-size: clamp(0.9rem, 2.2vw, 1.08rem);
}

.concept-layout-image {
  width: min(50%, 13.2rem);
  margin: 0 0 0.42rem 0.8rem;
  border-color: rgba(151, 101, 31, 0.48);
  background: rgba(255, 246, 215, 0.56);
}

.concept-layout-copy p {
  color: #3f2a12;
  font-size: clamp(0.86rem, 2.08vw, 1rem);
  font-weight: 650;
  line-height: 1.46;
  text-shadow: 0 1px 0 rgba(255, 247, 220, 0.55);
}

.concept-lead {
  margin-bottom: 0.42rem;
  color: #2d1a0a;
  font-weight: 800;
}

.concept-copy-panel {
  margin-bottom: 0.42rem;
  padding: 0.52rem 0.62rem;
  border: 1px solid rgba(111, 72, 21, 0.2);
  border-radius: 10px;
  background: rgba(255, 244, 211, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.concept-copy-panel p {
  margin-bottom: 0;
}

.concept-callout {
  clear: both;
  margin: 0.48rem auto 0;
  width: min(100%, 20rem);
  padding: 0.38rem 0.58rem;
  border-top: 1px solid rgba(111, 72, 21, 0.24);
  border-bottom: 1px solid rgba(111, 72, 21, 0.18);
  color: #713319;
  font-weight: 800;
  text-align: center;
}

.concept-keywords {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.34rem;
  margin: 0.58rem auto 0;
  width: min(100%, 21rem);
}

.concept-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.18rem 0.58rem;
  border: 1px solid rgba(111, 72, 21, 0.28);
  border-radius: 999px;
  background: rgba(255, 247, 226, 0.66);
  color: #5a3511;
  font-family: var(--font-title);
  font-size: 0.7rem;
  line-height: 1.1;
}

.concept-layout-cta {
  margin-top: 0;
  padding-top: 0.64rem;
}

.system-layout-page {
  min-height: 100%;
  background:
    linear-gradient(rgba(255, 250, 235, 0.02), rgba(255, 250, 235, 0.02)),
    url("../assets/flip images/flip background.png") center / cover no-repeat;
}

.system-layout-content {
  padding-top: clamp(1.28rem, 3vw, 1.85rem);
}

.system-layout-header {
  margin-bottom: clamp(0.58rem, 1.8vw, 0.92rem);
}

.system-layout-header .chapter-label {
  max-width: 19rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.32;
}

.system-layout-body {
  margin-bottom: 0.5rem;
}

.system-layout-image {
  width: min(41%, 11.8rem);
  margin-top: 0.1rem;
  border-color: rgba(89, 98, 54, 0.42);
  background: rgba(249, 244, 221, 0.5);
}

.system-intro-copy p {
  margin-bottom: 0.58rem;
  font-size: clamp(0.88rem, 2.2vw, 1.04rem);
  line-height: 1.5;
}

.system-quest-label {
  width: fit-content;
  max-width: 100%;
  margin: 0.18rem auto 0.62rem;
  padding: 0.24rem 0.72rem;
  border: 1px solid rgba(111, 72, 21, 0.28);
  border-radius: 999px;
  background: rgba(255, 247, 226, 0.68);
  color: #614119;
  font-family: var(--font-title);
  font-size: 0.76rem;
  line-height: 1.25;
  text-align: center;
}

.system-step-list {
  display: grid;
  gap: 0.54rem;
}

.system-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.64rem;
  align-items: start;
  padding: 0.68rem 0.72rem;
  border: 1px solid rgba(111, 72, 21, 0.24);
  border-radius: 12px;
  box-shadow: 0 0.34rem 0.8rem rgba(47, 27, 12, 0.09);
}

.system-step-intro {
  background:
    linear-gradient(90deg, rgba(121, 73, 28, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 249, 229, 0.9), rgba(239, 221, 184, 0.82));
}

.system-step-practice {
  background:
    linear-gradient(90deg, rgba(191, 144, 36, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 244, 198, 0.9), rgba(232, 200, 126, 0.74));
}

.system-step-consolidation {
  background:
    linear-gradient(90deg, rgba(72, 120, 113, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(234, 247, 231, 0.92), rgba(199, 224, 215, 0.78));
}

.system-step-mark {
  display: inline-grid;
  place-items: center;
  width: 2.05rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(80, 54, 21, 0.38);
  background: rgba(255, 252, 236, 0.68);
  color: #6b4516;
  font-family: var(--font-title);
  font-size: 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.system-step-kicker {
  margin: 0 0 0.06rem;
  color: #7b541e;
  font-family: var(--font-title);
  font-size: 0.76rem;
  line-height: 1.2;
}

.system-step h3 {
  margin-bottom: 0.14rem;
  color: #2f1b0c;
  font-size: clamp(0.92rem, 2.25vw, 1.08rem);
  line-height: 1.24;
}

.system-step p {
  margin: 0;
  color: #3c2a13;
  font-size: 0.84rem;
  line-height: 1.43;
}

.system-layout-cta {
  padding-top: 0.72rem;
}

.system-layout-cta .flip-layout-button {
  width: min(100%, 15.25rem);
  min-height: 2.72rem;
  padding: 0.54rem 1.05rem;
  font-size: 0.88rem;
}

.system-layout-cta .flip-layout-button span {
  font-family: var(--font-body);
  font-size: 0.82em;
}

@media (min-width: 769px) {
  body.has-flipbook #lesson-flow .system-layout-page {
    overflow: hidden;
    padding: clamp(0.78rem, 1.55vw, 1.05rem) clamp(0.66rem, 1.45vw, 0.9rem) clamp(0.6rem, 1.2vw, 0.82rem) clamp(1.25rem, 2.2vw, 1.65rem);
  }

  body.has-flipbook #lesson-flow .system-layout-content {
    padding: clamp(0.72rem, 1.35vw, 1rem) clamp(0.2rem, 0.7vw, 0.42rem) clamp(0.34rem, 0.75vw, 0.5rem);
    transform: translateY(36px);
  }

  body.has-flipbook #lesson-flow .system-layout-header {
    margin-bottom: 0.34rem;
  }

  body.has-flipbook #lesson-flow .system-layout-header .chapter-label {
    margin-bottom: 0.22rem;
    padding-block: 0.1rem;
    font-size: clamp(0.56rem, 1.15vw, 0.68rem);
  }

  body.has-flipbook #lesson-flow .flip-layout-title {
    font-size: clamp(1.54rem, 3.55vw, 2.12rem);
    line-height: 1.04;
  }

  body.has-flipbook #lesson-flow .flip-layout-subtitle {
    margin-top: 0.22rem;
    font-size: clamp(0.72rem, 1.65vw, 0.92rem);
    line-height: 1.22;
  }

  body.has-flipbook #lesson-flow .system-layout-image {
    width: min(35%, 8.9rem);
    margin: 0 0 0.34rem 0.58rem;
  }

  body.has-flipbook #lesson-flow .system-intro-copy p {
    margin-bottom: 0.34rem;
    font-size: clamp(0.78rem, 1.55vw, 0.94rem);
    line-height: 1.34;
  }

  body.has-flipbook #lesson-flow .system-quest-label {
    margin: 0.04rem auto 0.36rem;
    padding: 0.14rem 0.56rem;
    font-size: clamp(0.56rem, 1.1vw, 0.66rem);
  }

  body.has-flipbook #lesson-flow .system-step-list {
    gap: 0.28rem;
  }

  body.has-flipbook #lesson-flow .system-step {
    gap: 0.44rem;
    padding: 0.36rem 0.52rem;
    border-radius: 10px;
  }

  body.has-flipbook #lesson-flow .system-step-mark {
    width: 1.58rem;
    font-size: 0.6rem;
  }

  body.has-flipbook #lesson-flow .system-step-kicker {
    font-size: 0.64rem;
  }

  body.has-flipbook #lesson-flow .system-step h3 {
    margin-bottom: 0.06rem;
    font-size: clamp(0.82rem, 1.62vw, 0.98rem);
    line-height: 1.18;
  }

  body.has-flipbook #lesson-flow .system-step p {
    font-size: clamp(0.7rem, 1.45vw, 0.84rem);
    line-height: 1.24;
  }

  body.has-flipbook #lesson-flow .system-layout-cta {
    margin-top: 0;
    padding-top: 0.48rem;
    transform: translateY(8px);
  }

  body.has-flipbook #lesson-flow .flip-layout-button {
    width: min(100%, 13.5rem);
    min-height: 2.28rem;
    padding: 0.42rem 1rem;
    font-size: clamp(0.72rem, 1.35vw, 0.84rem);
  }
}

.section {
  position: relative;
  padding: clamp(2.4rem, 6vw, 4rem) 0;
  scroll-margin-top: 90px;
}

.chapter .container {
  padding: clamp(1rem, 2.8vw, 1.8rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(246, 216, 162, 0.44);
  box-shadow: var(--panel-shadow);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.33), transparent 36%),
    radial-gradient(circle at 84% 76%, rgba(178, 126, 48, 0.12), transparent 48%),
    repeating-linear-gradient(108deg, rgba(130, 94, 36, 0.035) 0px, rgba(130, 94, 36, 0.035) 1px, transparent 2px, transparent 5px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-strong) 100%);
}

.chapter-panel .container {
  background:
    radial-gradient(circle at 84% 16%, rgba(120, 163, 214, 0.16), transparent 38%),
    radial-gradient(circle at 20% 78%, rgba(178, 126, 48, 0.15), transparent 46%),
    repeating-linear-gradient(108deg, rgba(130, 94, 36, 0.04) 0px, rgba(130, 94, 36, 0.04) 1px, transparent 2px, transparent 5px),
    linear-gradient(180deg, #f4e6c7 0%, #ecd9b3 100%);
}

#lesson-flow .system-layout-page {
  background:
    url("../assets/flip images/flip background.png") center / 100% 100% no-repeat;
}

#trust .growth-layout-page {
  min-height: 100%;
  background:
    url("../assets/flip images/flip background.png") center / 100% 100% no-repeat;
}

.growth-layout-content {
  padding-top: clamp(1.22rem, 3vw, 1.8rem);
}

.growth-layout-header {
  margin-bottom: clamp(0.5rem, 1.8vw, 0.78rem);
}

.growth-layout-image {
  float: left;
  width: min(39%, 11rem);
  margin: 0.08rem 0.9rem 0.46rem 0;
  border-color: rgba(92, 117, 68, 0.44);
  background: rgba(247, 244, 222, 0.52);
}

.growth-intro-copy p {
  margin-bottom: 0.48rem;
  font-size: clamp(0.9rem, 2.25vw, 1.05rem);
  line-height: 1.48;
}

.growth-milestone-list {
  display: grid;
  gap: 0.44rem;
  clear: both;
}

.growth-milestone {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.54rem;
  align-items: start;
  padding: 0.56rem 0.64rem;
  border: 1px solid rgba(111, 72, 21, 0.22);
  border-radius: 11px;
  box-shadow: 0 0.28rem 0.72rem rgba(47, 27, 12, 0.08);
}

.growth-weekly {
  background:
    linear-gradient(90deg, rgba(118, 80, 36, 0.09), transparent 46%),
    linear-gradient(180deg, rgba(255, 248, 228, 0.9), rgba(237, 219, 184, 0.8));
}

.growth-motivation {
  background:
    linear-gradient(90deg, rgba(196, 141, 36, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 242, 202, 0.92), rgba(233, 203, 135, 0.76));
}

.growth-practice {
  background:
    linear-gradient(90deg, rgba(91, 130, 154, 0.13), transparent 48%),
    linear-gradient(180deg, rgba(239, 245, 239, 0.92), rgba(218, 226, 213, 0.8));
}

.growth-connection {
  background:
    linear-gradient(90deg, rgba(78, 128, 82, 0.13), transparent 48%),
    linear-gradient(180deg, rgba(235, 247, 226, 0.92), rgba(207, 225, 193, 0.78));
}

.growth-milestone-mark {
  display: inline-grid;
  place-items: center;
  width: 1.78rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(80, 54, 21, 0.34);
  background: rgba(255, 252, 236, 0.72);
  color: #6b4516;
  font-family: var(--font-title);
  font-size: 0.72rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.growth-milestone h3 {
  margin-bottom: 0.08rem;
  color: #2f1b0c;
  font-size: clamp(0.84rem, 2vw, 1rem);
  line-height: 1.18;
}

.growth-milestone p {
  margin: 0;
  color: #3c2a13;
  font-size: 0.8rem;
  line-height: 1.34;
}

.growth-closing-line {
  margin: 0.5rem 0 0;
  color: #473016;
  font-weight: 700;
  font-size: clamp(0.82rem, 2vw, 0.95rem);
  line-height: 1.34;
  text-align: center;
}

.growth-layout-cta {
  padding-top: 0.5rem;
}

.growth-layout-cta .flip-layout-button {
  width: min(100%, 14rem);
  min-height: 2.55rem;
  padding: 0.48rem 1rem;
  font-size: 0.84rem;
}

@media (min-width: 769px) {
  body.has-flipbook #trust .growth-layout-page {
    overflow: hidden;
    padding: clamp(0.78rem, 1.55vw, 1.04rem) clamp(0.66rem, 1.45vw, 0.9rem) clamp(0.58rem, 1.2vw, 0.8rem) clamp(1.25rem, 2.2vw, 1.65rem);
  }

  body.has-flipbook #trust .growth-layout-content {
    padding: clamp(0.7rem, 1.3vw, 0.96rem) clamp(0.2rem, 0.7vw, 0.42rem) clamp(0.32rem, 0.75vw, 0.5rem);
    transform: translateY(34px);
  }

  body.has-flipbook #trust .growth-layout-header {
    margin-bottom: 0.34rem;
  }

  body.has-flipbook #trust .growth-layout-header .chapter-label {
    margin-bottom: 0.22rem;
    padding-block: 0.1rem;
    font-size: clamp(0.56rem, 1.15vw, 0.66rem);
  }

  body.has-flipbook #trust .flip-layout-title {
    font-size: clamp(1.36rem, 3.1vw, 1.92rem);
    line-height: 1.05;
  }

  body.has-flipbook #trust .growth-layout-image {
    width: min(34%, 8.4rem);
    margin: 0 0.62rem 0.28rem 0;
    padding: 0.18rem;
  }

  body.has-flipbook #trust .growth-intro-copy p {
    margin-bottom: 0.3rem;
    font-size: clamp(0.78rem, 1.55vw, 0.94rem);
    font-weight: 900;
    line-height: 1.34;
  }

  body.has-flipbook #trust .growth-milestone-list {
    gap: 0.3rem;
  }

  body.has-flipbook #trust .growth-milestone {
    gap: 0.42rem;
    padding: 0.38rem 0.48rem;
    border-radius: 9px;
  }

  body.has-flipbook #trust .growth-milestone-mark {
    width: 1.46rem;
    font-size: 0.58rem;
  }

  body.has-flipbook #trust .growth-milestone h3 {
    margin-bottom: 0.04rem;
    font-size: clamp(0.8rem, 1.58vw, 0.96rem);
    font-weight: 900;
  }

  body.has-flipbook #trust .growth-milestone p {
    font-size: clamp(0.68rem, 1.38vw, 0.82rem);
    font-weight: 820;
    line-height: 1.26;
  }

  body.has-flipbook #trust .growth-closing-line {
    margin-top: 0.34rem;
    font-size: clamp(0.72rem, 1.42vw, 0.86rem);
    font-weight: 900;
    line-height: 1.28;
  }

  body.has-flipbook #trust .growth-layout-cta {
    padding-top: 0.2rem;
    transform: translateY(-76px);
  }

  body.has-flipbook #trust .growth-layout-cta .flip-layout-button {
    width: min(100%, 12.4rem);
    min-height: 2.2rem;
    padding: 0.38rem 0.9rem;
    font-size: clamp(0.68rem, 1.25vw, 0.78rem);
  }

  html[lang="ja"] body.has-flipbook #trust .flip-layout-title {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "HGSMinchoE", "MS Mincho", serif;
    font-weight: 900;
    color: #6b2f1a;
    text-shadow:
      0.42px 0 #6b2f1a,
      -0.2px 0 #6b2f1a,
      0 0.28px #6b2f1a,
      0 1px 0 rgba(255, 247, 220, 0.58);
  }

  html[lang="ja"] body.has-flipbook #trust .growth-intro-copy p,
  html[lang="ja"] body.has-flipbook #trust .growth-milestone h3,
  html[lang="ja"] body.has-flipbook #trust .growth-milestone p,
  html[lang="ja"] body.has-flipbook #trust .growth-closing-line {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "HGSMinchoE", "MS Mincho", serif;
    font-weight: 760;
    color: #211207;
    text-shadow:
      0.18px 0 #211207,
      0 1px 0 rgba(255, 247, 220, 0.58);
  }
}

#pricing .pricing-layout-page {
  min-height: 100%;
  background:
    url("../assets/flip images/flip background.png") center / 100% 100% no-repeat;
}

.pricing-layout-content {
  padding-top: clamp(1.08rem, 2.7vw, 1.6rem);
}

.pricing-layout-header {
  margin-bottom: clamp(0.42rem, 1.5vw, 0.66rem);
}

.pricing-layout-header .flip-layout-title {
  font-size: clamp(1.35rem, 3.7vw, 2.05rem);
  line-height: 1.08;
}

.pricing-layout-image {
  float: right;
  width: min(34%, 8.8rem);
  margin: 0 0 0.32rem 0.62rem;
  border-color: rgba(151, 101, 31, 0.5);
  background: rgba(255, 245, 212, 0.54);
}

.pricing-intro-copy p {
  margin-bottom: 0.36rem;
  font-size: clamp(0.78rem, 1.9vw, 0.92rem);
  line-height: 1.36;
}

.adventure-plan-list {
  display: grid;
  gap: 0.34rem;
  clear: both;
}

.adventure-plan {
  position: relative;
  overflow: hidden;
  padding: 0.48rem 0.54rem;
  border: 1px solid rgba(111, 72, 21, 0.24);
  border-radius: 11px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 0.24rem 0.64rem rgba(47, 27, 12, 0.08);
}

.adventure-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 40%);
}

.plan-squire {
  background:
    linear-gradient(90deg, rgba(105, 84, 56, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(248, 240, 219, 0.92), rgba(224, 209, 177, 0.82));
}

.plan-hero {
  border-color: rgba(123, 80, 14, 0.62);
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 250, 210, 0.55), transparent 34%),
    linear-gradient(90deg, rgba(198, 131, 24, 0.32), transparent 54%),
    linear-gradient(180deg, rgba(255, 232, 142, 0.96), rgba(213, 153, 43, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 205, 0.72),
    inset 0 0 0 1px rgba(255, 245, 170, 0.28),
    0 0.34rem 0.85rem rgba(76, 44, 10, 0.18);
}

.plan-legend {
  border-color: rgba(157, 111, 36, 0.36);
  background:
    linear-gradient(90deg, rgba(181, 126, 35, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(255, 241, 204, 0.94), rgba(232, 206, 150, 0.82));
}

.adventure-plan-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.44rem;
  align-items: start;
}

.plan-rune {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(80, 54, 21, 0.34);
  background: rgba(255, 252, 236, 0.72);
  color: #6b4516;
  font-family: var(--font-title);
  font-size: 0.58rem;
}

.adventure-plan h3 {
  margin-bottom: 0.06rem;
  color: #2f1b0c;
  font-size: clamp(0.78rem, 1.8vw, 0.98rem);
  line-height: 1.12;
}

.plan-description {
  margin: 0;
  color: #4a3419;
  font-size: 0.68rem;
  line-height: 1.24;
}

.plan-price {
  margin: 0;
  min-width: 4.5rem;
  color: #5a3511;
  font-family: var(--font-title);
  font-size: 0.82rem;
  line-height: 1.08;
  text-align: right;
  white-space: nowrap;
}

.plan-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
}

.adventure-plan ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.08rem 0.56rem;
  margin: 0.26rem 0 0 1.95rem;
  padding: 0;
  list-style: none;
}

.adventure-plan li {
  color: #3c2a13;
  font-size: 0.64rem;
  line-height: 1.22;
}

.adventure-plan li::before {
  content: "•";
  margin-right: 0.22rem;
  color: #8a5a24;
}

.pricing-layout-cta {
  padding-top: 0.42rem;
}

.pricing-layout-cta .flip-layout-button {
  width: min(100%, 14.2rem);
  min-height: 2.45rem;
  padding: 0.42rem 0.9rem;
  font-size: 0.8rem;
}

@media (min-width: 769px) {
  body.has-flipbook #pricing .pricing-layout-page {
    overflow: hidden;
    padding: clamp(0.78rem, 1.55vw, 1.04rem) clamp(0.66rem, 1.45vw, 0.9rem) clamp(0.56rem, 1.2vw, 0.78rem) clamp(1.25rem, 2.2vw, 1.65rem);
  }

  body.has-flipbook #pricing .pricing-layout-content {
    padding: clamp(0.62rem, 1.2vw, 0.86rem) clamp(0.18rem, 0.65vw, 0.38rem) clamp(0.28rem, 0.7vw, 0.46rem);
    transform: translateY(42px);
  }

  body.has-flipbook #pricing .pricing-layout-header {
    margin-bottom: 0.28rem;
  }

  body.has-flipbook #pricing .pricing-layout-header .chapter-label {
    margin-bottom: 0.18rem;
    padding-block: 0.08rem;
    font-size: clamp(0.52rem, 1.08vw, 0.62rem);
  }

  body.has-flipbook #pricing .pricing-layout-header .flip-layout-title {
    font-size: clamp(1.42rem, 3vw, 1.9rem);
  }

  body.has-flipbook #pricing .pricing-layout-image {
    width: min(48%, 13.2rem);
    margin: 0 0 0.24rem 0.52rem;
    padding: 0.16rem;
  }

  body.has-flipbook #pricing .pricing-intro-copy p {
    margin-bottom: 0.26rem;
    font-size: clamp(0.76rem, 1.5vw, 0.9rem);
    line-height: 1.32;
  }

  body.has-flipbook #pricing .adventure-plan-list {
    width: min(100%, 26rem);
    margin-inline: auto;
    gap: 0.38rem;
  }

  body.has-flipbook #pricing .adventure-plan {
    padding: 0.56rem 0.68rem;
    border-radius: 9px;
  }

  body.has-flipbook #pricing .adventure-plan-main {
    gap: 0.34rem;
  }

  body.has-flipbook #pricing .plan-rune {
    width: 1.32rem;
    font-size: 0.5rem;
  }

  body.has-flipbook #pricing .adventure-plan h3 {
    font-size: clamp(0.9rem, 1.7vw, 1.06rem);
    font-weight: 900;
  }

  body.has-flipbook #pricing .plan-description {
    font-size: clamp(0.74rem, 1.4vw, 0.86rem);
    font-weight: 760;
    line-height: 1.28;
  }

  body.has-flipbook #pricing .plan-price {
    min-width: 4rem;
    font-size: clamp(0.82rem, 1.55vw, 0.96rem);
  }

  body.has-flipbook #pricing .plan-price span {
    font-size: 0.64rem;
  }

  body.has-flipbook #pricing .adventure-plan ul {
    margin-top: 0.18rem;
    margin-left: 1.62rem;
    gap: 0.04rem 0.4rem;
  }

  body.has-flipbook #pricing .adventure-plan li {
    font-size: clamp(0.68rem, 1.28vw, 0.78rem);
    font-weight: 760;
    line-height: 1.24;
  }

  body.has-flipbook #pricing .pricing-layout-cta {
    margin-top: auto;
    padding-top: 0.34rem;
    transform: translateY(-56px);
  }

  body.has-flipbook #pricing .pricing-layout-cta .flip-layout-button {
    width: min(100%, 12.6rem);
    min-height: 2.08rem;
    padding: 0.34rem 0.82rem;
    font-size: clamp(0.64rem, 1.18vw, 0.74rem);
  }
}

#trial .trial-layout-page {
  min-height: 100%;
  background:
    url("../assets/flip images/flip background.png") center / 100% 100% no-repeat;
}

.trial-layout-content {
  align-items: center;
  padding-top: clamp(1.12rem, 2.8vw, 1.7rem);
  text-align: center;
}

.trial-layout-header {
  margin-bottom: clamp(0.38rem, 1.4vw, 0.64rem);
}

.trial-layout-header .flip-layout-title {
  color: #713319;
  font-size: clamp(1.56rem, 4.2vw, 2.35rem);
  line-height: 1.08;
}

.trial-intro-copy,
.trial-support-copy {
  width: min(100%, 24rem);
}

.trial-intro-copy p,
.trial-support-copy p {
  margin-bottom: 0.42rem;
  color: #2f1b0c;
  font-size: clamp(0.86rem, 2vw, 1rem);
  font-weight: 700;
  line-height: 1.42;
}

.trial-center-image {
  position: relative;
  width: min(58%, 12.8rem);
  margin: 0.18rem auto 0.52rem;
  padding: 0.28rem;
  border: 2px solid rgba(138, 90, 36, 0.46);
  border-radius: 9px;
  background: rgba(255, 246, 215, 0.55);
  box-shadow: 0 0.45rem 1rem rgba(47, 27, 12, 0.18);
}

.trial-center-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.trial-button-row {
  display: grid;
  gap: 0.48rem;
  width: min(100%, 16.8rem);
  margin-top: 0.16rem;
}

.trial-primary-button {
  width: 100%;
  min-height: 2.72rem;
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
}

.trial-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.54rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(91, 59, 18, 0.48);
  border-radius: 999px;
  background: rgba(255, 247, 226, 0.62);
  color: #4a3010;
  font-family: var(--font-title);
  font-size: 0.82rem;
  line-height: 1.16;
  text-align: center;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0.18rem 0.42rem rgba(47, 27, 12, 0.12);
}

.trial-line-button:hover,
.trial-line-button:focus-visible {
  outline: 2px solid rgba(107, 47, 26, 0.28);
  outline-offset: 3px;
  background: rgba(255, 250, 235, 0.78);
}

.trial-note {
  width: min(100%, 21rem);
  margin: 0.46rem auto 0;
  color: #5c3d18;
  font-size: clamp(0.72rem, 1.8vw, 0.84rem);
  line-height: 1.32;
}

.trial-local-note {
  width: min(100%, 22rem);
  margin: 0.4rem auto 0;
  padding-top: 0.34rem;
  border-top: 1px solid rgba(111, 72, 21, 0.22);
  color: #563815;
  font-size: clamp(0.66rem, 1.65vw, 0.78rem);
  line-height: 1.34;
}

html[lang="ja"] #trial .trial-intro-copy p,
html[lang="ja"] #trial .trial-support-copy p {
  color: #211207;
  font-size: clamp(0.98rem, 2.28vw, 1.12rem);
  font-weight: 800;
  line-height: 1.48;
  text-shadow: 0 1px 0 rgba(255, 247, 220, 0.72);
}

html[lang="ja"] #trial .trial-intro-copy,
html[lang="ja"] #trial .trial-support-copy,
html[lang="ja"] #trial .trial-note {
  width: 78%;
  max-width: 21rem;
}

html[lang="ja"] #trial .trial-note {
  color: #2a1708;
  font-size: clamp(0.84rem, 1.9vw, 0.94rem);
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 247, 220, 0.68);
}

html[lang="ja"] #trial .trial-local-note {
  width: 72%;
  max-width: 19rem;
  margin-top: 0.28rem;
  padding: 0.42rem 0.58rem 0;
  border-top: 1px solid rgba(72, 43, 12, 0.38);
  border-radius: 8px;
  background: rgba(255, 242, 202, 0.42);
  color: #1f1005;
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  font-weight: 900;
  line-height: 1.42;
  text-shadow: 0 1px 0 rgba(255, 249, 225, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

@media (min-width: 769px) {
  body.has-flipbook #trial .trial-layout-page {
    overflow: hidden;
    padding: clamp(0.78rem, 1.55vw, 1.04rem) clamp(0.66rem, 1.45vw, 0.9rem) clamp(0.56rem, 1.2vw, 0.78rem) clamp(1.25rem, 2.2vw, 1.65rem);
  }

  body.has-flipbook #trial .trial-layout-content {
    padding: clamp(0.66rem, 1.25vw, 0.92rem) clamp(0.18rem, 0.65vw, 0.38rem) clamp(0.28rem, 0.7vw, 0.46rem);
    transform: translateY(34px);
  }

  body.has-flipbook #trial .trial-layout-header {
    margin-bottom: 0.2rem;
  }

  body.has-flipbook #trial .trial-layout-header .chapter-label {
    margin-bottom: 0.18rem;
    padding-block: 0.08rem;
    font-size: clamp(0.52rem, 1.08vw, 0.62rem);
  }

  body.has-flipbook #trial .trial-layout-header .flip-layout-title {
    font-size: clamp(1.36rem, 3.15vw, 1.9rem);
  }

  body.has-flipbook #trial .trial-intro-copy p,
  body.has-flipbook #trial .trial-support-copy p {
    margin-bottom: 0.28rem;
    font-size: clamp(0.82rem, 1.55vw, 0.96rem);
    font-weight: 900;
    line-height: 1.36;
  }

  body.has-flipbook #trial .trial-center-image {
    width: min(68%, 14.3rem);
    margin: 0.06rem auto 0.24rem;
    padding: 0.18rem;
  }

  body.has-flipbook #trial .trial-button-row {
    gap: 0.54rem;
    width: min(100%, 14.2rem);
    margin-top: 0;
  }

  body.has-flipbook #trial .trial-primary-button,
  body.has-flipbook #trial .trial-line-button {
    min-height: 2.08rem;
    padding: 0.34rem 0.82rem;
    font-size: clamp(0.64rem, 1.18vw, 0.74rem);
  }

  body.has-flipbook #trial .trial-note {
    margin-top: 0.24rem;
    padding-top: 0.2rem;
    font-size: clamp(0.74rem, 1.4vw, 0.86rem);
    font-weight: 900;
  }

  body.has-flipbook #trial .trial-local-note {
    margin-top: 0.36rem;
    padding-top: 0.22rem;
    font-size: clamp(0.68rem, 1.28vw, 0.78rem);
    font-weight: 900;
    line-height: 1.26;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-intro-copy p,
  html[lang="ja"] body.has-flipbook #trial .trial-support-copy p {
    font-size: clamp(0.86rem, 1.62vw, 1rem);
    font-weight: 900;
    line-height: 1.38;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-intro-copy,
  html[lang="ja"] body.has-flipbook #trial .trial-support-copy {
    width: 80%;
    max-width: 18.8rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-layout-content {
    padding-top: clamp(0.5rem, 0.95vw, 0.72rem);
  }

  html[lang="ja"] body.has-flipbook #trial .trial-layout-header {
    margin-bottom: 0.14rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-center-image {
    width: min(59%, 12.2rem);
    margin: 0.02rem auto 0.18rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-support-copy p {
    margin-bottom: 0.12rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-note {
    width: 78%;
    max-width: 18rem;
    margin-top: 0.2rem;
    padding-top: 0.15rem;
    font-size: clamp(0.76rem, 1.42vw, 0.88rem);
    font-weight: 900;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-local-note {
    width: 72%;
    max-width: 17rem;
    margin-top: 0.34rem;
    padding: 0.18rem 0.36rem 0.02rem;
    font-size: clamp(0.7rem, 1.32vw, 0.8rem);
    font-weight: 900;
    line-height: 1.22;
  }
}

@media (min-width: 769px) {
  body.has-flipbook #trust .growth-layout-content {
    padding-top: clamp(0.95rem, 1.8vw, 1.2rem);
  }

  body.has-flipbook #trust .flip-layout-title {
    font-size: clamp(1.32rem, 2.85vw, 1.78rem);
  }

  body.has-flipbook #trust .growth-layout-image {
    margin-top: 0.16rem;
  }

  body.has-flipbook #trust .growth-milestone-list {
    margin-top: 0.38rem;
  }

  body.has-flipbook #pricing .pricing-layout-content {
    padding-top: clamp(0.95rem, 1.75vw, 1.16rem);
  }

  body.has-flipbook #pricing .pricing-layout-header {
    margin-bottom: 0.42rem;
  }

  body.has-flipbook #pricing .pricing-layout-header .flip-layout-title {
    font-size: clamp(1.12rem, 2.45vw, 1.5rem);
    line-height: 1.1;
  }

  body.has-flipbook #pricing .pricing-layout-image {
    width: min(28%, 6.6rem);
    margin-top: 0.18rem;
  }

  body.has-flipbook #pricing .adventure-plan-list {
    margin-top: 0.42rem;
  }

  body.has-flipbook #trial .trial-layout-content {
    padding-top: clamp(1rem, 2vw, 1.34rem);
  }

  body.has-flipbook #trial .trial-layout-header {
    margin-bottom: 0.38rem;
  }

  body.has-flipbook #trial .trial-center-image {
    margin-top: 0.22rem;
    margin-bottom: 0.36rem;
  }

  body.has-flipbook #trial .trial-button-row {
    gap: 0.34rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-layout-content {
    padding-top: clamp(0.95rem, 1.8vw, 1.18rem);
  }
}

@media (min-width: 769px) {
  html[lang="ja"] body.has-flipbook #concept .flip-layout-title,
  html[lang="ja"] body.has-flipbook #lesson-flow .flip-layout-title,
  html[lang="ja"] body.has-flipbook #pricing .flip-layout-title,
  html[lang="ja"] body.has-flipbook #trial .flip-layout-title,
  html[lang="ja"] body.has-flipbook #concept .concept-keywords span,
  html[lang="ja"] body.has-flipbook #lesson-flow .system-step-kicker,
  html[lang="ja"] body.has-flipbook #lesson-flow .system-step h3,
  html[lang="ja"] body.has-flipbook #pricing .adventure-plan h3,
  html[lang="ja"] body.has-flipbook #pricing .plan-price,
  html[lang="ja"] body.has-flipbook #trial .trial-primary-button,
  html[lang="ja"] body.has-flipbook #trial .trial-line-button,
  html[lang="ja"] body.has-flipbook .flip-layout-button {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "HGSMinchoE", "MS Mincho", serif;
    font-weight: 900;
    text-shadow:
      0.32px 0 currentColor,
      -0.16px 0 currentColor,
      0 1px 0 rgba(255, 247, 220, 0.58);
  }

  html[lang="ja"] body.has-flipbook #concept .concept-layout-copy p,
  html[lang="ja"] body.has-flipbook #concept .concept-callout,
  html[lang="ja"] body.has-flipbook #lesson-flow .system-intro-copy p,
  html[lang="ja"] body.has-flipbook #lesson-flow .system-step p,
  html[lang="ja"] body.has-flipbook #pricing .pricing-intro-copy p,
  html[lang="ja"] body.has-flipbook #pricing .plan-description,
  html[lang="ja"] body.has-flipbook #pricing .adventure-plan li,
  html[lang="ja"] body.has-flipbook #trial .trial-intro-copy p,
  html[lang="ja"] body.has-flipbook #trial .trial-support-copy p,
  html[lang="ja"] body.has-flipbook #trial .trial-note,
  html[lang="ja"] body.has-flipbook #trial .trial-local-note {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "HGSMinchoE", "MS Mincho", serif;
    font-weight: 760;
    text-shadow:
      0.18px 0 currentColor,
      0 1px 0 rgba(255, 247, 220, 0.5);
  }
}

.chapter-label {
  margin: 0 0 0.64rem;
  width: fit-content;
  padding: 0.14rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 72, 21, 0.35);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent-deep);
  background: rgba(255, 247, 228, 0.72);
}

.hero {
  padding-top: clamp(2.4rem, 7vw, 4.6rem);
}

.hero .container {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  padding: 1rem 0.95rem;
}

.hero-mark {
  margin: 0 0 0.6rem;
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: #8b5e1d;
}

.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-family: var(--font-title);
  color: #83561a;
}

.hero-copy strong {
  color: #563815;
}

.hero-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-points li {
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 228, 0.82);
  color: #3f2c12;
  font-size: 0.88rem;
}

.hero-note {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: #694921;
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(183, 146, 86, 0.55);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: linear-gradient(150deg, #f7ecd2 0%, #ecd7ad 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 228, 0.45);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.8;
}

.hero-glow-a {
  width: min(52vw, 420px);
  aspect-ratio: 1;
  top: -14%;
  right: -12%;
  background: radial-gradient(circle, rgba(248, 223, 170, 0.36), transparent 66%);
  animation: drift 11s ease-in-out infinite;
}

.hero-glow-b {
  width: min(47vw, 360px);
  aspect-ratio: 1;
  left: -16%;
  bottom: -14%;
  background: radial-gradient(circle, rgba(138, 171, 232, 0.28), transparent 70%);
  animation: drift 15s ease-in-out infinite reverse;
}

.section-head {
  margin-bottom: clamp(1.2rem, 2.5vw, 1.7rem);
  max-width: 74ch;
}

.card-grid,
.flow-grid,
.pillars,
.pricing-grid {
  display: grid;
  gap: 0.95rem;
}

.card,
.flow-card,
.pillar,
.price-card,
.cta-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 250, 238, 0.8);
  box-shadow: 0 10px 24px rgba(84, 58, 18, 0.11);
  padding: clamp(0.95rem, 2.5vw, 1.35rem);
}

.flow-card img {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.5rem;
}

.pillar {
  border-radius: var(--radius-md);
}

.pricing-grid {
  margin-top: 1rem;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card .price {
  font-family: var(--font-title);
  color: var(--accent-deep);
  font-size: 1.58rem;
}

.price-card.featured {
  border-color: rgba(154, 106, 32, 0.48);
  background: linear-gradient(180deg, #f8ebce 0%, #ecd5a8 100%);
}

.badge {
  position: absolute;
  top: 0.8rem;
  right: 0.82rem;
  margin: 0;
  padding: 0.18rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 72, 21, 0.32);
  background: rgba(255, 247, 228, 0.72);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-family: var(--font-title);
}

.section-cta {
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.cta-panel {
  text-align: center;
  background: linear-gradient(180deg, #f8ebce 0%, #ead2a3 100%);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.66rem 1.15rem;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff9ec;
  border-color: rgba(69, 45, 15, 0.65);
  background: linear-gradient(180deg, #7a5218 0%, #5d3c12 100%);
  box-shadow: 0 8px 20px rgba(78, 50, 15, 0.28);
  font-family: var(--font-title);
}

.btn-secondary {
  color: #3b290f;
  border-color: rgba(111, 72, 21, 0.44);
  background: rgba(255, 247, 228, 0.78);
}

.fine-print {
  font-size: 0.88rem;
}

body.trial-booking-open,
body.trial-modal-open {
  overflow: hidden;
}

.trial-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2.8vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.trial-booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.trial-booking-modal[hidden] {
  display: none;
}

.trial-booking-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 231, 202, 0.14), transparent 42%),
    rgba(4, 10, 20, 0.78);
  backdrop-filter: blur(3px);
}

.trial-booking-dialog {
  position: relative;
  width: min(1100px, 94vw);
  max-height: min(94svh, 55rem);
  border: 1px solid rgba(111, 72, 21, 0.46);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.38), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(178, 126, 48, 0.12), transparent 42%),
    repeating-linear-gradient(106deg, rgba(130, 94, 36, 0.035) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #fbefd1 0%, #edd9ab 100%);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 252, 237, 0.55);
  color: var(--ink);
  transform: translateY(12px) scale(0.985);
  transition: transform 180ms ease;
}

.trial-booking-modal.is-open .trial-booking-dialog {
  transform: translateY(0) scale(1);
}

.trial-booking-scroll {
  max-height: min(94svh, 55rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  scrollbar-color: rgba(111, 72, 21, 0.38) transparent;
}

.trial-booking-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(111, 72, 21, 0.36);
  border-radius: 999px;
  background: rgba(255, 247, 228, 0.82);
  color: #4d2d0f;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(70, 43, 12, 0.14);
}

.trial-booking-close:hover,
.trial-booking-close:focus-visible {
  outline: 2px solid rgba(111, 72, 21, 0.3);
  outline-offset: 3px;
  background: #fff8e7;
}

.trial-booking-language {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.24rem;
  border: 1px solid rgba(111, 72, 21, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 235, 0.64);
}

@media (min-width: 769px) {
  .trial-booking-language {
    position: absolute;
    top: 1.15rem;
    left: 1.35rem;
  }
}

.modal-lang-btn {
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5d3c12;
  font-family: var(--font-title);
  font-size: 0.72rem;
}

.modal-lang-btn.is-active {
  background: linear-gradient(180deg, #faedcf, #d9b86a);
  box-shadow: 0 5px 12px rgba(83, 53, 15, 0.14);
}

.trial-booking-header {
  margin-top: 0.15rem;
  padding: 0 2.3rem 0 10.2rem;
}

.trial-booking-header h2 {
  margin-bottom: 0.34rem;
  font-size: clamp(1.6rem, 3.3vw, 2.25rem);
}

.trial-booking-header p:last-child {
  max-width: 78ch;
  margin: 0;
  color: #3c2810;
  font-size: clamp(0.94rem, 1.45vw, 1.04rem);
  line-height: 1.38;
}

.trial-booking-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.trial-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem 0.78rem;
}

.trial-booking-wide {
  grid-column: 1 / -1;
}

.trial-booking-field,
.trial-booking-checkbox,
.trial-booking-radio-group label {
  color: #2b1a09;
}

.trial-booking-field {
  display: grid;
  gap: 0.18rem;
}

.trial-booking-field span,
.trial-booking-radio-group legend {
  font-family: var(--font-title);
  font-size: 0.78rem;
  line-height: 1.22;
}

.trial-booking-field em,
.trial-booking-radio-group em {
  color: #8f3f1d;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.76rem;
}

.trial-booking-field input {
  min-height: 2.42rem;
  width: 100%;
  border: 1px solid rgba(111, 72, 21, 0.34);
  border-radius: 10px;
  background: rgba(255, 252, 240, 0.8);
  color: var(--ink);
  padding: 0.38rem 0.64rem;
  font: inherit;
}

.trial-booking-field input:focus,
.trial-booking-checkbox input:focus-visible,
.trial-booking-radio-group input:focus-visible {
  outline: 2px solid rgba(111, 72, 21, 0.3);
  outline-offset: 3px;
  border-color: rgba(111, 72, 21, 0.62);
}

.trial-booking-radio-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.trial-booking-radio-group legend {
  margin-bottom: 0.28rem;
}

.trial-booking-options {
  display: grid;
  gap: 0.36rem;
}

@media (min-width: 769px) {
  .trial-booking-grid .trial-booking-options,
  .trial-booking-wide .trial-booking-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.trial-booking-radio-group label,
.trial-booking-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.46rem 0.58rem;
  border: 1px solid rgba(111, 72, 21, 0.22);
  border-radius: 12px;
  background: rgba(255, 250, 235, 0.55);
  line-height: 1.24;
}

.trial-booking-radio-group input,
.trial-booking-checkbox input {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.14rem;
  accent-color: var(--accent-deep);
}

.trial-booking-fee {
  border: 1px solid rgba(111, 72, 21, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(154, 106, 32, 0.12), transparent 45%),
    rgba(255, 246, 220, 0.72);
  padding: 0.58rem 0.72rem;
  color: #3d2810;
  font-weight: 700;
  line-height: 1.32;
  font-size: 0.96rem;
}

.trial-booking-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trial-booking-privacy {
  margin: -0.18rem 0 0;
  color: #5b4223;
  font-size: 0.84rem;
  line-height: 1.28;
}

.trial-booking-status {
  margin: 0;
  color: #6f4815;
  font-weight: 800;
}

.trial-booking-status.is-success {
  border: 1px solid rgba(91, 112, 75, 0.35);
  border-radius: 14px;
  background: rgba(237, 248, 225, 0.7);
  padding: 1rem;
  color: #2d4b24;
  font-size: 1.08rem;
}

.trial-booking-status.is-success p {
  margin: 0 0 0.35rem;
}

.trial-booking-submit {
  width: fit-content;
  min-width: min(100%, 16rem);
  border: 0;
  cursor: pointer;
}

.trial-booking-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 768px) {
  .trial-booking-modal {
    align-items: end;
    padding: 0.6rem;
  }

  .trial-booking-dialog,
  .trial-booking-scroll {
    max-height: 88svh;
  }

  .trial-booking-dialog {
    width: min(96vw, 100%);
    border-radius: 18px;
  }

  .trial-booking-scroll {
    padding: 1rem;
  }

  .trial-booking-header {
    margin-top: 1.1rem;
    padding: 0 2.5rem 0 0;
  }

  .trial-booking-grid {
    grid-template-columns: 1fr;
    gap: 0.66rem;
  }

  .trial-booking-field input {
    min-height: 2.65rem;
  }

  .trial-booking-field span,
  .trial-booking-radio-group legend {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .trial-booking-options {
    gap: 0.5rem;
  }

  .trial-booking-radio-group label,
  .trial-booking-checkbox {
    padding: 0.58rem 0.64rem;
  }

  .trial-booking-submit {
    width: 100%;
  }
}

.site-footer {
  border-top: 1px solid rgba(239, 206, 148, 0.4);
  background: linear-gradient(180deg, rgba(9, 19, 35, 0.86), rgba(7, 15, 28, 0.96));
  padding: 2.2rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 0.8rem;
}

.footer-brand {
  color: #f7e1b6;
  font-family: var(--font-title);
}

.site-footer p,
.site-footer a {
  color: #e7d4b1;
}

.copyright {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #d1b98d;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (min-width: 760px) {
  .nav-list {
    gap: 0.78rem;
    overflow: visible;
  }

  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
  }

  .hero-copy {
    padding: 1.35rem 1.18rem;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .hero-points li {
    text-align: center;
    border-radius: 12px;
  }

  .two-col,
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (max-width: 759px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.7rem 0;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .chapter .container {
    padding: 1rem 0.9rem;
  }
}

/* ── Mobile flipbook adjustments ──────────────────────────────── */
@media (max-width: 768px) {
  /* Full-screen book — dark background, no scroll */
  body.has-flipbook {
    overflow: hidden;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;
    overscroll-behavior: none;
    touch-action: none;
    background: #081321;
  }

  /* Header: transparent overlay used as a title band above the book */
  body.has-flipbook .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    min-height: 0;
    padding: 0;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    pointer-events: none;
  }

  body.has-flipbook .nav-wrap {
    min-height: 0;
    padding: 0.08rem 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  body.has-flipbook .brand {
    pointer-events: auto;
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 0.26rem;
    width: 100%;
    padding: 0.28rem 0.65rem 0.18rem;
    color: #f5deb0;
    text-shadow:
      -0.4px 0 #6a4d28,
      0.4px 0 #6a4d28,
      0 -0.4px #6a4d28,
      0 0.4px #6a4d28,
      0 1px 8px rgba(34, 20, 6, 0.38);
  }

  body.has-flipbook .brand-main {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
  }

  body.has-flipbook .brand-sub {
    display: inline-block;
    margin-top: 0;
    font-size: 0.76rem;
    line-height: 1;
    color: #f0daa8;
  }

  body.has-flipbook.is-cover-page .brand {
    opacity: 0;
    pointer-events: none;
  }

  /* Nav buttons: override desktop position → fixed at bottom */
  body.has-flipbook > .nav-actions {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    padding: 0.28rem 0.35rem 0.45rem;
    background: linear-gradient(
      0deg,
      rgba(9, 19, 35, 0.92) 0%,
      rgba(9, 19, 35, 0.7) 60%,
      transparent 100%
    );
    gap: 0.25rem;
    width: 100%;
  }

  body.has-flipbook .nav-list {
    gap: 0.2rem;
  }

  body.has-flipbook .nav-list a {
    font-size: 0.54rem;
    padding: 0.1rem 0.32rem;
    min-height: 22px;
  }

  body.has-flipbook .lang-toggle {
    padding: 0.1rem;
  }

  body.has-flipbook .lang-btn {
    min-height: 22px;
    padding: 0.08rem 0.32rem;
    font-size: 0.55rem;
  }

  /* Story main fills the screen */
  body.has-flipbook .story-main {
    padding: 0;
    height: 100svh;
  }

  body.has-flipbook .flipbook-shell {
    width: 100%;
    height: 100%;
  }

  /* Book starts from the very top */
  body.has-flipbook .flipbook-sticky {
    top: 0;
    height: 100svh;
    padding: 0.5rem 0 0;
    align-items: start;
    justify-items: center;
  }

  body.has-flipbook .flipbook-book {
    width: calc(100vw - 0.6rem);
    height: calc(100svh - 2.4rem);
    margin-top: 0;
  }

  /* Keep content spacing stable between cover and inner pages */
  body.has-flipbook .chapter .container {
    padding: 1.18rem 0.62rem 0.65rem 1.08rem;
  }

  body.has-flipbook .section-head {
    margin-bottom: 0.8rem;
  }

  body.has-flipbook .card,
  body.has-flipbook .flow-card,
  body.has-flipbook .pillar,
  body.has-flipbook .price-card,
  body.has-flipbook .cta-panel {
    padding: 0.72rem 0.82rem;
  }

  body.has-flipbook .card-grid,
  body.has-flipbook .flow-grid,
  body.has-flipbook .pillars,
  body.has-flipbook .pricing-grid {
    gap: 0.62rem;
  }

  /* Thinner spine on mobile */
  body.has-flipbook .chapter .container::after {
    width: 16px;
  }

  /* Fewer stacked pages on mobile */
  body.has-flipbook .chapter .container {
    box-shadow:
      inset 2px 2px 4px rgba(255, 248, 228, 0.4),
      2px 2px 0 0 #ddd0ac,
      2.5px 2.5px 0 0 #7a5a28,
      4px 4px 0 0 #d6c89e,
      4.5px 4.5px 0 0 #6b4a1f,
      6px 6px 0 0 #d1be90,
      6.5px 6.5px 0 0 #5e3f18,
      10px 12px 20px rgba(30, 18, 6, 0.3);
  }

  body.has-flipbook h1 {
    font-size: 1.3rem;
  }

  body.has-flipbook h2 {
    font-size: 1.02rem;
    margin-bottom: 0.35em;
  }

  body.has-flipbook h3 {
    font-size: 0.9rem;
    margin-bottom: 0.32em;
  }

  body.has-flipbook p,
  body.has-flipbook li {
    font-size: 0.76rem;
    line-height: 1.42;
  }

  body.has-flipbook #trust .section-head {
    margin-bottom: 0.62rem;
  }

  body.has-flipbook #trust h2 {
    font-size: 0.96rem;
  }

  body.has-flipbook #trust .pillar,
  body.has-flipbook #trust .card {
    padding: 0.52rem 0.66rem;
  }

  body.has-flipbook #trust .pillars,
  body.has-flipbook #trust .card-grid {
    gap: 0.42rem;
  }

  body.has-flipbook #trust p,
  body.has-flipbook #trust li {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  body.has-flipbook li + li {
    margin-top: 0.14rem;
  }

  body.has-flipbook .chapter-label {
    margin-bottom: 0.45rem;
    padding: 0.1rem 0.56rem;
    font-size: 0.68rem;
  }

  body.has-flipbook .eyebrow {
    margin-bottom: 0.42rem;
    font-size: 0.68rem;
  }

  body.has-flipbook .scene-art {
    margin: 0.7rem 0;
    max-height: 118px;
  }

  body.has-flipbook .scene-art img {
    height: 118px;
    object-fit: cover;
  }

  body.has-flipbook #concept .section-head p,
  body.has-flipbook #trust .section-head p,
  body.has-flipbook #pricing .section-head p {
    margin-bottom: 0.55rem;
  }

  body.has-flipbook #concept .flip-layout-page {
    padding: 0.95rem 0.58rem 0.72rem 0.95rem;
  }

  body.has-flipbook #concept .flip-layout-content {
    padding: 0.9rem 0.28rem 0.5rem;
  }

  body.has-flipbook #concept .flip-layout-header {
    margin-bottom: 0.62rem;
  }

  body.has-flipbook #concept .flip-layout-title {
    font-size: clamp(1.64rem, 9.8vw, 2.18rem);
    line-height: 1.08;
  }

  body.has-flipbook #concept .flip-layout-subtitle {
    font-size: clamp(0.82rem, 4vw, 0.98rem);
    line-height: 1.32;
  }

  body.has-flipbook #concept .flip-layout-image {
    width: min(44%, 9.6rem);
    margin: 0.08rem 0 0.52rem 0.72rem;
    padding: 0.18rem;
  }

  body.has-flipbook #concept .flip-layout-copy p {
    margin-bottom: 0.56rem;
    font-size: clamp(0.8rem, 3.7vw, 0.92rem);
    font-weight: 700;
    line-height: 1.43;
  }

  body.has-flipbook #concept .flip-layout-cta {
    padding-top: 0.42rem;
  }

  body.has-flipbook #lesson-flow .system-layout-page {
    padding: 0.9rem 0.58rem 0.68rem 0.95rem;
  }

  body.has-flipbook #lesson-flow .system-layout-content {
    padding: 0.84rem 0.28rem 0.48rem;
  }

  body.has-flipbook #lesson-flow .system-layout-header {
    margin-bottom: 0.48rem;
  }

  body.has-flipbook #lesson-flow .system-layout-header .chapter-label {
    margin-bottom: 0.32rem;
    font-size: 0.58rem;
  }

  body.has-flipbook #lesson-flow .flip-layout-title {
    font-size: clamp(1.5rem, 8.8vw, 2.04rem);
    line-height: 1.06;
  }

  body.has-flipbook #lesson-flow .flip-layout-subtitle {
    font-size: clamp(0.78rem, 3.8vw, 0.94rem);
    line-height: 1.25;
  }

  body.has-flipbook #lesson-flow .system-layout-image {
    width: min(39%, 8.9rem);
    margin: 0.04rem 0 0.42rem 0.62rem;
    padding: 0.18rem;
  }

  body.has-flipbook #lesson-flow .system-intro-copy p {
    padding-left: 7px;
    margin-bottom: 0.42rem;
    font-size: clamp(0.72rem, 3.3vw, 0.84rem);
    line-height: 1.36;
  }

  body.has-flipbook #lesson-flow .system-intro-copy {
    transform: translateY(25px);
  }

  body.has-flipbook #lesson-flow .system-quest-label {
    margin-bottom: 0.44rem;
    padding: 0.16rem 0.52rem;
    font-size: 0.58rem;
  }

  body.has-flipbook #lesson-flow .system-step-list {
    gap: 0.38rem;
  }

  body.has-flipbook #lesson-flow .system-step {
    gap: 0.44rem;
    padding: 0.5rem 0.54rem;
    border-radius: 10px;
  }

  body.has-flipbook #lesson-flow .system-step-mark {
    width: 1.62rem;
    font-size: 0.64rem;
  }

  body.has-flipbook #lesson-flow .system-step-kicker {
    font-size: 0.62rem;
  }

  body.has-flipbook #lesson-flow .system-step h3 {
    margin-bottom: 0.08rem;
    font-size: clamp(0.76rem, 3.45vw, 0.88rem);
  }

  body.has-flipbook #lesson-flow .system-step p {
    font-size: clamp(0.68rem, 3.1vw, 0.78rem);
    line-height: 1.32;
  }

  body.has-flipbook #lesson-flow .system-layout-cta {
    padding-top: 0.42rem;
  }

  body.has-flipbook #trust .pillar,
  body.has-flipbook #trust .card,
  body.has-flipbook #pricing .price-card {
    border-radius: 14px;
  }

  body.has-flipbook #trust .card,
  body.has-flipbook #pricing .price-card {
    padding: 0.62rem 0.74rem;
  }

  body.has-flipbook #pricing .pricing-grid {
    margin-top: 0.55rem;
    gap: 0.5rem;
  }

  body.has-flipbook #pricing .price-card {
    padding-top: 0.58rem;
    padding-bottom: 0.58rem;
  }

  body.has-flipbook #pricing .price-card .price {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  body.has-flipbook #pricing .badge {
    top: 0.48rem;
    right: 0.5rem;
    font-size: 0.6rem;
    padding: 0.12rem 0.42rem;
  }

  body.has-flipbook #pricing .price-unit {
    font-size: 0.72rem;
  }

  body.has-flipbook .cta-row {
    gap: 0.48rem;
    margin-top: 0.75rem;
  }

  body.has-flipbook .btn {
    min-height: 38px;
    padding: 0.48rem 0.9rem;
  }

  .flipbook-hint {
    top: 6.1rem;
    bottom: auto;
    width: min(74%, 15.5rem);
    padding: 0.5rem 0.78rem;
    font-size: 0.72rem;
    z-index: 26;
  }
}

@media (max-width: 768px) {
  html body.has-flipbook #concept .concept-layout-page {
    padding: 1.25rem 0.6rem 0.7rem 0.95rem;
    overflow: hidden;
  }

  html body.has-flipbook #concept .concept-layout-content {
    padding: 1.08rem 0.28rem 0.42rem;
    transform: translateY(52px) !important;
  }

  html body.has-flipbook #concept .concept-layout-header {
    margin-bottom: 0.7rem;
  }

  html body.has-flipbook #concept .concept-layout-header .chapter-label {
    margin-bottom: 0.3rem;
    font-size: 0.58rem;
  }

  html body.has-flipbook #concept .concept-layout-header .flip-layout-title {
    font-size: clamp(1.62rem, 8.65vw, 2.08rem);
    line-height: 1.05;
  }

  html body.has-flipbook #concept .concept-layout-header .flip-layout-subtitle {
    margin-top: 0.42rem;
    font-size: clamp(0.76rem, 3.65vw, 0.92rem);
    line-height: 1.34;
  }

  html body.has-flipbook #concept .concept-layout-image {
    width: min(60%, 11.0rem);
    margin: 0.08rem 0 0.54rem 0.9rem;
    padding: 0.05rem;
  }

  html body.has-flipbook #concept .concept-layout-copy p {
    margin-bottom: 0.48rem;
    font-size: clamp(0.74rem, 3.55vw, 0.86rem);
    font-weight: 720;
    line-height: 1.42;
  }

  html body.has-flipbook #concept .concept-lead {
    clear: none;
    width: calc(53% - 0.58rem);
    margin: 0 0 0.34rem;
    padding: 0.34rem 0.42rem;
    border: 1px solid rgba(111, 72, 21, 0.18);
    border-radius: 10px;
    background: rgba(255, 250, 238, 0.64);
    color: #2d1a0a;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  html body.has-flipbook #concept .concept-copy-panel {
    overflow: visible;
    width: calc(53% - 0.58rem);
    min-height: 7.35rem;
    margin: 0 0 0.44rem;
    padding: 0.48rem 0.46rem;
    background:
      linear-gradient(180deg, rgba(255, 231, 137, 0.82), rgba(218, 163, 45, 0.68));
    border-color: rgba(128, 84, 14, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(216, 182, 33, 0.493),
      0 0.24rem 0.56rem rgba(75, 41, 8, 0.12);
  }

  html body.has-flipbook #concept .concept-callout {
    clear: both;
    margin-top: 0.5rem;
    width: 96%;
    padding: 0.46rem 0.58rem;
    background:
      linear-gradient(180deg, rgba(230, 244, 243, 0.72), rgba(188, 222, 225, 0.62));
    border: 1px solid rgba(85, 129, 139, 0.34);
    border-radius: 10px;
    color: #2d4c52;
    font-size: clamp(0.78rem, 3.75vw, 0.92rem);
    line-height: 1.38;
  }

  html body.has-flipbook #concept .concept-keywords {
    gap: 0.38rem;
    margin-top: 0.76rem;
  }

  html body.has-flipbook #concept .concept-keywords span {
    min-width: 3.35rem;
    min-height: 1.55rem;
    justify-content: center;
    padding: 0.16rem 0.58rem;
    background: rgba(255, 238, 191, 0.78);
    border-color: rgba(123, 73, 19, 0.35);
    color: #5f2813;
    font-size: 0.62rem;
  }

  html body.has-flipbook #concept .concept-layout-cta {
    padding-top: 0.82rem;
  }

  html body.has-flipbook #concept .concept-layout-cta .flip-layout-button {
    min-height: 2.54rem;
    padding-inline: 1.1rem;
    color: #281505;
    font-size: 0.94rem;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 242, 178, 0.82);
  }

  body.has-flipbook #trust .growth-intro-copy {
    transform: translateY(16px);
  }

  body.has-flipbook #trust .growth-intro-copy p {
    padding-right: 7px;
  }

  body.has-flipbook #pricing .pricing-intro-copy {
    transform: translateY(16px);
  }

  body.has-flipbook #pricing .pricing-intro-copy p {
    padding-left: 7px;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-layout-content {
    padding-top: 1.12rem;
    padding-bottom: 0.42rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-layout-header {
    margin-bottom: 0.34rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-layout-header .chapter-label {
    margin-bottom: 0.28rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-layout-header .flip-layout-title {
    font-size: clamp(1.58rem, 8.2vw, 2.04rem);
    line-height: 1.06;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-intro-copy,
  html[lang="ja"] body.has-flipbook #trial .trial-support-copy {
    width: 88%;
    max-width: 20.4rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-intro-copy p,
  html[lang="ja"] body.has-flipbook #trial .trial-support-copy p {
    margin-bottom: 0.34rem;
    font-size: clamp(0.82rem, 4.1vw, 0.96rem);
    line-height: 1.4;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-center-image {
    width: min(52%, 10.8rem);
    margin: 0.14rem auto 0.4rem;
    padding: 0.18rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-button-row {
    gap: 0.34rem;
    margin-top: 0.1rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-primary-button,
  html[lang="ja"] body.has-flipbook #trial .trial-line-button {
    min-height: 2.08rem;
    padding-block: 0.34rem;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-note {
    width: 86%;
    margin-top: 0.24rem;
    font-size: clamp(0.66rem, 3.34vw, 0.78rem);
    line-height: 1.3;
  }

  html[lang="ja"] body.has-flipbook #trial .trial-local-note {
    width: 82%;
    margin-top: 0.18rem;
    padding: 0.22rem 0.42rem 0.04rem;
    font-size: clamp(0.58rem, 2.94vw, 0.68rem);
    line-height: 1.26;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   Content styles carried over from the newer copy version.
   These do not alter the restored flipbook mechanics above.
   ================================================================ */

.nav-list a.is-active {
  background: rgba(250, 226, 179, 0.22);
  border-color: rgba(242, 208, 150, 0.65);
  color: #ffe8c0;
}

.chapter-cover .hero-visual {
  position: relative;
}

.cover-subtitle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(8, 19, 33, 0.92) 0%, rgba(8, 19, 33, 0.4) 60%, transparent 100%);
  text-align: center;
  pointer-events: none;
}

.cover-tagline {
  width: fit-content;
  max-width: 78%;
  margin: 0 0 0.5rem auto;
  color: #f5e3c2;
  font-family: var(--font-title);
  font-size: clamp(0.92rem, 2.4vw, 1.25rem);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(8, 19, 33, 0.8);
}

.cover-scroll-hint {
  display: none;
}

@media (max-width: 768px) {
  body.has-flipbook #top .cover-subtitle-overlay {
    padding: 4rem 1rem 4.55rem;
  }

  body.has-flipbook #top .cover-tagline {
    max-width: 76%;
    margin-left: auto;
    margin-right: 0.72rem;
    font-size: 1.18rem;
    line-height: 1.2;
    margin-bottom: 0.38rem;
  }

  body.has-flipbook #top .cover-scroll-hint {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
}

@keyframes hintFloat {
  0%, 100% { transform: translateY(0); opacity: 0.72; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.scene-art {
  margin: 1.2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(183, 146, 86, 0.38);
  background: rgba(255, 247, 228, 0.2);
}

.scene-art img {
  width: 100%;
  height: auto;
  display: block;
}

.character-art {
  margin: 1rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(183, 146, 86, 0.38);
}

.character-art img {
  width: 100%;
  height: auto;
  display: block;
}

body.has-flipbook .scene-art {
  max-height: 150px;
}

body.has-flipbook .scene-art img {
  height: 150px;
  object-fit: cover;
}

body.has-flipbook .character-art {
  max-height: 130px;
}

body.has-flipbook .character-art img {
  height: 130px;
  object-fit: cover;
  object-position: top center;
}

.price-unit {
  font-size: 0.85rem;
  opacity: 0.68;
  margin-left: 0.08em;
}
