:root {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --ink: #2f3032;
  --muted: #69736f;
  --green: #57ac91;
  --green-deep: #35866d;
  --green-soft: #e8f7ee;
  --pink: #e75f7a;
  --pink-deep: #c94763;
  --pink-soft: #fff0f4;
  --cream: #fffdf7;
  --line: rgba(57, 91, 77, 0.14);
  --shadow: 0 20px 54px rgba(79, 124, 98, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(207, 73, 102, 0.3);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 20px 44px rgba(207, 73, 102, 0.38);
    transform: translateY(-2px);
  }
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background:
    radial-gradient(circle at 12% 0%, rgba(188, 228, 122, 0.26), transparent 26rem),
    linear-gradient(180deg, #fbfff9 0%, #fff 46%, #fff8fa 100%);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(31px, 5vw, 52px);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(30px, 4.5vw, 50px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(86, 170, 140, 0.14);
  backdrop-filter: blur(18px);
  animation: fadeUp 0.7s ease both;
}

.brand {
  color: var(--green-deep);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.header-cta {
  justify-self: end;
  padding: 8px 18px;
  color: #fff;
  font-weight: 700;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(231, 95, 122, 0.24);
}

.hero-image-only {
  padding: 0;
  background: #f8fff1;
}

.hero-image-only img {
  width: 100%;
  min-height: calc(100vh - 58px);
  object-fit: cover;
  object-position: center;
  animation: fadeUp 0.9s ease both;
}

.section {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.problem-image-section {
  position: relative;
  min-height: min(900px, calc(100vh - 58px));
  overflow: hidden;
  background: #fbfff9;
}

.problem-image-section::before,
.problem-image-section::after {
  content: "";
  position: absolute;
  display: none;
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
  opacity: 0.78;
  filter: drop-shadow(0 18px 26px rgba(118, 139, 128, 0.12));
}

.problem-image-section::before {
  left: clamp(18px, 5vw, 76px);
  bottom: clamp(36px, 8vw, 104px);
  width: clamp(160px, 18vw, 250px);
  height: clamp(108px, 13vw, 170px);
  background:
    linear-gradient(180deg, rgba(231, 95, 122, 0.22) 0 12px, transparent 12px),
    repeating-linear-gradient(180deg, transparent 0 27px, rgba(207, 73, 102, 0.22) 27px 29px),
    rgba(255, 255, 255, 0.72);
  transform: rotate(-7deg);
}

.problem-image-section::after {
  right: clamp(18px, 4vw, 66px);
  top: clamp(92px, 16vw, 180px);
  width: clamp(132px, 14vw, 210px);
  height: clamp(152px, 16vw, 250px);
  background:
    radial-gradient(circle at 80% 18%, rgba(86, 170, 140, 0.18) 0 16px, transparent 17px),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(86, 170, 140, 0.2) 31px 33px),
    rgba(255, 255, 255, 0.66);
  transform: rotate(5deg);
}

.solution-image-section {
  position: relative;
  min-height: min(900px, calc(100vh - 58px));
  overflow: hidden;
  background: #fbfff9;
}

.problem-image-section > img {
  width: 100%;
  min-height: min(900px, calc(100vh - 58px));
  object-fit: cover;
  object-position: center;
}

.solution-image-section > img {
  width: 100%;
  min-height: min(900px, calc(100vh - 58px));
  object-fit: cover;
  object-position: center;
}

.image-bg-section {
  position: relative;
  min-height: min(900px, calc(100vh - 58px));
  overflow: hidden;
  background: #fbfff9;
}

.image-bg-section > img {
  width: 100%;
  min-height: min(900px, calc(100vh - 58px));
  object-fit: cover;
  object-position: center;
}

.problem-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.solution-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.problem-overlay .section-copy {
  width: min(720px, 100%);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(98, 123, 112, 0.12);
  backdrop-filter: blur(18px);
}

.solution-overlay .section-copy {
  width: min(540px, 100%);
}

.image-section-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.image-section-overlay .section-copy {
  width: min(560px, 100%);
}

.image-section-overlay .wide-copy {
  width: min(720px, 100%);
}

.problem-overlay h1 {
  font-size: clamp(26px, 3.7vw, 46px);
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.8);
}

.problem-overlay .check-list {
  max-width: 620px;
  margin-inline: auto;
}

.solution-overlay h2,
.image-section-overlay h2 {
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.84);
}

