@charset "UTF-8";
:root {
  /* === Brand palette (LP制作指示書 v1.0 準拠) === */
  --line-green: #06c755; /* LINE公式グリーン */
  --navy: #1a1a2e; /* ダーク背景 */
  --navy-deep: #11112b;
  --blue: #6fb0e6; /* 補助ブルー */
  --blue-strong: #1a73c8; /* メインカラー */
  --blue-soft: #f0f7ff; /* ライトブルー背景 */
  --blue-pale: #f7fbff;
  --gold: #f5c518; /* アクセントゴールド */
  --gold-deep: #d9ad12;
  --gold-soft: #fff9e6; /* ゴールド系背景 */
  --red: #e53935; /* アクセントレッド */
  --red-soft: #fdecec;
  --orange: #f39a23;
  --green-soft: #e8f5e9; /* グリーン系背景 */
  --cream: #fff8e7;
  --ink: #1f2733; /* 本文ベース */
  --ink-soft: #555f70; /* サブテキスト */
  --muted: #6c7a90;
  --line: #d7e2f0;
  --line-soft: #e7edf6;
  --shadow: 0 26px 60px rgba(16, 40, 73, 0.14);
  --shadow-soft: 0 14px 32px rgba(16, 40, 73, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --main-width: 430px; /* SPモック幅（フレーム/サイドスライダー据え置き） */
  --content-pad: clamp(16px, 5vw, 26px);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(120, 173, 221, 0.28), transparent 28%), radial-gradient(circle at top right, rgba(245, 201, 72, 0.24), transparent 24%), linear-gradient(180deg, #edf5ff 0%, #f8fbff 38%, #eef4fb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.has-mobile-sticky {
  padding-bottom: 92px;
}

body::before,
body::after {
  display: none;
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  left: -10rem;
  background: rgba(120, 173, 221, 0.55);
}

body::after {
  right: -12rem;
  bottom: -8rem;
  background: rgba(245, 201, 72, 0.45);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button {
  font: inherit;
}

.green {
  display: inline-block;
  color: var(--line-green);
  font-weight: bold;
  padding-right: 0.125em;
  font-size: 1.2em;
}

p,
li,
h1,
h2,
h3,
h4,
a,
th,
td,
summary,
span {
  overflow-wrap: break-word;
  word-break: normal;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--main-width);
  margin: 0 auto;
}

.lp {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.section {
  position: relative;
  padding: 30px 22px;
}

.section + .section {
  border-top: 1px solid rgba(215, 226, 240, 0.7);
}

.section--tight {
  padding-block: 22px;
}

/* 吹き出し調キッカー */
.section-kicker {
  position: relative;
  display: inline-block;
  margin: 0 auto 0.85rem;
  padding: 0.42rem 0.95rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 6px 14px rgba(16, 40, 73, 0.12), inset 0 0 0 1.5px var(--blue-strong);
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* 三角しっぽ（外側ボーダー色） */
.section-kicker::before {
  bottom: -8px;
  border: 7px solid transparent;
  border-top-color: var(--blue-strong);
  border-bottom: 0;
}

/* 三角しっぽ（内側白） */
.section-kicker::after {
  bottom: -5px;
  border: 6px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
}

/* 中央寄せ用ラッパ（既存:section-titleの上に置く想定） */
.section .section-kicker {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

/* ダーク背景（problem等）のキッカー */
.problem .section-kicker,
.comparison .section-kicker {
  background: #fff;
  color: var(--blue-strong);
}

.section-title {
  margin: 0;
  font-size: 1.72rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: break-word;
  word-break: normal;
}

.section-subtitle {
  margin: 0.75rem auto 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--muted);
  text-align: center;
  max-width: 22rem;
}

.pill-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #3d4e67, #17253b);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 28px rgba(19, 40, 73, 0.2);
}

.hero h1,
.hero-stat-value,
.price-amount {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
}

.hero {
  padding: 0;
  overflow: hidden;
  background: #071a33;
  color: #fff;
}

.hero.section {
  padding: 0;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto;
  height: 38em;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.32), transparent 28%), linear-gradient(180deg, #2fa6d7 0%, #5ec6dd 48%, #f4e7cc 73%, #cba879 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 44%;
     object-position: 50% 44%;
  filter: saturate(1.18) contrast(1.04) brightness(1.08);
  opacity: 0.82;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 38em;
  background: linear-gradient(180deg, rgba(18, 152, 203, 0.2) 0%, rgba(7, 92, 125, 0.3) 45%, rgba(6, 34, 60, 0.4) 100%), radial-gradient(circle at 50% 58%, rgba(0, 188, 203, 0.2), transparent 46%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 38em;
  padding: 19px 18px 20px;
  text-align: center;
}

.hero-topline {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 0.62rem;
  padding: 0.28rem 0.9rem 0.32rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #223353;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 3px 12px rgba(8, 30, 57, 0.18);
}

.hero-subcopy {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 10px rgba(5, 32, 62, 0.58);
}

.hero-subcopy strong {
  color: var(--gold);
}

.hero h1 {
  position: relative;
  margin: 0.35rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3.12rem, 14.8vw, 4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 4px 0 rgba(8, 50, 85, 0.1), 0 5px 16px rgba(4, 32, 62, 0.56);
  overflow-wrap: break-word;
  word-break: normal;
}

.hero h1 strong {
  display: inline-block;
  color: var(--gold);
}

.hero-flag {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
  padding: 0.34rem 1.15rem 0.4rem;
  background: #fff;
  color: #12233f;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 3px;
  box-shadow: 0 7px 15px rgba(7, 35, 65, 0.18);
  transform: rotate(-5deg);
}

.hero-flag::before,
.hero-flag::after {
  content: "";
  position: absolute;
  top: 0;
  width: 13px;
  height: 100%;
  background: #fff;
}

.hero-flag::before {
  left: -8px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.hero-flag::after {
  right: -8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hero-badges {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin: 0.72rem auto 0;
}

.hero-badges img {
  width: 31.5%;
  max-width: 118px;
  filter: drop-shadow(0 10px 14px rgba(45, 35, 8, 0.28));
}

.hero-badges img:nth-child(2) {
  width: 32%;
  max-width: 122px;
}

.hero-stats-panel {
  position: relative;
  z-index: 2;
  padding: 1rem 12px 1.05rem;
  background: linear-gradient(180deg, #071b38 0%, #061631 100%);
}

.hero-lead {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.34);
}

.hero-lead strong {
  color: var(--gold);
  font-size: 1.22em;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
}

.hero-stat {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 0.84rem 1rem 0.9rem;
  min-width: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.hero-stat-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-inline: auto;
  color: #102846;
}

.hero-stat-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-stat-label {
  display: block;
  color: #14233d;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.12;
}

.hero-stat-body {
  min-width: 0;
  text-align: left;
}

.hero-stat-value {
  margin-top: 0.08rem;
  font-size: 2.38rem;
  font-weight: 900;
  line-height: 0.98;
  color: var(--gold);
  text-shadow: 0 2px 0 rgba(178, 124, 0, 0.1);
}

.hero-stat-value span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.47em;
  margin-left: 0.05em;
}

.hero-stat-value--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5em;
  line-height: 1.16;
}

.hero-stat-note {
  margin-top: 0.24rem;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #14233d;
  font-weight: 900;
}

.cta-pair {
  display: none;
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.fv-inline-cta {
  display: block;
  padding-block: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.fv-inline-cta__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 2px;
}

.fv-inline-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.72rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 14px 26px rgba(16, 40, 73, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fv-inline-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(16, 40, 73, 0.18);
}

.fv-inline-cta__button--guide {
  background: linear-gradient(180deg, #f9bc24, #eea311);
}

.fv-inline-cta__button--trial {
  background: linear-gradient(180deg, #f86969, #ef3030);
}

.cta-pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 0.4rem;
  padding: 1.4rem 0.95rem 0.95rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(24, 56, 101, 0.08);
}

.cta-card--guide {
  border: 2px solid var(--gold);
}

.cta-card--consult {
  border: 2px solid var(--red);
}

.cta-card-tag {
  position: absolute;
  top: -10px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.65rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  box-shadow: 0 6px 12px rgba(16, 40, 73, 0.18);
}

.cta-card--guide .cta-card-tag {
  background: var(--gold);
  color: var(--navy);
}

.cta-card--consult .cta-card-tag {
  background: var(--red);
}

.cta-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.32;
  font-weight: 900;
  color: var(--ink);
}

.cta-card p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.cta-card--guide .cta-button {
  background: linear-gradient(180deg, #f9bc24, #eea311);
}

.cta-card--consult .cta-button {
  background: linear-gradient(180deg, #f86969, #ef5151);
}

.problem {
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 32%), linear-gradient(180deg, #182033 0%, #101728 100%);
  color: #fff;
}

.problem .section-title {
  color: #fff;
}

.problem-grid {
  display: grid;
  gap: 12px;
  margin-top: 1.3rem;
}

.problem-card {
  position: relative;
  padding: 0.85rem 0.85rem 0.85rem 2.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.problem-card::before {
  content: "×";
  position: absolute;
  top: 1rem;
  left: 0.25rem;
  color: var(--red);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.problem-card__body {
  min-width: 0;
  display: grid;
  gap: 0.4rem;
}

.problem-card__body * {
  position: relative;
  z-index: 1;
}

.problem-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 700;
  color: #fff;
}

.problem-card__note {
  display: block;
  font-size: 0.7rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.problem-card__icon {
  display: block;
  width: auto;
  height: 100%;
  border-radius: 12px;
  justify-self: end;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}

.problem-card__icon.is-1st {
  bottom: -28%;
}

.problem-card em {
  color: var(--gold);
  font-style: normal;
}

.problem-box {
  margin-top: 1rem;
  padding: 1rem 1rem 1.15rem;
  border-radius: 20px;
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 2px rgba(120, 173, 221, 0.75);
  background: rgba(22, 31, 51, 0.78);
  text-align: center;
}

.problem-box p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 700;
}

.problem-box strong {
  color: var(--gold);
  font-size: 1.2em;
}

.problem-arrow {
  display: flex;
  justify-content: center;
  margin-top: 0.65rem;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.reasons {
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.reasons::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 1.4rem;
}

.reason-card,
.reason-wide {
  padding: 0.85rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(16, 40, 73, 0.08);
  position: relative;
}

.reason-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.reason-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.reason-no {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 0.85;
  color: var(--blue);
  letter-spacing: -0.0125em;
}

.reason-icon {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, #edf6ff, #dbefff);
}

.reason-icon.of-last {
  position: absolute;
  right: 2em;
  bottom: -1em;
  width: auto;
  height: 10em;
  background: transparent;
}

.reason-en {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  position: absolute;
  top: 0.1rem;
  right: 1rem;
  font-size: 2.4em;
  opacity: 0.7;
  text-shadow: 0.125em 0.125em 0.25em #000;
}

.reason-card h3,
.reason-wide h3 {
  margin: 0.18rem 0 0;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 900;
}

.reason-card h3 strong,
.reason-wide h3 strong {
  color: var(--blue-strong);
}

.reason-card p:not(.reason-en),
.reason-wide p:not(.reason-en) {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.reason-photo {
  border-radius: 18px;
  aspect-ratio: 1.18;
  overflow: hidden;
  position: relative;
}

.reason-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.8rem;
}

.price-chip-stack {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  width: 15em;
}

.price-chip {
  padding: 0.42rem 0.58rem;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  background: #f3f6fb;
  color: #516177;
}

.price-chip--primary {
  background: linear-gradient(180deg, #ffe37d, #f6c73f);
  color: var(--navy);
}

.reason-wide .price-chip--primary strong {
  color: var(--red);
  font-size: 1.18rem;
}

.price-chip-stack {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.price-chip {
  padding: 0.42rem 0.58rem;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  background: #f3f6fb;
  color: #516177;
}

.price-chip--primary {
  background: linear-gradient(180deg, #ffe37d, #f6c73f);
  color: #23334d;
}

.comparison {
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.36), transparent 40%), linear-gradient(180deg, #5db7f0 0%, #8fd1ff 100%);
}

.comparison .section-title,
.comparison .section-subtitle {
  color: #fff;
}

.comparison-board {
  position: relative;
  margin-top: 1.35rem;
  padding: 0.82rem 0.7rem 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 44px rgba(16, 40, 73, 0.12);
  backdrop-filter: blur(8px);
}

.comparison-scroll {
  overflow-x: auto;
  padding-bottom: 0.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(19, 40, 73, 0.38) rgba(255, 255, 255, 0.28);
  scrollbar-width: thin;
}

.comparison-scroll::-webkit-scrollbar {
  height: 10px;
}

.comparison-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.comparison-scroll::-webkit-scrollbar-thumb {
  background: rgba(19, 40, 73, 0.38);
  border-radius: 999px;
}

.comparison-scroll table {
  width: 600px;
  min-width: 600px;
  table-layout: fixed;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  overflow: hidden;
  color: var(--ink);
}

.comparison-scroll th,
.comparison-scroll td {
  padding: 0.62rem 0.48rem;
  border: 1px solid #dfe7f1;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.comparison-scroll th:first-child,
.comparison-scroll td:first-child {
  width: 10em;
  min-width: 10em;
  font-weight: 900;
  background: #fff;
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 6px 0 12px rgba(33, 75, 126, 0.08);
}

.comparison-scroll thead th:nth-child(2) {
  width: 166px;
  background: linear-gradient(180deg, #ffd858, #f5c53f);
  color: var(--ink);
}

.comparison-scroll thead th:nth-child(3),
.comparison-scroll thead th:nth-child(4) {
  width: 161px;
  background: #7d8898;
  color: #fff;
}

.circle {
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
}

.triangle {
  color: #8b94a4;
  font-size: 0.95rem;
  font-weight: 900;
}

.cross {
  color: #8b94a4;
  font-size: 0.95rem;
  font-weight: 900;
}

.comparison-character {
  position: absolute;
  right: 0.7rem;
  bottom: 0.8rem;
  width: 54px;
  opacity: 0.88;
  pointer-events: none;
}

.comparison-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #37628e;
  font-size: 0.72rem;
  font-weight: 900;
  max-width: calc(100% - 62px);
}

.learning {
  background: linear-gradient(180deg, #f7fbff 0%, #eff7ff 100%);
}

.learning-grid,
.expert-grid,
.ceo-grid {
  display: grid;
  gap: 16px;
  margin-top: 1.35rem;
}

.learning-panel,
.expert-quote,
.ceo-copy {
  padding: 1rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(16, 40, 73, 0.08);
}

.learning-pyramid {
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #f5fbff, #eaf4ff);
  border: 1px solid #dbeaf8;
}

.learning-pyramid img {
  border-radius: 18px;
}

.expert-mini {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.expert-mini img {
  width: 84px;
  aspect-ratio: 1;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 14px 28px rgba(16, 40, 73, 0.12);
}

.expert-mini h3,
.expert-quote h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.35;
}

.expert-mini p,
.expert-quote p,
.ceo-copy p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* === 引用符スタイル（learning-panel / expert-quote 共通） === */
.learning-panel blockquote,
.expert-quote blockquote {
  position: relative;
  margin: 0.95rem 0 0;
  padding: 1.2rem 1.05rem 1.2rem 1.6rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f1f7fd 0%, #e6f0fa 100%);
  border-left: 3px solid var(--blue-strong);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 700;
}

.learning-panel blockquote::before,
.expert-quote blockquote::before,
.learning-panel blockquote::after,
.expert-quote blockquote::after {
  position: absolute;
  font-family: "Georgia", "Times New Roman", "Hiragino Mincho ProN", serif;
  font-weight: 900;
  font-style: italic;
  color: var(--blue-strong);
  opacity: 0.32;
  line-height: 1;
  pointer-events: none;
}

/* 開き引用符（左上） */
.learning-panel blockquote::before,
.expert-quote blockquote::before {
  content: "“";
  top: -8px;
  left: 6px;
  font-size: 3.2rem;
}

/* 閉じ引用符（右下） */
.learning-panel blockquote::after,
.expert-quote blockquote::after {
  content: "”";
  bottom: -34px;
  right: 8px;
  font-size: 3.2rem;
}

/* expert-quote はトップに教授情報があるので余白を少し詰める */
.expert-quote blockquote {
  margin-top: 0.85rem;
  border-top: 0;
}

.learning-highlights {
  display: grid;
  gap: 10px;
  margin-top: 1rem;
}

.learning-highlight {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 0.9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffef2, #fff7d6);
  border: 1px solid rgba(245, 201, 72, 0.75);
  font-size: 0.85rem;
  line-height: 1.55;
  font-weight: 800;
}

.learning-highlight .check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eaf4ff;
  color: var(--blue-strong);
  font-size: 0.95rem;
  font-weight: 900;
}

.expert {
  background: linear-gradient(135deg, rgba(245, 201, 72, 0.18) 0 15%, transparent 15% 84%, rgba(120, 173, 221, 0.18) 84% 100%), linear-gradient(180deg, #fff 0%, #fafcff 100%);
}

.expert-photo {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #cbe1f8, #edf6ff);
  padding: 0.8rem;
}

.expert-photo img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.stamp-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 78px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.simulation {
  background: radial-gradient(circle at 0% 0%, rgba(120, 173, 221, 0.28), transparent 30%), radial-gradient(circle at 100% 100%, rgba(120, 173, 221, 0.22), transparent 28%), linear-gradient(180deg, #eef8ff 0%, #e5f2ff 100%);
}

.simulation-header {
  display: flex;
  justify-content: center;
}

.simulation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 1.4rem;
}

/* === 期間別シミュレーション カード === */
.sim-card {
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(33, 86, 145, 0.1);
  overflow: hidden;
}

.sim-card__head {
  padding: 0.55rem 1rem;
  background: linear-gradient(180deg, #6aa6d4 0%, #4c90cd 100%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.sim-card__body {
  position: relative;
  gap: 6px;
  padding: 0.95rem 0.85rem 1rem;
}

.sim-card--right .sim-card__body {
  grid-template-columns: 1fr 60px;
}

.sim-card__char {
  display: block;
  position: absolute;
  width: auto;
  height: 9rem;
  right: 1em;
  bottom: 0;
}

.sim-card--right .sim-card__char {
  right: unset;
  left: 1em;
}

.sim-card__main {
  text-align: center;
  width: 19em;
  margin: auto;
}

/* キャッチ：両端の斜めスラッシュは ::before/::after で */
.sim-card__catch {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0.95rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}

.sim-card__catch::before,
.sim-card__catch::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 1.05em;
  background: #1f2733;
  border-radius: 1px;
}

.sim-card__catch::before {
  left: 0;
  transform: translateY(-50%) rotate(-22deg);
}

.sim-card__catch::after {
  right: 0;
  transform: translateY(-50%) rotate(22deg);
}

/* 価格行 */
.sim-card__price {
  margin: 0.4rem 0 0;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
  color: #1f2733;
  white-space: nowrap;
}

.sim-card__amount {
  position: relative;
  display: inline-block;
  padding: 0 0.18em;
  color: var(--red);
  font-size: 1.55em;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sim-card__amount::before {
  content: "";
  position: absolute;
  inset: auto 0 0.04em 0;
  height: 0.42em;
  background: var(--gold);
  z-index: -1;
  border-radius: 2px;
}

.sim-card__from {
  margin-left: 0.1em;
  font-size: 1em;
  color: #1f2733;
}

/* 下部の吹き出し */
.sim-card__bubble {
  position: relative;
  margin: 0.85rem auto 0;
  padding: 0.5rem 0.8rem;
  max-width: 100%;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid var(--blue);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.sim-card__bubble::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.sim-card__bubble::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.courses {
  background: linear-gradient(180deg, #2582c8 0%, #4ca7e4 12%, #fff 12%, #fff 100%);
}

.courses .section-title {
  color: #fff;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 1.25rem;
}

.course-card {
  padding: 0.95rem;
  border: 5px solid transparent;
  border-radius: 26px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #fff4bd 0%, var(--gold) 45%, #b88708 100%) border-box;
  box-shadow: 0 20px 36px rgba(13, 52, 90, 0.12);
}

.course-card--primary {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #fff4bd 0%, var(--gold) 45%, #b88708 100%) border-box;
}

.course-card--secondary {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #ffffff 0%, #c9d0dc 45%, #8993a3 100%) border-box;
}

.course-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
}

.course-card h3 {
  margin: 0.18rem 0 0;
  font-size: 1.15rem;
  line-height: 1.36;
  font-weight: 900;
  text-align: center;
}

.course-recommend {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  background: #f4f5ee;
}

.course-recommend strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  text-align: center;
}

.course-recommend ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.74rem;
  line-height: 1.65;
  color: #4f5f75;
}

.circle-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0.9rem;
}

.circle-item {
  width: calc(50% - 6px);
  text-align: center;
}

.circle-item--small {
  width: calc(33.333% - 7px);
}

.circle-item--small .circle-frame {
  border-color: var(--blue);
}

.circle-frame {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid #f4c93c;
  overflow: hidden;
  background: #eef4fb;
}

.course-card--secondary .circle-frame {
  border-color: #f4c93c;
}

.circle-frame img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.circle-item p {
  margin: 0.4rem 0 0;
  font-size: 0.68rem;
  line-height: 1.42;
  font-weight: 800;
}

.course-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-deep);
  line-height: 1;
  width: 100%;
}

.course-note {
  margin-top: 0.95rem;
  padding: 0.8rem;
  border-radius: 16px;
  background: #f6f8fb;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}

.mid-cta {
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
}

.curriculum {
  background: #fff;
}

.curriculum-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 1.25rem;
}

.step-card {
  position: relative;
  padding: 0.8rem;
  border-radius: 20px;
  border: 2px solid #f1c944;
  background: #fff;
  box-shadow: 0 14px 28px rgba(16, 40, 73, 0.06);
}

.step-card:nth-child(2) {
  border-color: #9dc6ea;
}

.step-card:nth-child(3) {
  border-color: #f1c944;
}

.step-label {
  display: inline-flex;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #89b9e3, #669bcd);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.step-card h3 {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
  display: inline-block;
}

.step-sub {
  margin: 0.12rem 0 0.62rem;
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  text-align: right;
  position: absolute;
  top: 3rem;
  right: 1.5rem;
  z-index: 1;
  opacity: 0.5;
  text-transform: capitalize;
  text-shadow: 0.125em 0.125em 0.125em #000;
}

.step-photo {
  border-radius: 16px;
  aspect-ratio: 1.1;
  overflow: hidden;
  margin-top: 0.75rem;
  position: relative;
  z-index: 0;
}

.step-photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step-check {
  margin-top: 0.62rem;
  font-size: 0.74rem;
  line-height: 1.55;
  font-weight: 800;
  color: #47556b;
}

.gallery-shell {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #f5fbff, #edf4fb);
}

.gallery-shell h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 900;
}

/* === FW フォトギャラリー：オートプレイ・スライダー === */
.fw-slider {
  position: relative;
}

.fw-slider__viewport {
  overflow: hidden;
  border-radius: 18px;
  background: #dce9f7;
  box-shadow: 0 14px 26px rgba(16, 40, 73, 0.1);
}

.fw-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.fw-slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #dce9f7;
}

.fw-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0.7rem;
}

.fw-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(26, 115, 200, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fw-slider__dot.is-active {
  background: var(--blue-strong);
  transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
  .fw-slider__track {
    transition: none;
  }
  .schedule-slider__track {
    transition: none;
  }
}
.schedule {
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
}

.schedule-board {
  margin-top: 1.25rem;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d7e5f4;
  box-shadow: 0 20px 38px rgba(16, 40, 73, 0.08);
}

.schedule-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(90deg, #2f79bf, #66a7dc);
  color: #fff;
}

.schedule-ribbon strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.schedule-ribbon span {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.86;
}

.schedule-slider {
  position: relative;
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.schedule-slider__viewport {
  overflow: hidden;
}

.schedule-slider__track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.schedule-scroll__date {
  flex: 0 0 100%;
  padding: 1rem 1rem 3.95rem;
}

.schedule-scroll__date .date-label {
  text-align: center;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 1.85rem;
  font-weight: bold;
  line-height: 1;
  color: var(--blue-strong);
  margin: 0;
  letter-spacing: 0;
}

.schedule-day-sub {
  display: block;
  margin-top: 0.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.schedule-day-card {
  margin-top: 0.75rem;
  overflow: hidden;
  border: 1px solid #d8e6f5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(16, 40, 73, 0.08);
}

.schedule-morning {
  display: grid;
  grid-template-columns: 94px 1fr;
  min-height: 174px;
  background: linear-gradient(180deg, #f7c94b, #efbd38);
}

.schedule-time-list {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.72);
}

.schedule-time-list span {
  display: grid;
  place-items: center;
  padding: 0.35rem 0.28rem;
  border-bottom: 1px solid rgba(47, 121, 191, 0.16);
  color: #2f3e53;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
}

.schedule-time-list span:last-child {
  border-bottom: 0;
}

.schedule-morning-main {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.55rem;
  padding: 0.9rem;
  text-align: center;
}

.schedule-morning-main img {
  width: 100%;
  max-width: 146px;
  aspect-ratio: 1.75;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 18px rgba(84, 61, 13, 0.16);
}

.schedule-morning-main strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

.schedule-lunch {
  display: grid;
  grid-template-columns: 94px 1fr;
  border-top: 1px solid #d8e6f5;
  border-bottom: 1px solid #d8e6f5;
  background: #eaf5ff;
  color: #335d86;
  font-size: 0.75rem;
  font-weight: 900;
}

.schedule-lunch span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-right: 1px solid #d8e6f5;
}

.schedule-lunch strong {
  display: grid;
  place-items: center;
  min-height: 36px;
}

.schedule-afternoon {
  display: grid;
  grid-template-columns: 94px 1fr;
  min-height: 132px;
}

.schedule-afternoon__time {
  display: grid;
  place-items: center;
  padding: 0.7rem 0.35rem;
  border-right: 1px solid #d8e6f5;
  background: #f8fbff;
  color: #44546b;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.schedule-events {
  display: grid;
  align-content: center;
  gap: 0.56rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(120, 173, 221, 0.13), rgba(120, 173, 221, 0.04));
  height: 13rem;
}

.schedule-event {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.55rem;
  min-height: 36px;
  padding: 0.52rem 0.62rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(120, 173, 221, 0.28);
  color: #263650;
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 8px 16px rgba(16, 40, 73, 0.05);
}

.schedule-event small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.schedule-event__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #78addd, #4c90cd);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.schedule-event--field {
  grid-template-columns: 58px 1fr;
  display: block;
}

.schedule-event--field img {
  width: 6rem;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.schedule-slider__nav {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.schedule-slider__status {
  min-width: 42px;
  color: #516177;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.schedule-slider__button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.schedule-slider__button:hover {
  background: rgba(19, 40, 73, 0.78);
  transform: translateY(-1px);
}

.schedule-note {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--muted);
  background: #fff;
}

.activities {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  background: var(--blue);
}

.activity-header {
  display: flex;
  justify-content: center;
}

.activity-list {
  display: grid;
  gap: 12px;
  margin-top: 1.2rem;
}

.activity-row {
  display: grid;
  gap: 12px;
  padding: 0.95rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(16, 40, 73, 0.08);
}

.activity-copy {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.activity-tag {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #90bde7, #68a2d5);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.activity-copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #44546a;
  font-weight: 700;
}

.activity-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.activity-photos figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
}

.activity-photos img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* === Polaroid 無限横スライド === */
.activity-polaroids {
  position: relative;
  margin-top: 1.1rem;
  padding: 0.9rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.activity-polaroids__track {
  display: inline-flex;
  gap: 14px;
  padding-inline: 7px;
  animation: polaroidsMarquee 36s linear infinite;
  will-change: transform;
}

.activity-polaroids__track:hover {
  animation-play-state: paused;
}

.activity-polaroids img {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 6px solid #fff;
  box-shadow: 0 12px 22px rgba(16, 40, 73, 0.18);
}

.activity-polaroids img:nth-child(odd) {
  transform: rotate(-3.5deg);
}

.activity-polaroids img:nth-child(even) {
  transform: rotate(3deg) translateY(4px);
}

.activity-polaroids img:nth-child(3n) {
  transform: rotate(-2deg) translateY(-3px);
}

@keyframes polaroidsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .activity-polaroids__track {
    animation: none;
  }
}
.video {
  background: #fff;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  margin: 1.45rem auto 0;
  overflow: hidden;
  border-radius: 18px;
  background: #0b1220;
  box-shadow: 0 18px 36px rgba(16, 40, 73, 0.18);
}

.video-frame__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.voices {
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
}

.voice-list {
  display: grid;
  gap: 18px;
}

.voice-card {
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 40px rgba(16, 40, 73, 0.08);
  border: 1px solid #e4ecf6;
}

.voice-header {
  padding: 0.95rem 1rem;
  background: #cfe4fa;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.voice-body {
  display: grid;
  gap: 14px;
  padding: 1rem;
}

.voice-sub-photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #edf4fb;
}

.voice-sub-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-copy {
  padding: 1.1rem 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #edf6ff, #e2effe);
}

.voice-copy__head {
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin-bottom: 0.7rem;
}

.voice-avatar {
  display: block;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 16px rgba(16, 40, 73, 0.18);
  background: #cfe1f5;
  position: relative;
  overflow: hidden;
}

.voice-avatar img {
  display: block;
  width: auto;
  height: 130%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.voice-copy h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 900;
  text-align: left;
  color: var(--ink);
}

.voice-copy p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #34465d;
  font-weight: 700;
}

.pricing {
  background: #fff;
}

.price-card-shell {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #f2f8ff, #ffffff);
  box-shadow: 0 22px 42px rgba(16, 40, 73, 0.08);
}

.tab-row {
  display: flex;
  gap: 8px;
}

.tab-button {
  position: relative;
  flex: 1 1 0;
  min-height: 42px;
  border: 0;
  border-radius: 12px 12px 0 0;
  background: #95989f;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.is-active {
  background: linear-gradient(180deg, #ffd858, #f6ca3f);
  color: #223353;
}

.tab-badge {
  position: absolute;
  top: -0.42rem;
  right: 0.55rem;
  padding: 0.14rem 0.4rem;
  border-radius: 999px;
  background: #ef5757;
  color: #fff;
  font-size: 0.58rem;
  line-height: 1.2;
}

.price-panel {
  display: none;
  padding: 1rem 0.95rem;
  border-radius: 0 16px 16px 16px;
  background: #fff;
  border: 1px solid #dbe6f2;
  border-top: 0;
}

.price-panel.is-active {
  display: block;
}

.price-head {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #dce7f4;
  background: linear-gradient(180deg, #ffffff, #fdfefe);
  box-shadow: 0 12px 24px rgba(16, 40, 73, 0.06);
  text-align: center;
}

.price-head p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
}

.price-plan-tag {
  display: inline-flex;
  margin-top: 0.42rem;
  padding: 0.14rem 0.54rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
}

.price-amount {
  margin-top: 0.4rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 0.95;
  color: #ef5c5c;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 1rem;
}

.service-grid div {
  padding: 0.78rem 0.6rem;
  border-radius: 14px;
  border: 1px solid #dbe6f2;
  background: #fff;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.45;
  font-weight: 800;
}

.price-breakdown {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff8df, #fff2b6);
}

.price-breakdown h4 {
  margin: 0 0 0.6rem;
  font-size: 0.94rem;
  font-weight: 900;
  text-align: center;
}

.price-breakdown dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 0.75rem;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 700;
}

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

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(19, 40, 73, 0.16);
  font-weight: 900;
}

.price-total strong {
  font-size: 1.45rem;
  color: #24324b;
}

.price-footnote {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  color: var(--muted);
}

.price-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 1rem;
}

.step-cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.25;
}

.step-cta small {
  display: block;
  font-size: 0.56rem;
  opacity: 0.88;
}

.step-cta--orange {
  background: linear-gradient(180deg, #f3a021, #ee8115);
}

.step-cta--red {
  background: linear-gradient(180deg, #f26969, #ef4d4d);
}

.dormitory {
  background: linear-gradient(180deg, #fffdf6 0%, #fff8e8 100%);
}

.dorm-grid {
  display: grid;
  gap: 16px;
  margin-top: 1.3rem;
}

.dorm-left {
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #6f9fd5, #7ab0e8);
  color: #fff;
}

.dorm-left h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 900;
}

.dorm-left p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.9;
}

.dorm-room {
  margin-top: 1rem;
}

.dorm-room strong {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.4;
}

.dorm-room img {
  border-radius: 18px;
  aspect-ratio: 1.4;
  -o-object-fit: cover;
     object-fit: cover;
}

.dorm-right {
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(16, 40, 73, 0.08);
}

.dorm-checklist {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dorm-checklist li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.83rem;
  line-height: 1.7;
  font-weight: 700;
  color: #46566b;
}

.dorm-checklist li::before {
  content: "◎";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 1rem;
}

.facility-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eef3f8;
}

.facility-grid img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.environment {
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(26, 115, 200, 0.1), transparent 34%), linear-gradient(180deg, #f8fcff 0%, #eef6fd 100%);
}

.environment .section-title {
  font-size: 2rem;
  text-shadow: 0 2px 0 rgba(26, 47, 72, 0.12);
}

.env-shell {
  width: 100%;
  margin: 1.35rem auto 0;
}

.env-tab-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 1.1rem;
  overflow: hidden;
  border-radius: 15px;
  background: #e9edf3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 18px rgba(16, 40, 73, 0.08);
}

