/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-base: #FFF0EB;
  --color-main: #333333;
  --color-accent: #EC008C;
  --color-cyan: #00CED1;
  --color-yellow: #FFD700;
  --color-white: #FFFFFF;
  --color-grey: #999999;
}

html, body {
  width: 100%; height: 100%;
  background: #111;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-main);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === Viewport Shell === */
#viewport {
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#slide-wrapper {
  position: absolute;
  width: calc(100vh * 16 / 9);
  height: 100vh;
  max-width: 100vw;
  max-height: calc(100vw * 9 / 16);
  container-type: inline-size;
  overflow: hidden;
}

#slide-container {
  position: absolute;
  inset: 0;
}

/* === Slide === */
.slide {
  position: absolute;
  inset: 0;
  background: var(--color-base);
  padding: 3% 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  overflow: hidden;
}

/* --- Text sizes (container query units) --- */
.slide-h1 {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(2.6rem, 5.6cqw, 5.2rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: var(--color-main);
}
.slide-h2 {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 4.2cqw, 3.8rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-main);
}
.slide-body {
  font-size: clamp(1.4rem, 2.8cqw, 2.4rem);
  line-height: 1.6;
  text-align: center;
  color: var(--color-main);
  margin-top: 1.5cqw;
}
.slide-section-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(3rem, 6cqw, 5.5rem);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}
.slide-section-sub {
  font-size: clamp(1.4rem, 2.8cqw, 2.4rem);
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-top: 1cqw;
}

/* === Layout: center === */
.center-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 85%;
}

/* === Layout: section (bridge) === */
.layout-section {
  background: var(--color-accent);
}
.section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* === Layout: top-bottom === */
.top-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 2cqw;
}
.item-list {
  display: flex;
  flex-direction: column;
  gap: 1.2cqw;
  width: 85%;
  flex: 1;
  justify-content: center;
}
.item-row {
  display: flex;
  align-items: center;
  gap: 1.5cqw;
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.4cqw 2cqw;
}
.item-num {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.6cqw, 2.2rem);
  font-weight: 700;
  min-width: 2.5cqw;
  text-align: center;
  flex-shrink: 0;
}
.item-text {
  font-size: clamp(1.3rem, 2.4cqw, 2rem);
  line-height: 1.5;
  color: var(--color-main);
}

/* === Layout: split-2 === */
.split2-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2.5cqw;
}
.split2-headline { text-align: center; }
.split2-cols {
  display: flex;
  gap: 3cqw;
  width: 90%;
}
.split-col {
  flex: 1;
  background: var(--color-white);
  border-radius: 16px;
  padding: 2.5cqw;
  border-top: 4px solid var(--color-grey);
}
.split-col-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.8cqw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.5cqw;
}
.split-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1cqw;
}
.split-col-list li {
  font-size: clamp(1.2rem, 2.2cqw, 1.8rem);
  line-height: 1.5;
  padding-left: 1.2cqw;
  position: relative;
}
.split-col-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-grey);
}

/* === Layout: split-3 === */
.split3-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2.5cqw;
}
.split3-headline { text-align: center; }
.split3-cols {
  display: flex;
  gap: 2.5cqw;
  width: 92%;
}
.split3-card {
  flex: 1;
  background: var(--color-white);
  border-radius: 16px;
  padding: 2cqw;
  border-top: 4px solid var(--color-grey);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1cqw;
}
.split3-label {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1rem, 1.8cqw, 1.4rem);
  font-weight: 700;
  color: var(--color-white);
  width: 3cqw; height: 3cqw;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; min-height: 36px;
}
.split3-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.3rem, 2.6cqw, 2.2rem);
  font-weight: 700;
  color: var(--color-main);
}
.split3-desc {
  font-size: clamp(1.1rem, 2cqw, 1.6rem);
  color: var(--color-grey);
  line-height: 1.5;
}