.problem-overlay .check-list p {
  padding: 10px 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.problem-overlay .check-list p::before {
  display: none;
}

.problem-hints {
  position: absolute;
  left: clamp(28px, 7vw, 110px);
  top: 50%;
  z-index: 1;
  width: min(270px, 22vw);
  height: 360px;
  transform: translateY(-50%);
  pointer-events: none;
}

.problem-hints span {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(86, 170, 140, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(103, 129, 116, 0.1);
}

.hint-makeup {
  left: 14px;
  top: 22px;
  width: 128px;
  height: 72px;
  background:
    linear-gradient(90deg, rgba(231, 95, 122, 0.34) 0 34%, transparent 34% 42%, rgba(86, 170, 140, 0.26) 42% 70%, transparent 70%),
    rgba(255, 255, 255, 0.74) !important;
  transform: rotate(-5deg);
}

.hint-face {
  right: 12px;
  top: 76px;
  width: 86px;
  height: 104px;
  background:
    radial-gradient(circle at 50% 39%, #ffdcca 0 23%, transparent 24%),
    radial-gradient(circle at 50% 30%, #8d5d36 0 27%, transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0 62%, rgba(232, 247, 238, 0.64) 63%) !important;
  transform: rotate(7deg);
}

.hint-clock {
  left: 38px;
  top: 142px;
  width: 84px;
  height: 84px;
  border-radius: 50% !important;
  background:
    conic-gradient(from 0.25turn, rgba(231, 95, 122, 0.34) 0 22%, transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.86) 0 58%, rgba(86, 170, 140, 0.2) 59%) !important;
}

.hint-edit {
  right: 16px;
  top: 218px;
  width: 150px;
  height: 80px;
  background:
    linear-gradient(90deg, rgba(231, 95, 122, 0.36) 0 30%, transparent 30% 38%, rgba(86, 170, 140, 0.3) 38% 68%, transparent 68% 74%, rgba(231, 95, 122, 0.24) 74%),
    rgba(255, 255, 255, 0.76) !important;
  transform: rotate(4deg);
}

.hint-ai {
  left: 4px;
  bottom: 8px;
  width: 118px;
  height: 92px;
  background:
    radial-gradient(circle at 32% 42%, rgba(86, 170, 140, 0.32) 0 13px, transparent 14px),
    radial-gradient(circle at 68% 42%, rgba(231, 95, 122, 0.26) 0 13px, transparent 14px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 247, 238, 0.52)) !important;
  transform: rotate(-8deg);
}

.compare-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-mini article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(86, 170, 140, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(78, 124, 102, 0.1);
}

.compare-mini h3 {
  margin-bottom: 0;
  font-size: clamp(17px, 2vw, 22px);
}

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

.glass-list.compact {
  grid-template-columns: 1fr;
}

.glass-list p,
.forwhom-mini article {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(86, 170, 140, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(78, 124, 102, 0.1);
}

.glass-list strong {
  color: var(--green-deep);
}

.forwhom-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.forwhom-section .forwhom-mini {
  width: min(920px, 100%);
  margin: 0 auto;
}

.forwhom-section .forwhom-mini article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.8);
}

.forwhom-mini h3 {
  font-size: 18px;
}

.forwhom-mini ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.forwhom-mini li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.forwhom-mini li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}