.env-tab {
  min-height: 42px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #f2f4f8, #dde2ea);
  color: #9aa2ad;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.env-tab:last-child {
  border-right: 0;
}

.env-tab.is-active {
  background: linear-gradient(90deg, #f6d515 0%, #9ed28e 48%, #2f9deb 100%);
  color: #fff;
  text-shadow: 0 1px 4px rgba(20, 50, 86, 0.28);
  box-shadow: 0 10px 20px rgba(47, 157, 235, 0.24);
}

.env-card-list {
  display: grid;
  gap: 1.18rem;
}

.env-card {
  position: relative;
  display: grid;
  gap: 0.62rem;
  width: 100%;
  padding: 1.18rem 1rem 1.08rem 1.42rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(215, 226, 240, 0.8);
  box-shadow: 0 14px 26px rgba(16, 40, 73, 0.14);
  overflow: hidden;
}

.env-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(180deg, #3aabf5, #1a73c8);
}

.env-card--room::before {
  background: linear-gradient(180deg, #f6d515, #ffd236);
}

.env-card--area::before {
  background: linear-gradient(180deg, #2f9deb 0%, #8fd58f 52%, #f6d515 100%);
}

.env-card.is-highlighted {
  animation: env-card-highlight 0.9s ease both;
}

@keyframes env-card-highlight {
  0% {
    box-shadow: 0 14px 26px rgba(16, 40, 73, 0.14), 0 0 0 0 rgba(26, 115, 200, 0.42);
    transform: translateY(0);
  }
  38% {
    box-shadow: 0 18px 34px rgba(16, 40, 73, 0.18), 0 0 0 6px rgba(26, 115, 200, 0.18);
    transform: translateY(-2px);
  }
  100% {
    box-shadow: 0 14px 26px rgba(16, 40, 73, 0.14), 0 0 0 0 rgba(26, 115, 200, 0);
    transform: translateY(0);
  }
}
.env-card h3 {
  margin: 0;
  color: #10233f;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.env-card__body {
  position: relative;
}

.env-card--campus .env-card__body,
.env-card--area .env-card__body {
  padding-right: 5.65rem;
}

.env-card--room .env-card__body {
  grid-template-columns: 1fr;
}

.env-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.env-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 0.48rem;
  color: #111b2c;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.45;
}

.env-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.env-list img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}

.env-list small {
  font-size: 0.86em;
}

.env-visual {
  width: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -1.5rem;
  right: 0;
}

.env-card--campus .env-visual {
  top: unset;
  bottom: 0;
  border-radius: 0.5rem;
}

.env-footer {
  margin-top: 0.9rem;
  color: #3b587a;
  font-size: 0.66rem;
  font-weight: 800;
  text-align: center;
  opacity: 0.78;
}

@media (max-width: 420px) {
  .environment .section-title {
    font-size: 1.86rem;
  }
  .env-shell {
    margin-top: 1.18rem;
  }
  .env-tab {
    min-height: 40px;
    font-size: 0.78rem;
  }
  .env-card-list {
    gap: 1rem;
  }
  .env-card {
    gap: 0.54rem;
    padding: 1rem 0.82rem 0.95rem 1.16rem;
    border-radius: 16px;
  }
  .env-card::before {
    width: 8px;
  }
  .env-card h3 {
    font-size: 1.06rem;
  }
  .env-card--campus .env-card__body,
  .env-card--area .env-card__body {
    padding-right: 4.55rem;
  }
  .env-list {
    gap: 0.48rem;
  }
  .env-list li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 0.38rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }
  .env-list img {
    width: 23px;
    height: 23px;
  }
  .env-visual {
    top: 50%;
    right: 0;
    width: 3.85rem;
    transform: translateY(-50%);
  }
  .env-card--campus .env-visual {
    top: 50%;
    bottom: auto;
    width: 4.1rem;
  }
}
@media (max-width: 389px) {
  .env-card {
    padding-right: 0.72rem;
    padding-left: 1.06rem;
  }
  .env-card h3 {
    font-size: 1rem;
  }
  .env-list li {
    font-size: 0.78rem;
  }
  .env-card--campus .env-card__body,
  .env-card--area .env-card__body {
    padding-right: 4.05rem;
  }
  .env-visual {
    width: 3.45rem;
  }
  .env-card--campus .env-visual {
    width: 3.6rem;
  }
}
.ceo {
  background: radial-gradient(circle at 0% 100%, rgba(245, 201, 72, 0.35), transparent 28%), radial-gradient(circle at 100% 0%, rgba(120, 173, 221, 0.28), transparent 24%), linear-gradient(180deg, #fffef7 0%, #fff 100%);
}

.ceo-photo {
  position: relative;
  margin: 0 auto;
  width: min(76%, 264px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(180deg, #f5d56b, #7eaedf);
  box-shadow: 0 22px 42px rgba(16, 40, 73, 0.14);
}

.ceo-photo img {
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ceo-copy {
  background: rgba(255, 255, 255, 0.84);
}

.ceo-copy .section-title,
.ceo-copy .section-subtitle {
  text-align: left;
}

.ceo-copy .section-subtitle {
  margin-inline: 0;
}

.signature {
  margin-top: 0.6rem;
  font-family: "Sacramento", "Brush Script MT", cursive;
  font-size: 3.4rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: right;
  color: #2c4a72;
  transform: rotate(-4deg);
  transform-origin: right center;
}

.faq {
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
}

.faq-shell {
  max-width: 360px;
  margin: 1.15rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d4e2f0;
  box-shadow: 0 20px 38px rgba(16, 40, 73, 0.08);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #5e97cd, #3d7cb7);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-header span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #23324b;
}

.faq-item {
  background: #fff;
  border-top: 1px solid #d4e2f0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 900;
  color: #33608e;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background: #f6fbff;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #47586f;
  font-weight: 700;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  margin-top: 1.3rem;
}

.process-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  justify-items: center;
  row-gap: 0.5rem;
  padding: 1.45rem 0.9rem 1rem;
  border-radius: 18px;
  border: 1.5px solid var(--blue-strong);
  background: #fff;
  box-shadow: 0 14px 26px rgba(16, 40, 73, 0.08);
}

.process-step {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2c8dd9, var(--blue-strong));
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(26, 115, 200, 0.32);
}

.process-icon {
  width: 64px;
  height: 64px;
  margin: 0;
}

.process-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  color: var(--ink);
}

.process-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 700;
  text-align: center;
}