/* === Layout: left-right === */
.leftright-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 2.5cqw;
}
.leftright-cols {
  display: flex;
  gap: 3cqw;
  width: 100%;
}
.leftright-text {
  flex: 1.2;
  font-size: clamp(1.4rem, 2.6cqw, 2.2rem);
  line-height: 1.7;
  color: var(--color-main);
}
.leftright-accent {
  flex: 0.8;
  font-size: clamp(1.3rem, 2.4cqw, 2rem);
  line-height: 1.7;
  color: var(--color-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* === Style variants === */
.style-title-hero .slide-h1 {
  font-size: clamp(3rem, 7cqw, 6.5rem);
  color: var(--color-accent);
  letter-spacing: 0.05em;
}
.style-accent-text .slide-h1 {
  color: var(--color-accent);
}
.style-cyan-accent .slide-h1 {
  color: var(--color-cyan);
}
.style-promise .slide-h1 {
  font-size: clamp(1.8rem, 3.8cqw, 3.4rem);
  color: var(--color-main);
}
.style-notice {
  background: var(--color-white);
}
.style-notice .slide-body {
  color: var(--color-grey);
}
.style-question .slide-h1 {
  font-size: clamp(2.4rem, 5.2cqw, 5rem);
  color: var(--color-accent);
}
.style-pillar .slide-h1 {
  color: var(--color-accent);
  font-size: clamp(2.4rem, 5cqw, 4.5rem);
}
.style-pillar .slide-body {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8cqw, 2.4rem);
}
.style-exercise .slide-body {
  font-weight: 700;
  color: var(--color-accent);
  font-size: clamp(1.4rem, 2.8cqw, 2.4rem);
}
.style-step .slide-h1 {
  font-size: clamp(2.4rem, 5.2cqw, 5rem);
  color: var(--color-cyan);
}
.style-step .slide-body {
  font-size: clamp(1.4rem, 2.8cqw, 2.4rem);
  font-weight: 700;
}
.style-step-accent .slide-h1 {
  font-size: clamp(2.4rem, 5.2cqw, 5rem);
  color: var(--color-accent);
}
.style-step-accent .slide-body {
  font-size: clamp(1.6rem, 3.2cqw, 2.8rem);
  font-weight: 700;
  color: var(--color-accent);
}
.style-final-message .slide-h1 {
  font-size: clamp(2rem, 4.2cqw, 3.8rem);
  color: var(--color-accent);
}
.style-thank-you .slide-h1 {
  font-size: clamp(2.4rem, 5cqw, 4.5rem);
  color: var(--color-main);
}
.style-thank-you .slide-body {
  color: var(--color-grey);
  font-size: clamp(1rem, 2cqw, 1.6rem);
}

/* === Status bar (top-right) === */
#status-bar {
  position: absolute;
  top: 1.35cqw;
  right: 4.4cqw;
  z-index: 18;
  width: min(12cqw, 170px);
  display: flex;
  align-items: center;
  gap: 0.45cqw;
  pointer-events: none;
  opacity: 0.68;
}

#status-agenda {
  display: none;
}

#status-num {
  min-width: 3.2em;
  font-size: clamp(0.5rem, 0.75cqw, 0.68rem);
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.01em;
  color: rgba(51, 51, 51, 0.42);
}

#status-time {
  display: none;
}

#status-percent {
  display: none;
}

.status-meta {
  display: none;
}

.status-track {
  flex: 1 1 auto;
  width: auto;
  height: 0.24cqw;
  min-height: 3px;
  border-radius: 999px;
  background: rgba(51, 51, 51, 0.14);
  overflow: hidden;
}

#status-progress {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(236, 0, 140, 0.82), rgba(0, 206, 209, 0.78));
  transition: width 0.24s ease;
}

/* === Menu button === */
#menu-btn {
  position: absolute;
  top: 1cqw;
  right: 1.5cqw;
  z-index: 20;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6cqw;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-grey);
  border-radius: 1px;
  transition: background 0.2s;
}
#menu-btn:hover span { background: var(--color-main); }

#benefits-link {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(236, 0, 140, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#benefits-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(236, 0, 140, 0.34);
}

/* === Overlay === */
#overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* === Sidebar === */
#sidebar {
  position: absolute;
  top: 0; right: 0;
  width: 30%;
  min-width: 260px;
  max-width: 400px;
  height: 100%;
  background: var(--color-white);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 2cqw 1.5cqw;
}
#sidebar.open { transform: translateX(0); }

.sidebar-section { margin-bottom: 1.5cqw; }
.sidebar-benefit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-bottom: 1.2cqw;
  border-radius: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(0.72rem, 1.1cqw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sidebar-benefit-link:hover {
  filter: brightness(1.04);
}
.sidebar-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5cqw 0.8cqw;
  border-bottom: 2px solid var(--color-accent);
  margin-bottom: 0.5cqw;
}
.sidebar-label {
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2cqw, 0.95rem);
  color: var(--color-main);
}
.sidebar-time {
  font-size: clamp(0.6rem, 1cqw, 0.8rem);
  color: var(--color-grey);
}
.sidebar-item {
  padding: 0.4cqw 0.8cqw;
  font-size: clamp(0.6rem, 1cqw, 0.8rem);
  color: var(--color-grey);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-item:hover { background: var(--color-base); color: var(--color-main); }
.sidebar-item.active {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
}

/* === Talk script panel === */
#script-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  max-height: 30%;
  background: rgba(51,51,51,0.95);
  color: var(--color-white);
  z-index: 25;
  padding: 1.5cqw 3cqw;
  font-size: clamp(0.8rem, 1.4cqw, 1.1rem);
  line-height: 1.7;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}