.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.section-label {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--green-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.center-copy {
  width: min(760px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 48px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(96, 133, 111, 0.08);
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 11px;
  height: 11px;
  background: var(--pink);
  border-radius: 50%;
}

.problem-section,
.benefits-section,
.details-section {
  background: rgba(255, 255, 255, 0.72);
}

.instructors-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(126, 200, 177, 0.18), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(247, 206, 216, 0.38), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 238, 0.62)),
    repeating-linear-gradient(45deg, rgba(86, 170, 140, 0.08) 0 1px, transparent 1px 18px);
}

.solution-section,
.curriculum-section {
  background: linear-gradient(180deg, rgba(232, 247, 238, 0.78), rgba(255, 255, 255, 0.92));
}

.solution-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(126, 200, 177, 0.14), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(247, 206, 216, 0.34), transparent 16rem),
    repeating-linear-gradient(135deg, rgba(86, 170, 140, 0.05) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #fbfff9, #fff8fa);
}

.forwhom-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(126, 200, 177, 0.13), transparent 18rem),
    radial-gradient(circle at 86% 12%, rgba(247, 206, 216, 0.28), transparent 16rem),
    repeating-linear-gradient(135deg, rgba(86, 170, 140, 0.052) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #fbfff9, #fff8fa);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(126, 200, 177, 0.16), transparent 18rem),
    radial-gradient(circle at 90% 22%, rgba(247, 206, 216, 0.34), transparent 16rem),
    repeating-linear-gradient(135deg, rgba(86, 170, 140, 0.055) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #fff8fa, #fbfff9);
}

.gallery-section::before {
  content: "";
  position: absolute;
  right: max(-120px, -8vw);
  bottom: -70px;
  width: clamp(260px, 32vw, 520px);
  height: clamp(340px, 42vw, 680px);
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 44% 14%, rgba(86, 170, 140, 0.38) 0 8%, transparent 9%),
    radial-gradient(ellipse at 66% 24%, rgba(86, 170, 140, 0.32) 0 9%, transparent 10%),
    radial-gradient(ellipse at 28% 33%, rgba(86, 170, 140, 0.28) 0 9%, transparent 10%),
    radial-gradient(ellipse at 58% 44%, rgba(86, 170, 140, 0.34) 0 11%, transparent 12%),
    radial-gradient(ellipse at 30% 57%, rgba(86, 170, 140, 0.26) 0 10%, transparent 11%),
    linear-gradient(90deg, transparent 47%, rgba(86, 170, 140, 0.28) 48% 52%, transparent 53%);
  transform: rotate(-8deg);
}

.gallery-section .section-inner {
  position: relative;
  z-index: 1;
}

.faq-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(126, 200, 177, 0.14), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(247, 206, 216, 0.28), transparent 16rem),
    repeating-linear-gradient(135deg, rgba(86, 170, 140, 0.052) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #fbfff9, #fff8fa);
}

.visual-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.9), transparent 12rem),
    linear-gradient(145deg, var(--green-soft), var(--pink-soft));
  border: 1px solid rgba(86, 170, 140, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.soft-window {
  position: absolute;
  inset: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
}

.soft-window::before,
.visual-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  filter: blur(4px);
}

.soft-window::before {
  top: -50px;
  right: -36px;
}

.visual-card::after {
  left: -44px;
  bottom: -58px;
}

.desk-line {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 70px;
  height: 16px;
  background: rgba(86, 170, 140, 0.32);
  border-radius: 999px;
}

.person {
  position: absolute;
  left: 50%;
  bottom: 86px;
  width: 142px;
  height: 210px;
  transform: translateX(-50%);
}

.person.small {
  bottom: 22px;
  width: 104px;
  height: 160px;
}

.person .hair,
.person .face,
.person .body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.person .hair {
  top: 18px;
  width: 92px;
  height: 76px;
  background: #8d5d36;
  border-radius: 50% 50% 42% 42%;
}

.person .face {
  top: 44px;
  width: 72px;
  height: 78px;
  background: #ffdcca;
  border-radius: 46% 46% 48% 48%;
  box-shadow: inset 0 -8px 0 rgba(240, 173, 160, 0.18);
}