.final-cta {
  background: radial-gradient(circle at 18% -10%, rgba(245, 197, 24, 0.18), transparent 55%), radial-gradient(circle at 90% 100%, rgba(6, 199, 85, 0.1), transparent 60%), linear-gradient(180deg, #fff 0%, #f7fff9 100%);
}

.final-cta .section-title {
  position: relative;
  display: inline-block;
  margin: 0 auto 0.5rem;
  font-size: 1.45rem;
  line-height: 1.4;
}

.final-cta .section-title .final-cta-mark {
  position: relative;
  display: inline-block;
  padding: 0 0.18em;
  color: var(--ink);
}

.final-cta .section-title .final-cta-mark::before {
  content: "";
  position: absolute;
  inset: auto 0 0.05em;
  height: 0.45em;
  background: var(--gold);
  z-index: -1;
  border-radius: 4px;
}

.final-kicker {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.4rem;
  padding: 0 1.1rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.final-kicker::before,
.final-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 1.2em;
  background: var(--ink);
  transform: translateY(-50%) rotate(-18deg);
}

.final-kicker::before {
  left: 0;
  transform: translateY(-50%) rotate(-18deg);
}

.final-kicker::after {
  right: 0;
  transform: translateY(-50%) rotate(18deg);
}

.final-cta .section-title {
  text-align: center;
}

.final-cta > .section-title {
  display: block;
}

/* スマホイラスト + 吹き出し */
.final-phone {
  position: relative;
  margin: 1rem auto 0;
  padding: 1rem 0.6rem 0.6rem;
  background: linear-gradient(180deg, #f3f7fc 0%, #ebf3fb 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  align-items: center;
  gap: 10px;
}

.final-phone__device {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 22px rgba(16, 40, 73, 0.18));
}

.final-phone__bubbles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.final-phone__bubbles li {
  position: relative;
  padding: 0.45rem 0.7rem;
  background: var(--line-green);
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 8px 16px rgba(6, 199, 85, 0.22);
  line-height: 1.35;
}

.final-phone__bubbles li:nth-child(2n) {
  justify-self: end;
  background: #07b34c;
}

/* イエローバナー */
.final-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(180deg, #fce98c 0%, var(--gold) 100%);
  border-radius: 14px;
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(217, 173, 18, 0.22);
}

.final-banner__icon {
  font-size: 3.5rem;
  line-height: 1;
}

.final-banner p {
  font-size: 1rem;
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.final-banner p strong {
  display: inline-block;
  color: var(--blue-strong);
  font-size: 1.2em;
}

.final-banner p strong.txt-shadow {
  display: inline-block;
  color: var(--blue-strong);
  text-shadow: 0 0 0.25em #fff, 0 0 0.25em #fff, 0 0 0.25em #fff, 0 0 0.25em #fff, 0 0 0.25em #fff, 0 0 0.25em #fff, 0 0 0.25em #fff;
  font-size: 1.2em;
}

.final-banner p strong.txt-shadow .large {
  font-size: 1.3em;
}

.final-banner p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

/* 6大特典カード */
.benefit-card {
  position: relative;
  margin-top: 2.4rem;
  padding: 1.6rem 0.9rem 1rem;
  background: #fff;
  border: 2px solid var(--blue-strong);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(26, 115, 200, 0.12);
}

.benefit-card__crown {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.3rem 0.7rem;
  background: linear-gradient(180deg, #ffd955 0%, var(--gold) 100%);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(217, 173, 18, 0.3);
  text-align: center;
  color: var(--navy);
  line-height: 1.05;
}

.benefit-card__crown span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.benefit-card__crown strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.benefit-grid li {
  position: relative;
  padding: 0.95rem 0.5rem 0.6rem;
  background: var(--blue-soft);
  border-radius: 14px;
  text-align: center;
}

.benefit-no {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.1rem 0.5rem;
  background: var(--blue-strong);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.benefit-icon {
  display: block;
  margin: 0 auto 0.3rem;
  font-size: 1.35rem;
  line-height: 1;
}

.benefit-grid p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.benefit-grid small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--muted);
}

/* LINEメインボタン */
.line-main-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 56px;
  margin-top: 1.2rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #15d05f, var(--line-green));
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 32px rgba(6, 199, 85, 0.3);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.line-main-button__icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #fff;
  color: var(--line-green);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
}

.footer {
  padding: 1rem 1.2rem 1.3rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  line-height: 1.7;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.desktop-side {
  display: none;
}

.desktop-side__slider,
.desktop-side__slide {
  position: absolute;
  inset: 0;
}

.desktop-side__slide {
  opacity: 0;
  animation: desktop-side-fade 60s infinite;
}

.desktop-side__slide:nth-child(2) {
  animation-delay: 6s;
}

.desktop-side__slide:nth-child(3) {
  animation-delay: 12s;
}

.desktop-side__slide:nth-child(4) {
  animation-delay: 18s;
}

.desktop-side__slide:nth-child(5) {
  animation-delay: 24s;
}

.desktop-side__slide:nth-child(6) {
  animation-delay: 30s;
}

.desktop-side__slide:nth-child(7) {
  animation-delay: 36s;
}

.desktop-side__slide:nth-child(8) {
  animation-delay: 42s;
}

.desktop-side__slide:nth-child(9) {
  animation-delay: 48s;
}

.desktop-side__slide:nth-child(10) {
  animation-delay: 54s;
}

.desktop-side__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.desktop-side__copy {
  position: absolute;
  right: 24px;
  bottom: 8vh;
  left: 24px;
  z-index: 2;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.desktop-side__copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-side__copy p {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.7;
}

@keyframes desktop-side-fade {
  0%, 100% {
    opacity: 0;
  }
  3%, 10% {
    opacity: 1;
  }
  14% {
    opacity: 0;
  }
}
@media (min-width: 560px) {
  .lp {
    border: 1px solid rgba(255, 255, 255, 0.85);
  }
}
@media (max-width: 559px) {
  .page-shell {
    max-width: none;
  }
}
/* === タブレット帯 (560〜1079px)：周囲に余白を確保し、影で「カード感」 === */
@media (min-width: 560px) and (max-width: 1079px) {
  body {
    background: radial-gradient(circle at 15% 0%, rgba(26, 115, 200, 0.18), transparent 38%), radial-gradient(circle at 85% 6%, rgba(245, 197, 24, 0.18), transparent 32%), linear-gradient(180deg, #eef5ff 0%, #f6fbff 60%, #eef4fb 100%);
    padding-block: 32px;
  }
  .lp {
    overflow: hidden;
    box-shadow: 0 38px 90px rgba(16, 40, 73, 0.18);
  }
}
/* === SP (≤559px) でセクションの余白を息継ぎ良く === */
@media (max-width: 559px) {
  .section {
    padding: 28px var(--content-pad);
  }
  .section-title {
    font-size: clamp(1.42rem, 5.2vw, 1.72rem);
  }
}
.side-cta {
  display: none;
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(215, 226, 240, 0.9);
  box-shadow: 0 -16px 34px rgba(16, 40, 73, 0.14);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.mobile-sticky-cta .sticky-guide {
  background: linear-gradient(180deg, #f9bc24, #eea311);
}

.mobile-sticky-cta .sticky-consult {
  background: linear-gradient(180deg, #15d05f, #06c755);
}

@media (min-width: 560px) and (max-width: 1079px) {
  .mobile-sticky-cta {
    right: auto;
    left: 50%;
    width: 100%;
    max-width: var(--main-width);
    border-radius: 22px 22px 0 0;
    transform: translateX(-50%);
  }
}
@media (min-width: 1080px) {
  body {
    background: #f4f4f4;
  }
  body.has-mobile-sticky {
    padding-bottom: 0;
  }
  body::before,
  body::after {
    display: none;
  }
  .desktop-side {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
  }
  .desktop-side--left {
    right: calc(50% + var(--main-width) / 2);
    left: 0;
    background: #fff;
  }
  .desktop-side--left .desktop-side__image {
    opacity: 0.92;
    -webkit-mask-image: radial-gradient(circle at center, #000 55%, rgba(0, 0, 0, 0.35) 78%, rgba(0, 0, 0, 0) 100%);
            mask-image: radial-gradient(circle at center, #000 55%, rgba(0, 0, 0, 0.35) 78%, rgba(0, 0, 0, 0) 100%);
  }
  .desktop-side--right {
    right: 0;
    left: calc(50% + var(--main-width) / 2);
    background: #f9f9f9;
    border-left: 1px solid #eee;
  }
  .desktop-side--right .desktop-side__slider {
    filter: blur(5px);
    transform: scale(1.04);
  }
  .desktop-side--right .desktop-side__image {
    filter: brightness(0.6) saturate(0.95);
  }
  .desktop-side--right::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.72);
  }
  .side-cta {
    position: fixed;
    top: calc(100dvh - 26rem);
    right: max(24px, (100vw - var(--main-width)) / 2 - 21rem);
    z-index: 30;
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
  .side-cta .cta-pair-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .side-cta .cta-card {
    border-radius: 22px;
    box-shadow: 0 22px 44px rgba(16, 40, 73, 0.16);
  }
  .mobile-sticky-cta {
    display: none;
  }
}
@media (max-width: 450px) {
  .section {
    padding-inline: 18px;
  }
  .hero-content {
    padding: 18px 14px 18px;
  }
  .hero-lead {
    font-size: 1.12rem;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
  .cta-pair-grid,
  .course-grid,
  .comparison-board,
  .process-grid {
    gap: 20px 10px;
  }
  .reason-grid,
  .course-grid,
  .simulation-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 0.9rem;
  }
}
@media (max-width: 389px) {
  .section {
    padding-inline: 16px;
  }
  .section-title {
    font-size: 1.52rem;
  }
  .cta-pair-grid,
  .course-grid,
  .simulation-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    grid-template-columns: 74px 1fr;
    padding-inline: 0.78rem;
  }
  .hero-stat-icon {
    width: 60px;
    height: 60px;
  }
  .hero h1 {
    font-size: 3.18rem;
  }
  .reason-grid {
    grid-template-columns: 1fr;
  }
  .reason-wide {
    grid-template-rows: auto auto;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* Corporate header/footer copied from actilabo.info */
:root {
  --corporate-header-height: 180px;
  --corporate-header-mobile-height: 103px;
  --corporate-header-mobile-brand-height: 63px;
  --corporate-header-mobile-menu-height: 40px;
}

body {
  padding-top: var(--corporate-header-mobile-height);
}

.corporate-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  background: #fff;
  color: #1e73be;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  box-shadow: 0 1px 0 rgba(80, 149, 206, 0.18);
  overflow: visible;
}

.corporate-header__brand {
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--corporate-header-mobile-brand-height);
  padding: 0 10px;
  background: #fff;
}

.corporate-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e73be;
}

.corporate-header__logo img {
  flex: 0 0 auto;
  width: auto;
  height: 50px;
  max-width: none;
}

.corporate-header__text {
  display: grid;
  gap: 4px;
}

.corporate-header__name {
  color: #1e73be;
  font-family: "Raleway", "Open Sans", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.corporate-header__tagline {
  color: #1e73be;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.corporate-menu-toggle {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  min-height: var(--corporate-header-mobile-menu-height);
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #9fc9e9;
  border-bottom: 1px solid #9fc9e9;
  background: #5095ce;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.corporate-menu-toggle::before {
  content: none;
}

.corporate-menu-toggle::after {
  content: none;
}

.corporate-header__nav-divider {
  position: fixed;
  top: var(--corporate-header-mobile-brand-height);
  right: auto;
  left: calc(min(100vw, var(--main-width)) - 46px);
  display: block;
  width: 1px;
  height: var(--corporate-header-mobile-menu-height);
  background: rgba(255, 255, 255, 0.74);
  pointer-events: none;
  z-index: 3;
}

.corporate-menu-toggle__label {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  padding: 0 56px 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  position: relative;
  z-index: 1;
}

.corporate-header__nav-button {
  position: fixed;
  top: var(--corporate-header-mobile-brand-height);
  right: auto;
  left: calc(min(100vw, var(--main-width)) - 46px);
  display: block;
  width: 46px;
  height: var(--corporate-header-mobile-menu-height);
  max-width: none;
  object-fit: none;
  object-position: right center;
  pointer-events: none;
  z-index: 4;
}

.corporate-nav {
  display: none;
  width: 100%;
  background: #83bfed;
}

.corporate-nav.is-open {
  display: block;
}

html:has(.is-open) {
  overflow: hidden;
}

.corporate-nav ul {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corporate-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.corporate-nav a {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 0 16px;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.corporate-nav a:hover,
.corporate-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.footer {
  position: relative;
  z-index: 80;
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  background: #28374a;
  color: #fff;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.footer p {
  margin: 0;
}

@media (min-width: 560px) {
  body {
    padding-top: 162px;
  }
  .corporate-header__brand {
    height: 122px;
    padding: 0 18px;
    align-items: center;
  }
  .corporate-header__logo {
    gap: 18px;
  }
  .corporate-header__logo img {
    width: auto;
    height: 55px;
  }
  .corporate-header__text {
    gap: 8px;
    padding-top: 0;
  }
  .corporate-header__name {
    font-size: 1.46rem;
  }
  .corporate-header__tagline {
    font-size: 1.07rem;
  }
  .corporate-header__nav-button {
    top: 122px;
    right: 0;
    left: auto;
  }
  .corporate-header__nav-divider {
    top: 122px;
    right: 46px;
    left: auto;
  }
}
@media (min-width: 981px) {
  body {
    padding-top: var(--corporate-header-height);
  }
  .corporate-header__brand {
    height: 122px;
  }
  .corporate-menu-toggle {
    display: none;
  }
  .corporate-header__nav-divider,
  .corporate-header__nav-button {
    display: none;
  }
  .corporate-nav {
    display: block;
    height: 58px;
  }
  .corporate-nav ul {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .corporate-nav li {
    border-bottom: 0;
  }
  .corporate-nav a {
    min-height: 58px;
    padding: 0 28px;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }
}