#script-panel.visible { transform: translateY(0); }
#script-text {
  white-space: pre-wrap;
}
#hover-zone {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  z-index: 24;
}

/* === Raw slide mode === */
.layout-raw {
  padding: 0;
}
.raw-slide {
  width: 100%;
  height: 100%;
}
.raw-wrap {
  width: 100%;
  height: 100%;
  padding: 4.5% 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4cqw;
  text-align: center;
}
.raw-wrap--left {
  align-items: flex-start;
  text-align: left;
}
.raw-wrap--left-block {
  max-width: 78%;
}
.raw-wrap--narrow {
  max-width: 78%;
  margin: 0 auto;
}
.raw-title-xl,
.raw-title-lg,
.raw-title-md,
.raw-section-title,
.raw-final-line {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-main);
}
.raw-title-xl {
  font-size: clamp(3rem, 7.3cqw, 6.8rem);
}
.raw-title-lg {
  font-size: clamp(2.4rem, 5.4cqw, 5rem);
}
.raw-title-md {
  font-size: clamp(2rem, 4.1cqw, 3.8rem);
}
.raw-left {
  text-align: left;
}
.raw-sub,
.raw-card-body,
.raw-card-note,
.raw-foot,
.raw-agenda-list,
.raw-list,
.raw-topnote,
.raw-rule-head {
  font-family: 'Noto Sans JP', sans-serif;
}
.raw-sub {
  font-size: clamp(1.1rem, 2.2cqw, 2rem);
  line-height: 1.65;
  color: var(--color-main);
}
.raw-sub-strong {
  font-weight: 700;
}
.raw-topnote {
  font-size: clamp(1rem, 1.8cqw, 1.6rem);
  line-height: 1.5;
  color: var(--color-main);
}
.raw-topnote-strong {
  font-weight: 700;
}
.raw-muted {
  color: var(--color-grey);
}
.raw-accent {
  color: var(--color-accent);
}
.raw-cyan {
  color: var(--color-cyan);
}
.raw-yellow {
  color: var(--color-yellow);
}
.raw-card {
  background: var(--color-white);
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(51, 51, 51, 0.06);
  padding: 2.2cqw 2.4cqw;
}
.raw-card--wide {
  width: min(92%, 1200px);
}
.raw-card--center {
  text-align: center;
}
.raw-card--shallow {
  padding-top: 1.5cqw;
  padding-bottom: 1.5cqw;
}
.raw-card--tall {
  min-height: 18cqw;
}
.raw-card-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 3.6cqw, 3.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-main);
}
.raw-card-body {
  margin-top: 1.2cqw;
  font-size: clamp(1.1rem, 2.1cqw, 1.95rem);
  line-height: 1.7;
  color: var(--color-main);
}
.raw-card-body--flush {
  margin-top: 0;
}
.raw-card-body-sm {
  font-size: clamp(1rem, 1.9cqw, 1.7rem);
}
.raw-card-note {
  margin-top: 1cqw;
  font-size: clamp(0.95rem, 1.7cqw, 1.45rem);
  line-height: 1.55;
  color: var(--color-grey);
}
.raw-card-note-lg {
  font-size: clamp(1rem, 1.9cqw, 1.7rem);
}
.raw-card-headline {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.6rem, 3cqw, 2.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-main);
  margin-bottom: 1.8cqw;
}
.raw-inline-note {
  font-size: 0.55em;
  color: var(--color-main);
}
.raw-grid-2,
.raw-grid-3,
.raw-grid-6 {
  display: grid;
  width: 100%;
}
.raw-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4cqw;
}
.raw-grid-gap-lg {
  gap: 2cqw;
}
.raw-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4cqw;
  width: min(92%, 1240px);
}
.raw-grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2cqw;
}
.raw-col-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.3rem, 2.4cqw, 2rem);
  font-weight: 700;
  margin-bottom: 1cqw;
}
.raw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8cqw;
}
.raw-list--flush,
.raw-list--plain {
  margin: 0;
  padding: 0;
}
.raw-list li {
  position: relative;
  padding-left: 1.1cqw;
  font-size: clamp(1rem, 1.85cqw, 1.6rem);
  line-height: 1.55;
  color: var(--color-main);
}
.raw-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: inherit;
}
.raw-list--plain li {
  padding-left: 0;
}
.raw-list--plain li::before {
  content: none;
}
.raw-agenda-list {
  list-style: decimal;
  width: 100%;
  padding-left: 1.8em;
  display: flex;
  flex-direction: column;
  gap: 0.7cqw;
  font-size: clamp(1.15rem, 2.2cqw, 1.9rem);
  line-height: 1.5;
  color: var(--color-main);
}
.raw-agenda-summary {
  align-self: flex-start;
  margin: -0.15cqw 0 0.25cqw;
  font-size: clamp(0.95rem, 1.65cqw, 1.35rem);
  font-weight: 700;
  color: var(--color-accent);
}
.raw-agenda-list--timed {
  gap: 0.95cqw;
}
.raw-agenda-list--timed li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.4cqw;
  padding-right: 0.2em;
}
.raw-agenda-item-title {
  display: block;
}
.raw-agenda-item-time {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}
.raw-type-card {
  min-height: 18cqw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8cqw;
}
.raw-type-mark {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(2.4rem, 5.4cqw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}
.raw-type-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.6rem, 3.1cqw, 2.8rem);
  font-weight: 700;
}
.raw-section {
  background: var(--color-accent);
  padding: 0 8%;
}
.raw-section-door {
  gap: 0.75cqw;
}
.raw-section-time {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.82rem, 1.45cqw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
}
.raw-section-title {
  font-size: clamp(3rem, 7cqw, 6.6rem);
  color: var(--color-white);
  text-align: center;
}
.raw-section-sub {
  font-size: clamp(1.3rem, 2.4cqw, 2.1rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}
.raw-mini-badges {
  display: flex;
  gap: 0.5cqw;
  margin-bottom: 0.6cqw;
}
.raw-badge {
  width: 2.4cqw;
  height: 2.4cqw;
  min-width: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: clamp(0.9rem, 1.2cqw, 1rem);
  font-weight: 700;
}
.raw-badge.raw-accent {
  background: var(--color-accent);
}
.raw-badge.raw-cyan {
  background: var(--color-cyan);
}
.raw-badge.raw-yellow {
  background: var(--color-yellow);
}
.raw-stack {
  width: min(92%, 1200px);
  display: flex;
  flex-direction: column;
  gap: 1.3cqw;
}
.raw-foot {
  font-size: clamp(0.95rem, 1.6cqw, 1.4rem);
  line-height: 1.55;
  color: var(--color-main);
}
.raw-divider {
  width: min(70%, 760px);
  height: 4px;
  border-radius: 999px;
}
.raw-divider-accent {
  background: linear-gradient(90deg, var(--color-accent), rgba(236, 0, 140, 0.2));
}
.raw-divider-mix {
  background: linear-gradient(90deg, var(--color-accent), var(--color-cyan));
}
.raw-strike {
  color: rgba(51, 51, 51, 0.28);
  text-decoration: line-through;
  text-decoration-thickness: 0.08em;
}
.raw-inputbar {
  width: min(70%, 820px);
  min-height: 4.6cqw;
  background: var(--color-white);
  border: 2px solid rgba(51, 51, 51, 0.18);
  display: flex;
  align-items: center;
  padding: 0 1.2cqw;
  gap: 0.9cqw;
}
.raw-input-accent {
  width: 0.45cqw;
  min-width: 6px;
  height: 60%;
  background: var(--color-accent);
  display: block;
}
.raw-input-placeholder {
  font-size: clamp(1.1rem, 2.2cqw, 1.9rem);
  color: rgba(51, 51, 51, 0.36);
}
.raw-number-mix {
  display: flex;
  align-items: flex-end;
  gap: 1.2cqw;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(4rem, 12.5cqw, 12rem);
}
.raw-plus {
  font-size: 0.65em;
  color: var(--color-main);
  transform: translateY(-0.05em);
}
.raw-rule-head {
  font-size: clamp(0.95rem, 1.7cqw, 1.4rem);
  font-weight: 700;
  color: var(--color-main);
}
.raw-dot {
  width: 0.9cqw;
  height: 0.9cqw;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  margin: 1.2cqw auto 0;
}
.raw-accent-bg {
  background: var(--color-accent);
}
.raw-final-line {
  font-size: clamp(2.8rem, 6.6cqw, 6rem);
  color: var(--color-yellow);
}

/* === Responsive === */
@media (max-width: 600px) {
  .split2-cols, .split3-cols, .leftright-cols { flex-direction: column; }
  .raw-grid-2, .raw-grid-3, .raw-grid-6 { grid-template-columns: 1fr; }
  .raw-wrap, .raw-section { padding: 7% 6%; }
  .slide { padding: 4% 5%; }
  #status-bar {
    top: 16px;
    right: 14px;
    width: min(34vw, 150px);
    gap: 6px;
  }
  .status-track {
    height: 4px;
  }
  #benefits-link {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
}