.person .body {
  top: 122px;
  width: 126px;
  height: 92px;
  background: #fff;
  border-radius: 48px 48px 18px 18px;
  box-shadow: 0 18px 30px rgba(132, 96, 80, 0.08);
}

.person.tired .hair {
  transform: translateX(-50%) rotate(-6deg);
}

.person.helper {
  left: auto;
  right: 54px;
  bottom: 48px;
}

.makeup-kit,
.phone-mini,
.camera,
.script-card,
.laptop,
.notebook,
.photo-stack,
.zoom-badge,
.mug {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(81, 110, 97, 0.12);
}

.makeup-kit {
  left: 13%;
  bottom: 96px;
  width: 102px;
  height: 58px;
  background: linear-gradient(90deg, #ffd9e3 0 52%, #fff 52%);
}

.phone-mini {
  right: 14%;
  bottom: 104px;
  width: 52px;
  height: 94px;
  background: #2d3033;
  border: 5px solid #fff;
  border-radius: 16px;
}

.bubble-note {
  position: absolute;
  top: 76px;
  right: 10%;
  padding: 10px 16px;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid rgba(86, 170, 140, 0.32);
  border-radius: 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  transform: rotate(-4deg);
}

.compare-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(78, 124, 102, 0.1);
}

.compare-card.after {
  background: var(--green-soft);
  border-color: rgba(86, 170, 140, 0.36);
}

.compare-visual {
  position: relative;
  min-height: 280px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.9), transparent 10rem),
    linear-gradient(145deg, #fff6f8, #eef9f2);
}

.compare-visual > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.before-scene,
.after-scene {
  position: absolute;
  inset: 0;
}

.vanity-mirror,
.makeup-bag,
.camera-body,
.edit-timeline,
.photo-card,
.script-paper,
.flow-arrow,
.avatar-phone {
  position: absolute;
  box-shadow: 0 16px 30px rgba(81, 110, 97, 0.12);
}

.vanity-mirror {
  left: 13%;
  top: 42px;
  width: 118px;
  height: 118px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9) 0 48%, transparent 49%),
    #f6cdd7;
  border: 8px solid #fff;
  border-radius: 50%;
}

.vanity-mirror::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -54px;
  width: 16px;
  height: 54px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
}

.makeup-bag {
  left: 38%;
  bottom: 54px;
  width: 132px;
  height: 76px;
  background: linear-gradient(180deg, #ffe3ea, #f5b5c4);
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px 22px 12px 12px;
}

.camera-body {
  right: 12%;
  top: 64px;
  width: 108px;
  height: 72px;
  background: #34383a;
  border-radius: 12px;
}

.camera-body::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 18px;
  width: 36px;
  height: 36px;
  background: #7ec8b1;
  border: 6px solid #fff;
  border-radius: 50%;
}

.edit-timeline {
  right: 12%;
  bottom: 54px;
  width: 156px;
  height: 72px;
  background:
    linear-gradient(90deg, rgba(231, 95, 122, 0.6) 0 32%, transparent 32% 38%, rgba(86, 170, 140, 0.55) 38% 68%, transparent 68% 74%, rgba(231, 95, 122, 0.34) 74%),
    #fff;
  border: 1px solid rgba(86, 170, 140, 0.16);
}

.photo-card {
  left: 11%;
  top: 46px;
  width: 108px;
  height: 136px;
  background:
    radial-gradient(circle at 50% 34%, #ffdcca 0 20%, transparent 21%),
    radial-gradient(circle at 50% 26%, #865733 0 25%, transparent 26%),
    linear-gradient(180deg, #fff 0 58%, #e8f7ee 59%);
  border: 8px solid #fff;
  border-radius: 8px;
  transform: rotate(-7deg);
}

.script-paper {
  left: 35%;
  bottom: 52px;
  width: 132px;
  height: 92px;
  background:
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(231, 95, 122, 0.26) 18px 20px),
    #fff;
  border: 1px solid rgba(86, 170, 140, 0.16);
  border-radius: 8px;
  transform: rotate(4deg);
}

.flow-arrow {
  left: 42%;
  top: 92px;
  width: 130px;
  height: 54px;
  border-bottom: 8px solid rgba(86, 170, 140, 0.44);
  border-right: 8px solid rgba(86, 170, 140, 0.44);
  border-radius: 0 0 44px 0;
  transform: rotate(-8deg);
  box-shadow: none;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  border-left: 22px solid rgba(86, 170, 140, 0.44);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: rotate(28deg);
}

.avatar-phone {
  right: 12%;
  bottom: 28px;
  width: 116px;
  height: 208px;
  background: #202124;
  border: 7px solid #fff;
  border-radius: 26px;
}

.avatar-phone .avatar-live {
  left: 15px;
  right: 15px;
  top: 26px;
  bottom: 34px;
}

.avatar-phone .play-mark {
  bottom: 12px;
  width: 38px;
  height: 38px;
}

.compare-card h3,
.compare-label {
  padding-inline: 28px;
}

.compare-label {
  margin: 26px 0 4px;
  color: var(--pink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
}

.compare-card h3 {
  margin-bottom: 30px;
}

.camera {
  right: 14%;
  bottom: 52px;
  width: 96px;
  height: 64px;
  background: #3b3d40;
}

.camera::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 16px;
  width: 34px;
  height: 34px;
  background: #7ec8b1;
  border: 6px solid #fff;
  border-radius: 50%;
}

.phone-screen,
.final-phone {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 132px;
  height: 226px;
  background: #202124;
  border: 7px solid #fff;
  border-radius: 28px;
  transform: translateX(-50%);
  box-shadow: var(--shadow);
}

.avatar-live {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 28px;
  bottom: 36px;
  background:
    radial-gradient(circle at 50% 33%, #ffdcca 0 20%, transparent 21%),
    radial-gradient(circle at 50% 26%, #865733 0 25%, transparent 26%),
    linear-gradient(180deg, #ffffff 0 52%, #99d3b2 53%);
  border-radius: 18px;
}

.play-mark {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 44px;
  height: 44px;
  background: var(--pink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.script-card {
  right: 12%;
  top: 54px;
  padding: 16px 18px;
  color: var(--green-deep);
  background: #fff;
  transform: rotate(5deg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.instructor-card,
.forwhom-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(78, 124, 102, 0.1);
}

.benefit-card {
  padding: 16px 16px 24px;
  overflow: hidden;
}

.benefit-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.benefit-visual {
  position: relative;
  height: 160px;
  margin-bottom: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-soft), var(--pink-soft));
  border-radius: 8px;
}

.benefit-visual::before,
.benefit-visual::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.morning .benefit-visual::before {
  left: 24px;
  bottom: 24px;
  width: 88px;
  height: 52px;
  background: #fff;
}

.morning .benefit-visual::after {
  right: 30px;
  top: 30px;
  width: 54px;
  height: 54px;
  background: #ffe48a;
  border-radius: 50%;
}

.face .benefit-visual::before {
  left: 34px;
  top: 32px;
  width: 62px;
  height: 76px;
  background: #ffdcca;
  border-radius: 50%;
}

.face .benefit-visual::after {
  right: 30px;
  top: 24px;
  width: 62px;
  height: 106px;
  background: #222;
  border: 5px solid #fff;
  border-radius: 18px;
}

.cost .benefit-visual::before {
  left: 34px;
  top: 48px;
  width: 96px;
  height: 64px;
  background: #fff;
}

.cost .benefit-visual::after {
  right: 34px;
  top: 42px;
  width: 56px;
  height: 56px;
  background: var(--pink);
  border-radius: 50%;
}

.calendar .benefit-visual::before {
  left: 28px;
  right: 28px;
  top: 28px;
  bottom: 24px;
  background:
    linear-gradient(var(--pink) 0 22%, transparent 22%),
    repeating-linear-gradient(90deg, rgba(86, 170, 140, 0.28) 0 2px, transparent 2px 33%),
    repeating-linear-gradient(0deg, rgba(86, 170, 140, 0.28) 0 2px, transparent 2px 33%);
  border-radius: 8px;
}

.benefit-card span {
  color: var(--pink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 700;
}

.benefit-card p,
.instructor-card p,
.forwhom-card li,
.details-list dd,
.faq-list p,
.final-copy p {
  color: var(--muted);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.reel-card {
  min-width: 0;
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #a5d7b7 58%, #222 59%);
  border: 6px solid #fff;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(78, 124, 102, 0.14);
}

.reel-thumb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28%;
  width: 46%;
  aspect-ratio: 1;
  background: #ffdcca;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 -18px 0 #845635;
}

.reel-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 66%;
  height: 30%;
  background: #fff;
  border-radius: 999px 999px 24px 24px;
  transform: translateX(-50%);
}

.avatar-b { background: linear-gradient(180deg, #fff7f2, #f5b7c5 58%, #222 59%); }
.avatar-c { background: linear-gradient(180deg, #f6fffb, #89cdb8 58%, #222 59%); }
.avatar-d { background: linear-gradient(180deg, #fff, #d8eadf 58%, #222 59%); }
.avatar-e { background: linear-gradient(180deg, #fff5f8, #e7a0b0 58%, #222 59%); }
.avatar-f { background: linear-gradient(180deg, #fbfff9, #b8e0c7 58%, #222 59%); }

.reel-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.phone-reel-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.phone-reel-card {
  min-width: 0;
}

.phone-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  padding: 8px;
  background: #232426;
  border: 5px solid #fff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(78, 124, 102, 0.14);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 42%;
  height: 18px;
  background: #232426;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.video-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 220, 202, 0.9) 0 15%, transparent 16%),
    linear-gradient(180deg, #fff 0%, #e8f7ee 54%, #222 55%);
  border-radius: 20px;
}

.video-slot::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 46%;
  width: 54px;
  height: 54px;
  background: rgba(231, 95, 122, 0.88);
  border-radius: 50%;
  transform: translateX(-50%);
}

.video-slot::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(46% + 16px);
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(-34%);
}

.video-slot span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.timeline-visual {
  display: grid;
  place-items: center;
}

.timeline-screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(390px, 82%);
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
}

.timeline-screen span {
  position: relative;
  padding: 12px 16px 12px 42px;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid rgba(86, 170, 140, 0.22);
  border-radius: 999px;
}

.timeline-screen span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 9px;
  height: 9px;
  background: var(--pink);
  border-radius: 50%;
}

.curriculum-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.curriculum-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  column-gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.image-section-overlay .curriculum-list li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(86, 170, 140, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(78, 124, 102, 0.08);
}

.curriculum-list time,
.curriculum-list span {
  grid-row: span 2;
  color: var(--green-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
}

.curriculum-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.instructor-card {
  padding: 18px 18px 26px;
  overflow: hidden;
  text-align: left;
}

.instructor-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.instructor-role {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.instructor-card h3 {
  margin-bottom: 12px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 25px;
}

.portrait {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
  color: var(--pink-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 42px;
  font-weight: 700;
  background:
    radial-gradient(circle at 50% 42%, #ffdcca 0 26%, transparent 27%),
    radial-gradient(circle at 50% 32%, #845635 0 32%, transparent 33%),
    linear-gradient(180deg, #fff 0 62%, var(--green-soft) 63%);
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(78, 124, 102, 0.14);
}

.portrait.y {
  background:
    radial-gradient(circle at 50% 42%, #ffdcca 0 26%, transparent 27%),
    radial-gradient(circle at 50% 32%, #6e482c 0 32%, transparent 33%),
    linear-gradient(180deg, #fff 0 62%, var(--pink-soft) 63%);
}

.portrait.a {
  background:
    radial-gradient(circle at 50% 42%, #ffdcca 0 26%, transparent 27%),
    radial-gradient(circle at 50% 32%, #9a653d 0 32%, transparent 33%),
    linear-gradient(180deg, #fff 0 62%, #f0f8d8 63%);
}

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

.forwhom-card {
  padding: 24px;
}

.forwhom-card.yes {
  background: var(--green-soft);
}

.forwhom-card.no {
  background: #fff;
}

.forwhom-visual {
  height: 170px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 35% 42%, #ffdcca 0 15%, transparent 16%),
    radial-gradient(circle at 35% 35%, #8a5a36 0 18%, transparent 19%),
    linear-gradient(145deg, #fff, var(--pink-soft));
  border-radius: 8px;
}

.no .forwhom-visual {
  background:
    linear-gradient(90deg, rgba(47, 48, 50, 0.1) 0 2px, transparent 2px 100%),
    linear-gradient(145deg, #fff, #edf1ef);
  background-size: 30px 100%, auto;
}

.forwhom-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.forwhom-card li {
  position: relative;
  padding-left: 22px;
}

.forwhom-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.details-list {
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(78, 124, 102, 0.08);
}

.details-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.details-list div:last-child {
  border-bottom: 0;
}

.details-list dt {
  color: var(--green-deep);
  font-weight: 700;
}

.details-list dd {
  margin: 0;
}

.details-visual {
  min-height: 390px;
}

.laptop {
  left: 14%;
  right: 14%;
  bottom: 86px;
  height: 142px;
  background: #273033;
}

.laptop::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: linear-gradient(145deg, #fff, var(--green-soft));
  border-radius: 5px;
}

.notebook {
  left: 16%;
  bottom: 42px;
  width: 132px;
  height: 72px;
  background: #fff;
  transform: rotate(-6deg);
}

.photo-stack {
  right: 16%;
  bottom: 48px;
  width: 98px;
  height: 76px;
  background:
    radial-gradient(circle at 50% 40%, #ffdcca 0 22%, transparent 23%),
    var(--pink-soft);
  border: 6px solid #fff;
  transform: rotate(8deg);
}

.zoom-badge {
  top: 54px;
  right: 14%;
  padding: 12px 18px;
  color: #fff;
  background: var(--green);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.faq-list summary {
  cursor: pointer;
  color: #4f5955;
  font-weight: 500;
  line-height: 1.7;
}

.faq-list summary::marker {
  color: #6fae98;
}

.faq-list p {
  margin: 10px 0 0;
  color: #737d78;
  font-weight: 400;
}

.faq-visual {
  min-height: 370px;
}

.chat-card {
  position: absolute;
  z-index: 2;
  max-width: 240px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(86, 170, 140, 0.24);
  border-radius: 8px;
  box-shadow: 0 16px 28px rgba(78, 124, 102, 0.12);
}

.chat-card.q {
  left: 12%;
  top: 74px;
}

.chat-card.a {
  left: 22%;
  top: 150px;
  color: var(--green-deep);
}

.final-cta {
  padding: clamp(74px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.82), transparent 20rem),
    linear-gradient(135deg, var(--green-soft), var(--pink-soft));
}

.final-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 20px;
  padding: 14px 32px;
  color: #fff;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(180deg, #f1778f, var(--pink-deep));
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(207, 73, 102, 0.3);
  animation: gentlePulse 3.8s ease-in-out infinite;
}

.primary-button::after {
  content: ">";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 16px;
  color: var(--pink-deep);
  background: #fff;
  border-radius: 50%;
}

.final-visual {
  min-height: 380px;
}

.relaxed-person {
  position: absolute;
  left: 12%;
  bottom: 50px;
  width: 190px;
  height: 210px;
  background:
    radial-gradient(circle at 50% 30%, #ffdcca 0 20%, transparent 21%),
    radial-gradient(circle at 50% 20%, #8a5a36 0 25%, transparent 26%),
    linear-gradient(180deg, transparent 0 46%, #fff 47%);
  border-radius: 36px;
}

.mug {
  right: 8px;
  bottom: 40px;
  width: 48px;
  height: 42px;
  background: #fff;
}

.final-phone {
  left: auto;
  right: 14%;
  bottom: 58px;
  transform: rotate(6deg);
}

.section-label,
h1,
h2,
.check-list,
.compare-card,
.benefit-card,
.phone-reel-card,
.curriculum-list li,
.instructor-card,
.forwhom-mini article,
.details-list,
.faq-list details {
  animation: fadeUp 0.72s ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 24%;
}

.compare-card:nth-child(2),
.benefit-card:nth-child(2),
.phone-reel-card:nth-child(2),
.curriculum-list li:nth-child(2),
.instructor-card:nth-child(2),
.faq-list details:nth-child(2) {
  animation-delay: 0.06s;
}

.benefit-card:nth-child(3),
.phone-reel-card:nth-child(3),
.curriculum-list li:nth-child(3),
.instructor-card:nth-child(3),
.faq-list details:nth-child(3) {
  animation-delay: 0.12s;
}

.benefit-card:nth-child(4),
.phone-reel-card:nth-child(4),
.curriculum-list li:nth-child(4),
.faq-list details:nth-child(4) {
  animation-delay: 0.18s;
}

.phone-reel-card:nth-child(5),
.curriculum-list li:nth-child(5),
.faq-list details:nth-child(5) {
  animation-delay: 0.24s;
}

.phone-reel-card:nth-child(6),
.curriculum-list li:nth-child(6),
.faq-list details:nth-child(6) {
  animation-delay: 0.3s;
}

.problem-hints span,
.gallery-section::before {
  animation: softFloat 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .split,
  .reverse,
  .final-inner,
  .compare-layout,
  .forwhom-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .instructor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-image-only img {
    min-height: auto;
  }

  .problem-image-section,
  .problem-image-section > img,
  .solution-image-section,
  .solution-image-section > img,
  .image-bg-section,
  .image-bg-section > img {
    min-height: 760px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 13px;
  }

  .header-cta {
    padding: 7px 14px;
    font-size: 13px;
  }

  .section {
    padding: 58px 16px;
  }

  .problem-image-section,
  .problem-image-section > img,
  .solution-image-section,
  .solution-image-section > img,
  .image-bg-section,
  .image-bg-section > img {
    min-height: 840px;
  }

  .curriculum-image-section,
  .curriculum-image-section > img,
  .forwhom-image-section,
  .forwhom-image-section > img {
    min-height: 1040px;
  }

  .problem-image-section > img,
  .solution-image-section > img,
  .image-bg-section > img {
    object-position: 66% center;
  }

  .problem-overlay,
  .solution-overlay,
  .image-section-overlay {
    align-items: flex-start;
    padding-top: 48px;
  }

  .problem-image-section::before {
    bottom: 24px;
    width: 140px;
    height: 94px;
  }

  .problem-image-section::after {
    top: auto;
    right: 14px;
    bottom: 116px;
    width: 112px;
    height: 132px;
    opacity: 0.52;
  }

  .problem-overlay h1 {
    font-size: 25px;
  }

  .problem-hints {
    display: none;
  }

  .compare-mini,
  .glass-list,
  .forwhom-mini {
    grid-template-columns: 1fr;
  }

  .problem-overlay .check-list p {
    padding: 8px 4px;
    font-size: 14px;
  }

  .problem-overlay .check-list p::before {
    display: none;
  }

  .visual-card {
    min-height: 340px;
  }

  .benefits-grid,
  .instructor-grid,
  .reel-grid,
  .phone-reel-grid {
    grid-template-columns: 1fr;
  }

  .reel-thumb,
  .phone-frame {
    width: min(230px, 86%);
    margin: 0 auto;
  }

  .curriculum-list li,
  .details-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .primary-button {
    width: 100%;
  }
}
