@charset "utf-8";

/* * * Common classes * * */
.inner {
    width: min(100% - 36px, 1100px);
    margin-right: auto;
    margin-left: auto;
}

.PC {
    display: none;
}

.t1em { margin-top: 1em; }
.t2em { margin-top: 2em; }
.t3em { margin-top: 3em; }

#page_top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 100;
    margin: 0;
}

#page_top a {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgb(98 175 191 / 45%);
    border-radius: 50%;
    color: var(--color-aqua-title);
    background: rgb(255 255 255 / 88%);
    box-shadow: 0 5px 18px rgb(52 49 58 / 10%);
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

#page_top a:focus-visible {
    outline: 3px solid var(--color-lavender);
    outline-offset: 3px;
}

:root {
  --color-base: #fff9f7;
  --color-white: #ffffff;
  --color-text: #34313a;
  --color-coral: #dd7488;
  --color-lavender: #aaa2df;
  --color-mint: #9fd8cf;
  --color-yellow: #f2d58a;
  --color-pale-pink: #fff0f3;
  --color-aqua-title: #62afbf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-base);
  font-family: "Noto Sans JP", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

/* * * Header * * */

.site_header {
  background: var(--color-base);
}

.site_header_inner {
  width: min(100% - 36px, 1100px);
  margin: 0 auto;
  padding: 20px 0;
  color: var(--color-aqua-title);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* * * Hero * * */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 42px 0 52px;
  background: var(--color-base);
}

.hero_wash_yellow {
  position: absolute;
  top: 3%;
  left: -12%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 52% 48% 61% 39% / 43% 57%;
  background: rgb(242 213 138 / 25%);
  transform: rotate(-14deg);
}

.hero_inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 24px;
  width: min(100% - 36px, 1100px);
  margin: 0 auto;
}

.hero_content {
  position: relative;
  z-index: 3;
}

.hero_lead {
  display: inline-block;
  position: relative;
  margin: 0 0 10px;
  padding: 0 6px 3px;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero_lead::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: rgb(242 213 138 / 58%);
  transform: rotate(-1deg);
}

.hero_title {
  margin: 0;
  color: var(--color-text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2.7rem, 3.8vw, 3.45rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.03em;
}

.hero_title_line {
  color: var(--color-text);
  white-space: nowrap;
}

.hero_title_line > span {
  position: relative;
  color: var(--color-coral);
  white-space: nowrap;
}

.hero_title_line > span::after {
  position: absolute;
  right: -3px;
  bottom: 2px;
  left: -3px;
  z-index: -1;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--color-yellow);
  opacity: 0.68;
  transform: rotate(-2deg);
}

.hero_copy {
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero_meta {
  display: inline-block;
  margin: 16px 0 0;
  padding-bottom: 4px;
  border-bottom: 2px dotted var(--color-lavender);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero_button {
  display: table;
  margin-top: 28px;
  padding: 14px 30px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-coral);
  box-shadow: 0 8px 20px rgb(221 116 136 / 18%);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero_button:hover {
  box-shadow: 0 10px 24px rgb(221 116 136 / 26%);
  transform: translateY(-2px);
}

.hero_button:focus-visible {
  outline: 3px solid var(--color-lavender);
  outline-offset: 4px;
}

.hero_visual {
  position: relative;
  width: 100%;
  max-width: 510px;
  min-height: 500px;
  justify-self: end;
}

.hero_blob {
  position: absolute;
  display: block;
  border-radius: 52% 48% 61% 39% / 43% 57% 43% 57%;
}

.hero_blob_pink {
  top: 12%;
  right: 2%;
  width: 76%;
  height: 70%;
  background: var(--color-pale-pink);
  transform: rotate(8deg);
}

.hero_blob_mint {
  right: -2%;
  bottom: 8%;
  width: 40%;
  height: 35%;
  background: rgb(159 216 207 / 55%);
  transform: rotate(-18deg);
}

.hero_image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero_note {
  position: absolute;
  top: 11%;
  right: -1%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 82px;
  margin: 0;
  border-radius: 55% 45% 48% 52% / 48% 58% 42% 52%;
  color: var(--color-text);
  background: var(--color-yellow);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  transform: rotate(7deg);
}

/* * * Problems * * */

.problems {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background: var(--color-white);
}

.problems_inner {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1100px);
  margin: 0 auto;
  text-align: center;
}

.section_kicker {
  display: inline-block;
  position: relative;
  margin: 0 0 12px;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section_kicker::before,
.section_kicker::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 5px;
  content: "";
  background: var(--color-coral);
}

.section_kicker::before {
  transform: rotate(48deg);
}

.section_kicker::after {
  transform: rotate(-48deg);
}

.section_title {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.section_title::after {
  display: block;
  width: 150px;
  height: 8px;
  margin: 12px auto 0;
  border-radius: 50%;
  content: "";
  background: rgb(242 213 138 / 62%);
  transform: rotate(-1deg);
}

.problems_scene {
  position: relative;
  min-height: 610px;
  margin-top: 36px;
}

.problems_woman_wrap {
  position: absolute;
  bottom: 66px;
  left: 50%;
  width: 350px;
  height: 465px;
  transform: translateX(-50%);
}

.problems_woman_blob {
  position: absolute;
  right: 8%;
  bottom: 3%;
  left: 8%;
  height: 72%;
  border-radius: 55% 45% 50% 50% / 46% 56% 44% 54%;
  background: rgb(255 240 243 / 82%);
  transform: rotate(-4deg);
}

.problems_woman {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.problem_bubble {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 310px;
  min-height: 142px;
  margin: 0;
  padding: 24px 28px;
  border: 2px solid var(--color-text);
  border-radius: 48% 52% 46% 54% / 55% 44% 56% 45%;
  background: rgb(255 255 255 / 94%);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.9;
}

.problem_bubble::after {
  position: absolute;
  width: 28px;
  height: 22px;
  content: "";
  border-bottom: 2px solid var(--color-text);
  background: var(--color-white);
}

.problem_bubble_one {
  top: 25px;
  left: 2%;
  border-color: var(--color-coral);
  transform: rotate(-1deg);
}

.problem_bubble_one::after {
  right: -18px;
  bottom: 12px;
  border-color: var(--color-coral);
  transform: rotate(45deg);
}

.problem_bubble_two {
  top: 28px;
  right: 1%;
  border-color: var(--color-lavender);
  transform: rotate(1deg);
}

.problem_bubble_two::after {
  bottom: 12px;
  left: -18px;
  border-color: var(--color-lavender);
  transform: rotate(-45deg);
}

.problem_bubble_three {
  bottom: 48px;
  left: 0;
  border-color: #79bdb2;
  transform: rotate(1deg);
}

.problem_bubble_three::after {
  top: 10px;
  right: -18px;
  border-color: #79bdb2;
  transform: rotate(-45deg);
}

.problem_bubble_four {
  right: 0;
  bottom: 50px;
  border-color: #d9b75f;
  transform: rotate(-1deg);
}

.problem_bubble_four::after {
  top: 10px;
  left: -18px;
  border-color: #d9b75f;
  transform: rotate(45deg);
}

.problems_closing {
  margin: 24px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.9;
}

.problems_closing span {
  color: var(--color-coral);
}

.problems_wash {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
}

.problems_wash_lavender {
  top: 20%;
  right: -120px;
  width: 310px;
  height: 210px;
  background: rgb(170 162 223 / 12%);
  transform: rotate(-12deg);
}

.problems_wash_mint {
  bottom: 7%;
  left: -100px;
  width: 280px;
  height: 190px;
  background: rgb(159 216 207 / 18%);
  transform: rotate(9deg);
}

/* * * Benefits * * */

.benefits {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: var(--color-base);
}

.benefits_inner {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1100px);
  margin: 0 auto;
  text-align: center;
}

.benefits_intro {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.9;
}

.benefits_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 54px;
}

.benefit {
  position: relative;
  padding: 0 8px;
}

.benefit:nth-child(2) {
  margin-top: 36px;
}

.benefit_visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 178px;
  margin: 0 auto 24px;
  border-radius: 53% 47% 56% 44% / 48% 57% 43% 52%;
}

.benefit_pink .benefit_visual {
  background: rgb(221 116 136 / 18%);
  transform: rotate(-3deg);
}

.benefit_lavender .benefit_visual {
  background: rgb(170 162 223 / 24%);
  transform: rotate(3deg);
}

.benefit_mint .benefit_visual {
  background: rgb(159 216 207 / 32%);
  transform: rotate(-2deg);
}

.benefit_visual::before,
.benefit_visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  opacity: 0.5;
}

.benefit_visual::before {
  top: 7px;
  right: 12px;
  width: 34px;
  height: 22px;
  background: var(--color-yellow);
  transform: rotate(24deg);
}

.benefit_visual::after {
  bottom: 9px;
  left: 6px;
  width: 25px;
  height: 16px;
  background: var(--color-white);
  transform: rotate(-16deg);
}

.benefit_number {
  position: absolute;
  top: -13px;
  left: -3px;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: rotate(-6deg);
}

.benefit_icon {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: var(--color-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.benefit h3 {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.benefit h3::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 50%;
  content: "";
  background: var(--color-yellow);
  opacity: 0.72;
}

.benefit p {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.9;
  text-align: left;
}

.benefits_note {
  display: inline-block;
  position: relative;
  margin: 64px 0 0;
  padding: 18px 36px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.8;
}

.benefits_note::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 48% 52% 46% 54% / 60% 46% 54% 40%;
  content: "";
  background: rgb(242 213 138 / 26%);
  transform: rotate(-1deg);
}

.benefits_note span {
  color: var(--color-coral);
}

.benefits_scribble {
  position: absolute;
  display: block;
  width: 130px;
  height: 72px;
  border: 2px solid rgb(52 49 58 / 16%);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.benefits_scribble_left {
  top: 19%;
  left: -55px;
  transform: rotate(28deg);
}

.benefits_scribble_right {
  right: -42px;
  bottom: 16%;
  transform: rotate(205deg);
}

/* * * Works * * */

.works {
  position: relative;
  overflow: hidden;
  padding: 100px 0 108px;
  background: var(--color-white);
}

.works_inner {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1100px);
  margin: 0 auto;
  text-align: center;
}

.works_intro {
  margin: 22px 0 0;
  line-height: 1.9;
}

.works_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 58px;
}

.work_sample {
  position: relative;
}

.work_sample:nth-child(2) {
  margin-top: 26px;
}

.work_sample_tape {
  position: absolute;
  top: -13px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 25px;
  background: rgb(242 213 138 / 50%);
  transform: translateX(-50%) rotate(-4deg);
}

.work_sample:nth-child(2) .work_sample_tape {
  background: rgb(170 162 223 / 30%);
  transform: translateX(-50%) rotate(3deg);
}

.work_sample:nth-child(3) .work_sample_tape {
  background: rgb(159 216 207 / 38%);
}

.work_sample_art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 290px;
  height: 290px;
  margin: 0 auto;
  overflow: hidden;
  border: 1.5px solid rgb(52 49 58 / 22%);
  background: var(--color-base);
  box-shadow: 8px 10px 0 rgb(221 116 136 / 10%);
  transform: rotate(-1deg);
}

.work_sample:nth-child(2) .work_sample_art {
  box-shadow: 8px 10px 0 rgb(170 162 223 / 13%);
  transform: rotate(1.2deg);
}

.work_sample:nth-child(3) .work_sample_art {
  box-shadow: 8px 10px 0 rgb(159 216 207 / 18%);
  transform: rotate(-0.7deg);
}

.work_sample_art::after {
  content: none;
}

.work_sample_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work_sample_art small,
.work_sample_art strong,
.work_sample_art p,
.work_sample_art span {
  position: relative;
  z-index: 1;
}

.work_sample_art small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.work_sample_art strong {
  display: block;
  margin-top: 11px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.7rem;
  line-height: 1.42;
  letter-spacing: 0.05em;
}

.work_sample_art p {
  margin: 13px 0 0;
  font-size: 0.72rem;
  line-height: 1.7;
}

.work_sample h3 {
  margin: 28px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.13rem;
}

.work_sample > p {
  margin: 10px auto 0;
  max-width: 290px;
  font-size: 0.86rem;
  line-height: 1.85;
}

.comparison {
  position: relative;
  width: min(100%, 900px);
  margin: 96px auto 0;
  padding: 50px 58px 48px;
  border-radius: 44% 56% 48% 52% / 6% 7% 5% 6%;
  background: rgb(255 249 247 / 92%);
}

.comparison::before {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px dashed rgb(221 116 136 / 32%);
  border-radius: inherit;
  content: "";
}

.comparison_kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.comparison > h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.5;
}

.comparison_row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
}

.comparison_item {
  position: relative;
}

.comparison_label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.comparison_item_before .comparison_label {
  color: rgb(52 49 58 / 58%);
}

.comparison_item_after .comparison_label {
  color: var(--color-coral);
}

.comparison_image {
  display: block;
  width: 100%;
  max-width: 275px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgb(52 49 58 / 22%);
  background: var(--color-white);
  object-fit: cover;
  box-shadow: 5px 7px 0 rgb(52 49 58 / 7%);
}

.comparison_item > p {
  margin: 16px 0 0;
  font-size: 0.78rem;
  line-height: 1.75;
}

.comparison_arrow {
  display: grid;
  place-items: center;
  width: 56px;
  height: 52px;
  border-radius: 52% 48% 55% 45%;
  color: var(--color-white);
  background: var(--color-coral);
  font-size: 1.7rem;
  transform: rotate(-3deg);
}

.works_sample_note {
  margin: 28px 0 0;
  color: rgb(52 49 58 / 52%);
  font-size: 0.68rem;
  text-align: right;
}

.works_wash {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.works_wash_pink {
  top: 12%;
  left: -120px;
  width: 320px;
  height: 220px;
  background: rgb(221 116 136 / 9%);
  transform: rotate(12deg);
}

.works_wash_mint {
  right: -110px;
  bottom: 11%;
  width: 300px;
  height: 210px;
  background: rgb(159 216 207 / 16%);
  transform: rotate(-11deg);
}

/* * * Curriculum * * */

.curriculum {
  position: relative;
  overflow: hidden;
  padding: 100px 0 104px;
  background: var(--color-white);
}

.curriculum_inner {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1040px);
  margin: 0 auto;
  text-align: center;
}

.curriculum_intro {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.9;
}

.curriculum_timeline {
  position: relative;
  isolation: isolate;
  margin-top: 62px;
}

.curriculum_timeline::before {
  position: absolute;
  top: 72px;
  bottom: 72px;
  left: 69px;
  width: 2px;
  content: "";
  background-image: linear-gradient(var(--color-coral) 45%, transparent 45%);
  background-position: top;
  background-size: 2px 12px;
  opacity: 0.5;
  z-index: 0;
}

.lesson {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 140px minmax(0, 1.1fr) minmax(250px, 0.9fr);
  align-items: center;
  gap: 34px;
  min-height: 270px;
  margin-bottom: 36px;
  text-align: left;
}

.lesson:last-child {
  margin-bottom: 0;
}

.lesson_step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 132px;
  border-radius: 55% 45% 48% 52% / 46% 58% 42% 54%;
  color: var(--color-text);
  font-family: "Zen Maru Gothic", sans-serif;
  transform: rotate(-3deg);
}

.lesson_one .lesson_step {
  background: #f7dce2;
}

.lesson_two .lesson_step {
  background: #e9e7f7;
  transform: rotate(3deg);
}

.lesson_three .lesson_step {
  background: #dff3ef;
}

.lesson_step span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lesson_step strong {
  font-size: 2.65rem;
  line-height: 1.05;
}

.lesson_body {
  position: relative;
  padding: 28px 0;
}

.lesson_tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 12px 4px;
  border-radius: 999px;
  color: var(--color-coral);
  background: var(--color-pale-pink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.lesson_two .lesson_tag {
  color: #756db8;
  background: rgb(170 162 223 / 15%);
}

.lesson_three .lesson_tag {
  color: #4f958b;
  background: rgb(159 216 207 / 18%);
}

.lesson_body h3 {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.42rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.lesson_body ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lesson_body li {
  position: relative;
  margin-top: 8px;
  padding-left: 23px;
  font-size: 0.93rem;
  line-height: 1.75;
}

.lesson_body li::before {
  position: absolute;
  top: 0.74em;
  left: 3px;
  width: 9px;
  height: 6px;
  border-bottom: 2px solid var(--color-coral);
  border-left: 2px solid var(--color-coral);
  content: "";
  transform: translateY(-50%) rotate(-45deg);
}

.lesson_two .lesson_body li::before {
  border-color: var(--color-lavender);
}

.lesson_three .lesson_body li::before {
  border-color: #6db9ad;
}

.lesson_mock {
  position: relative;
  width: 100%;
  max-width: 295px;
  height: 190px;
  justify-self: end;
  overflow: hidden;
  border: 2px solid rgb(52 49 58 / 42%);
  border-radius: 12px 15px 11px 14px;
  background: var(--color-base);
  box-shadow: 8px 10px 0 rgb(242 213 138 / 18%);
  transform: rotate(1.5deg);
}

.lesson_two .lesson_mock {
  box-shadow: 8px 10px 0 rgb(170 162 223 / 15%);
  transform: rotate(-1.5deg);
}

.lesson_three .lesson_mock {
  box-shadow: 8px 10px 0 rgb(159 216 207 / 19%);
}

.lesson_mock::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  border-bottom: 1px solid rgb(52 49 58 / 22%);
  content: "";
  background: var(--color-white);
}

.mock_dot {
  position: absolute;
  top: 9px;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.mock_dot_one {
  left: 12px;
  background: var(--color-coral);
}

.mock_dot_two {
  left: 24px;
  background: var(--color-yellow);
}

.mock_dot_three {
  left: 36px;
  background: var(--color-mint);
}

.mock_sidebar {
  position: absolute;
  top: 27px;
  bottom: 0;
  left: 0;
  width: 60px;
  padding: 20px 12px;
  background: rgb(170 162 223 / 14%);
}

.mock_sidebar i {
  display: block;
  height: 8px;
  margin-bottom: 13px;
  border-radius: 99px;
  background: rgb(52 49 58 / 22%);
}

.mock_canvas {
  position: absolute;
  top: 46px;
  right: 28px;
  width: 166px;
  height: 118px;
  padding: 22px 16px;
  background: var(--color-white);
  box-shadow: 0 4px 14px rgb(52 49 58 / 8%);
}

.mock_canvas b {
  display: block;
  height: 45px;
  color: transparent;
  background: rgb(221 116 136 / 21%);
}

.mock_canvas i {
  display: block;
  width: 70%;
  height: 5px;
  margin-top: 9px;
  border-radius: 99px;
  background: rgb(52 49 58 / 24%);
}

.mock_canvas i:last-child {
  width: 47%;
}

.mock_cursor {
  position: absolute;
  right: 32px;
  bottom: 15px;
  z-index: 3;
  color: var(--color-coral);
  font-size: 1.8rem;
  font-weight: 700;
  transform: rotate(-8deg);
}

.mock_palette {
  position: absolute;
  top: 52px;
  left: 25px;
  display: grid;
  grid-template-columns: repeat(2, 44px);
  gap: 9px;
}

.mock_palette i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.mock_palette i:nth-child(1) { background: var(--color-coral); }
.mock_palette i:nth-child(2) { background: var(--color-lavender); }
.mock_palette i:nth-child(3) { background: var(--color-mint); }
.mock_palette i:nth-child(4) { background: var(--color-yellow); }

.mock_type {
  position: absolute;
  top: 48px;
  right: 22px;
  width: 125px;
  padding: 13px 10px;
  border: 1px dashed rgb(52 49 58 / 35%);
  text-align: center;
}

.mock_type b {
  display: block;
  color: var(--color-lavender);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
}

.mock_type span {
  display: block;
  margin-top: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.68rem;
  line-height: 1.45;
}

.mock_finished_card {
  position: absolute;
  top: 46px;
  right: 48px;
  left: 48px;
  height: 120px;
  padding: 18px 12px;
  background: linear-gradient(145deg, rgb(255 240 243), rgb(159 216 207 / 40%));
  text-align: center;
}

.mock_finished_card span {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mock_finished_card b {
  display: block;
  margin-top: 10px;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.28rem;
}

.mock_finished_card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 8px auto 0;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-mint);
  font-style: normal;
  font-weight: 700;
}

.curriculum_details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 48px;
}

.curriculum_details span {
  position: relative;
  padding: 8px 16px 9px 34px;
  border: 1px dashed rgb(221 116 136 / 48%);
  border-radius: 999px;
  background: var(--color-base);
  font-size: 0.86rem;
  font-weight: 500;
}

.curriculum_details span::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--color-coral);
  border-left: 2px solid var(--color-coral);
  content: "";
  transform: translateY(-65%) rotate(-45deg);
}

.curriculum_wash {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.curriculum_wash_pink {
  top: 11%;
  right: -130px;
  width: 330px;
  height: 230px;
  background: rgb(221 116 136 / 9%);
  transform: rotate(-10deg);
}

.curriculum_wash_yellow {
  bottom: 8%;
  left: -100px;
  width: 280px;
  height: 220px;
  background: rgb(242 213 138 / 16%);
  transform: rotate(14deg);
}

/* * * Instructor * * */

.instructor {
  position: relative;
  overflow: hidden;
  padding: 104px 0 72px;
  background: var(--color-base);
}

.instructor_inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
  width: min(100% - 36px, 1040px);
  margin: 0 auto;
}

.instructor_visual {
  position: relative;
  min-height: 585px;
}

.instructor_blob {
  position: absolute;
  top: 55px;
  right: 5%;
  bottom: 20px;
  left: 2%;
  border-radius: 51% 49% 44% 56% / 42% 55% 45% 58%;
  background: linear-gradient(155deg, rgb(170 162 223 / 28%), rgb(255 240 243 / 88%));
  transform: rotate(-4deg);
}

.instructor_blob::after {
  position: absolute;
  right: -22px;
  bottom: 55px;
  width: 120px;
  height: 88px;
  border-radius: 50%;
  content: "";
  background: rgb(159 216 207 / 47%);
  transform: rotate(18deg);
}

.instructor_image {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.instructor_mini_note {
  position: absolute;
  top: 56px;
  right: -22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 98px;
  margin: 0;
  border: 1.5px solid var(--color-coral);
  border-radius: 54% 46% 48% 52% / 48% 58% 42% 52%;
  color: var(--color-coral);
  background: rgb(255 255 255 / 90%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  transform: rotate(5deg);
}

.instructor_doodle {
  position: absolute;
  z-index: 3;
  color: var(--color-yellow);
  font-size: 2rem;
}

.instructor_doodle_top {
  top: 36px;
  left: 18px;
  transform: rotate(-12deg);
}

.instructor_doodle_bottom {
  bottom: 32px;
  left: 4px;
  color: var(--color-mint);
  font-size: 2.7rem;
}

.instructor_content {
  padding: 28px 0;
  text-align: left;
}

.instructor_kicker {
  display: inline-block;
  position: relative;
  margin: 0 0 8px;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.instructor_kicker::after {
  display: inline-block;
  width: 52px;
  height: 1px;
  margin: 0 0 5px 12px;
  content: "";
  background: var(--color-coral);
}

.instructor_content h2 {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  letter-spacing: 0.05em;
}

.instructor_role {
  margin: 25px 0 0;
  color: #756db8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.instructor_name {
  margin: 5px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.instructor_name span {
  display: inline-block;
  margin-left: 8px;
  color: rgb(52 49 58 / 55%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.instructor_message {
  position: relative;
  margin: 28px 0 0;
  padding-left: 22px;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.7;
}

.instructor_message::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  border-radius: 50%;
  content: "";
  background: rgb(242 213 138 / 78%);
  transform: rotate(2deg);
}

.instructor_text {
  margin-top: 24px;
}

.instructor_text p {
  margin: 0 0 13px;
  font-size: 0.94rem;
  line-height: 2;
}

.instructor_points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.instructor_points li {
  position: relative;
  padding: 7px 13px 8px 30px;
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.76rem;
  font-weight: 500;
  box-shadow: 0 3px 12px rgb(52 49 58 / 5%);
}

.instructor_points li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--color-mint);
  border-left: 2px solid var(--color-mint);
  content: "";
  transform: translateY(-65%) rotate(-45deg);
}

.instructor_sample_note {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1040px);
  margin: 38px auto 0;
  color: rgb(52 49 58 / 52%);
  font-size: 0.68rem;
  text-align: right;
}

.instructor_wash {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.instructor_wash_lavender {
  top: -70px;
  left: -130px;
  width: 360px;
  height: 250px;
  background: rgb(170 162 223 / 12%);
  transform: rotate(14deg);
}

.instructor_wash_mint {
  right: -120px;
  bottom: 5%;
  width: 290px;
  height: 210px;
  background: rgb(159 216 207 / 16%);
  transform: rotate(-12deg);
}

/* * * Voices * * */

.voices {
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  background: var(--color-white);
}

.voices_inner,
.price_inner,
.faq_inner {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1040px);
  margin: 0 auto;
  text-align: center;
}

.voices_intro {
  margin: 22px 0 0;
  line-height: 1.9;
}

.voices_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}

.voice {
  position: relative;
  min-height: 390px;
  padding: 32px 28px 30px;
  border: 1.5px solid rgb(52 49 58 / 22%);
  border-radius: 43% 57% 48% 52% / 8% 9% 7% 8%;
  background: rgb(255 255 255 / 94%);
  text-align: left;
  box-shadow: 6px 8px 0 rgb(242 213 138 / 14%);
  transform: rotate(-0.7deg);
}

.voice_quote {
  position: absolute;
  top: 6px;
  right: 18px;
  color: rgb(221 116 136 / 24%);
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}

.voice_person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
}

.voice_avatar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 65px;
  overflow: hidden;
  border-radius: 55% 45% 48% 52% / 45% 55% 45% 55%;
  background: rgb(221 116 136 / 17%);
}

.voice_avatar svg {
  width: 47px;
  height: 47px;
  fill: none;
  stroke: var(--color-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.voice_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice_pink .voice_avatar img {
  object-position: 54% center;
}

.voice_person p {
  margin: 0;
}

.voice_person strong,
.voice_person span {
  display: block;
}

.voice_person strong {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.96rem;
}

.voice_person span {
  margin-top: 2px;
  color: rgb(52 49 58 / 62%);
  font-size: 0.72rem;
}

.voice h3 {
  margin: 25px 0 0;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.08rem;
  line-height: 1.65;
}

.voice > p {
  margin: 17px 0 0;
  font-size: 0.88rem;
  line-height: 1.95;
}

.voices_sample_note,
.price_sample_note {
  margin: 40px 0 0;
  color: rgb(52 49 58 / 52%);
  font-size: 0.68rem;
  text-align: right;
}

.voices_wash,
.contact_wash {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.voices_wash_pink {
  top: 16%;
  left: -130px;
  width: 330px;
  height: 220px;
  background: rgb(221 116 136 / 10%);
  transform: rotate(14deg);
}

.voices_wash_mint {
  right: -110px;
  bottom: 5%;
  width: 290px;
  height: 200px;
  background: rgb(159 216 207 / 17%);
  transform: rotate(-10deg);
}

/* * * Price * * */

.price {
  position: relative;
  overflow: hidden;
  padding: 100px 0 104px;
  background: var(--color-base);
}

.price_panel {
  position: relative;
  width: min(100%, 780px);
  margin: 56px auto 0;
  padding: 50px 58px 46px;
  border: 2px solid rgb(52 49 58 / 28%);
  border-radius: 26px 22px 28px 24px;
  background: var(--color-white);
  box-shadow: 11px 13px 0 rgb(170 162 223 / 12%);
}

.price_panel::before {
  position: absolute;
  inset: 11px;
  pointer-events: none;
  border: 1px dashed rgb(221 116 136 / 35%);
  border-radius: 19px 17px 21px 16px;
  content: "";
}

.price_tape {
  position: absolute;
  top: -14px;
  z-index: 2;
  width: 92px;
  height: 30px;
  background: rgb(242 213 138 / 52%);
}

.price_tape_left {
  left: 48px;
  transform: rotate(-6deg);
}

.price_tape_right {
  right: 48px;
  transform: rotate(5deg);
}

.price_heading {
  position: relative;
  z-index: 1;
}

.price_heading p {
  margin: 0;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.price_heading h3 {
  margin: 7px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.5;
}

.price_heading > span {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 18px 6px;
  border-radius: 999px;
  color: #756db8;
  background: rgb(170 162 223 / 17%);
  font-size: 0.84rem;
  font-weight: 700;
}

.price_amount {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.price_amount p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.price_amount strong {
  display: inline-block;
  margin-top: 1px;
  color: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.price_amount strong span {
  margin-right: 5px;
  font-size: 0.5em;
}

.price_amount small {
  font-size: 0.76rem;
}

.price_features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  margin: 30px auto 0;
  padding: 26px 20px;
  border-top: 1px dashed rgb(52 49 58 / 25%);
  border-bottom: 1px dashed rgb(52 49 58 / 25%);
  list-style: none;
  text-align: left;
}

.price_features li {
  position: relative;
  padding: 8px 0 8px 30px;
}

.price_features li::before {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-mint);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.price_features strong,
.price_features span {
  display: block;
}

.price_features strong {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.94rem;
}

.price_features span {
  margin-top: 3px;
  color: rgb(52 49 58 / 67%);
  font-size: 0.73rem;
}

.price_button,
.contact_button {
  position: relative;
  z-index: 1;
  display: table;
  margin: 34px auto 0;
  padding: 16px 38px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-coral);
  box-shadow: 0 9px 22px rgb(221 116 136 / 20%);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price_button:hover,
.contact_button:hover {
  box-shadow: 0 12px 25px rgb(221 116 136 / 28%);
  transform: translateY(-2px);
}

.price_button:focus-visible,
.contact_button:focus-visible {
  outline: 3px solid var(--color-lavender);
  outline-offset: 4px;
}

.price_sub {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: rgb(52 49 58 / 65%);
  font-size: 0.76rem;
}

/* * * FAQ * * */

.faq {
  position: relative;
  overflow: hidden;
  padding: 100px 0 104px;
  background: var(--color-white);
}

.faq_list {
  width: min(100%, 820px);
  margin: 54px auto 0;
  text-align: left;
}

.faq details {
  border-top: 1px dashed rgb(52 49 58 / 28%);
}

.faq details:last-child {
  border-bottom: 1px dashed rgb(52 49 58 / 28%);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px 50px 23px 8px;
  cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-coral);
  border-radius: 50%;
  color: var(--color-coral);
  content: "+";
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq summary > span,
.faq_answer > span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 55% 45% 48% 52% / 45% 55% 45% 55%;
  color: var(--color-white);
  background: var(--color-coral);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.faq_answer {
  display: flex;
  gap: 16px;
  padding: 0 52px 24px 8px;
}

.faq_answer > span {
  color: var(--color-text);
  background: rgb(159 216 207 / 54%);
}

.faq_answer p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  line-height: 1.9;
}

.faq_wash {
  position: absolute;
  top: 18%;
  right: -110px;
  width: 300px;
  height: 230px;
  border-radius: 50%;
  background: rgb(242 213 138 / 13%);
  transform: rotate(-15deg);
}

/* * * Contact * * */

.contact {
  position: relative;
  overflow: hidden;
  padding: 108px 0 100px;
  background: linear-gradient(180deg, var(--color-base), rgb(255 240 243 / 76%));
}

.contact_inner {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, 820px);
  margin: 0 auto;
  text-align: center;
}

.contact_lead {
  display: inline-block;
  margin: 0;
  padding: 4px 15px 5px;
  border-radius: 999px;
  color: var(--color-coral);
  background: rgb(255 255 255 / 82%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact h2 {
  margin: 22px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.contact_text {
  margin: 24px 0 0;
  font-size: 0.94rem;
  line-height: 2;
}

.contact_badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 25px;
}

.contact_badges span {
  padding: 6px 14px 7px;
  border: 1px dashed rgb(170 162 223 / 62%);
  border-radius: 999px;
  background: rgb(255 255 255 / 68%);
  font-size: 0.76rem;
  font-weight: 500;
}

.contact_button {
  margin-top: 32px;
  padding: 17px 42px;
  font-size: 1.05rem;
}

.contact_note {
  margin: 16px 0 0;
  color: rgb(52 49 58 / 55%);
  font-size: 0.68rem;
}

.contact_wash_yellow {
  top: -100px;
  left: -90px;
  width: 360px;
  height: 280px;
  background: rgb(242 213 138 / 25%);
  transform: rotate(15deg);
}

.contact_wash_lavender {
  right: -120px;
  bottom: -70px;
  width: 390px;
  height: 290px;
  background: rgb(170 162 223 / 16%);
  transform: rotate(-12deg);
}

.contact_canvas_motif {
  position: absolute;
  top: 42px;
  right: 7%;
  width: 138px;
  height: 100px;
  border: 1.5px solid rgb(52 49 58 / 20%);
  border-radius: 8px;
  background: rgb(255 255 255 / 45%);
  transform: rotate(7deg);
}

.contact_canvas_motif > span {
  position: absolute;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.contact_canvas_motif > span:nth-child(1) { left: 9px; background: var(--color-coral); }
.contact_canvas_motif > span:nth-child(2) { left: 19px; background: var(--color-yellow); }
.contact_canvas_motif > span:nth-child(3) { left: 29px; background: var(--color-mint); }

.contact_canvas_motif > i {
  position: absolute;
  top: 34px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
}

.contact_canvas_motif > i:nth-of-type(1) { left: 14px; background: var(--color-coral); }
.contact_canvas_motif > i:nth-of-type(2) { left: 43px; background: var(--color-lavender); }
.contact_canvas_motif > i:nth-of-type(3) { left: 72px; background: var(--color-mint); }
.contact_canvas_motif > i:nth-of-type(4) { left: 101px; background: var(--color-yellow); }

/* * * Footer * * */

.site_footer {
  padding: 38px 18px 42px;
  color: rgb(52 49 58 / 72%);
  background: var(--color-white);
  text-align: center;
}

.site_footer_logo {
  margin: 0;
  color: var(--color-aqua-title);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site_footer > p:not(.site_footer_logo) {
  margin: 8px 0 0;
  font-size: 0.76rem;
}

.site_footer small {
  display: block;
  margin-top: 20px;
  font-size: 0.64rem;
  letter-spacing: 0.04em;
}

.sp_only {
  display: none;
}

@media (max-width: 760px) {
  .site_header_inner {
    padding: 16px 0;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 38px;
    text-align: center;
  }

  .hero_inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero_title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero_title_line {
    white-space: normal;
  }

  .hero_button {
    margin-right: auto;
    margin-left: auto;
  }

  .hero_visual {
    width: min(100%, 430px);
    min-height: 390px;
    margin: 0 auto;
    justify-self: center;
  }

  .hero_note {
    right: 2%;
  }

  .problems {
    padding: 72px 0 68px;
  }

  .section_kicker {
    font-size: 0.9rem;
  }

  .section_kicker::before,
.section_kicker::after {
    width: 20px;
    margin-right: 8px;
    margin-left: 8px;
  }

  .problems_scene {
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-top: 30px;
    gap: 16px;
  }

  .problem_bubble {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(92%, 350px);
    min-height: 124px;
    padding: 20px 22px;
    align-self: flex-start;
    font-size: 0.92rem;
  }

  .problem_bubble:nth-of-type(even) {
    align-self: flex-end;
  }

  .problem_bubble::after {
    display: none;
  }

  .problems_woman_wrap {
    position: relative;
    bottom: auto;
    left: auto;
    order: 5;
    width: min(88%, 340px);
    height: 390px;
    margin: -4px auto 0;
    transform: none;
  }

  .problems_closing {
    margin-top: 6px;
    font-size: 1.08rem;
  }

  .benefits {
    padding: 72px 0 76px;
  }

  .benefits_intro {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .benefits_list {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 44px;
  }

  .benefit,
.benefit:nth-child(2) {
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 0 16px;
  }

  .benefit_visual {
    width: 168px;
    height: 158px;
    margin-bottom: 18px;
  }

  .benefit_icon {
    width: 70px;
    height: 70px;
  }

  .benefit p {
    text-align: center;
  }

  .benefits_note {
    margin-top: 52px;
    padding: 16px 18px;
    font-size: 1.05rem;
  }

  .works {
    padding: 72px 0 78px;
  }

  .works_intro {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .works_gallery {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 46px;
  }

  .work_sample,
.work_sample:nth-child(2) {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .work_sample_art {
    max-width: 270px;
    height: 270px;
  }

  .work_sample h3 {
    margin-top: 24px;
  }

  .comparison {
    margin-top: 72px;
    padding: 42px 20px 38px;
    border-radius: 30px 26px 32px 27px;
  }

  .comparison_row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .comparison_arrow {
    width: 50px;
    height: 46px;
    margin: 2px auto;
    transform: rotate(90deg);
  }

  .comparison_image {
    max-width: 290px;
  }

  .comparison_item > p {
    margin-top: 13px;
  }

  .works_sample_note {
    margin-top: 24px;
    text-align: left;
  }

  .curriculum {
    padding: 72px 0 76px;
  }

  .curriculum_intro {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .curriculum_timeline {
    margin-top: 46px;
  }

  .curriculum_timeline::before {
    top: 70px;
    bottom: 70px;
    left: 49px;
  }

  .lesson {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px 18px;
    min-height: 0;
    margin-bottom: 58px;
    align-items: start;
  }

  .lesson_step {
    width: 98px;
    height: 94px;
  }

  .lesson_step span {
    font-size: 0.62rem;
  }

  .lesson_step strong {
    font-size: 2rem;
  }

  .lesson_body {
    padding: 6px 0 0;
  }

  .lesson_tag {
    font-size: 0.72rem;
  }

  .lesson_body h3 {
    font-size: 1.12rem;
  }

  .lesson_body ul {
    margin-top: 12px;
  }

  .lesson_body li {
    padding-left: 20px;
    font-size: 0.84rem;
  }

  .lesson_mock {
    grid-column: 1 / -1;
    width: min(86%, 300px);
    margin-top: 8px;
    justify-self: center;
  }

  .curriculum_details {
    gap: 10px;
    margin-top: 40px;
  }

  .curriculum_details span {
    padding: 7px 12px 8px 29px;
    font-size: 0.77rem;
  }

  .curriculum_details span::before {
    left: 12px;
  }

  .instructor {
    padding: 72px 0 54px;
  }

  .instructor_inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .instructor_visual {
    width: min(100%, 420px);
    min-height: 485px;
    margin: 0 auto;
  }

  .instructor_mini_note {
    top: 45px;
    right: 2px;
    width: 98px;
    height: 88px;
    font-size: 0.69rem;
  }

  .instructor_content {
    padding-top: 10px;
  }

  .instructor_content h2 {
    font-size: 2rem;
  }

  .instructor_role {
    margin-top: 20px;
  }

  .instructor_name {
    font-size: 1.35rem;
  }

  .instructor_message {
    margin-top: 22px;
    font-size: 1.18rem;
  }

  .instructor_text p {
    font-size: 0.9rem;
  }

  .instructor_sample_note {
    margin-top: 24px;
    text-align: left;
  }

  .voices,
.price,
.faq {
    padding: 72px 0 76px;
  }

  .voices_intro {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .voices_list {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
  }

  .voice {
    width: min(100%, 390px);
    min-height: 0;
    margin: 0 auto;
    padding: 28px 24px 27px;
  }

  .voices_sample_note,
.price_sample_note {
    margin-top: 30px;
    text-align: left;
  }

  .price_panel {
    margin-top: 44px;
    padding: 42px 22px 36px;
    box-shadow: 7px 9px 0 rgb(170 162 223 / 12%);
  }

  .price_panel::before {
    inset: 8px;
  }

  .price_tape {
    width: 68px;
    height: 24px;
  }

  .price_tape_left { left: 28px; }
  .price_tape_right { right: 28px; }

  .price_amount strong {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .price_features {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 20px 4px;
  }

  .price_button,
.contact_button {
    width: min(100%, 330px);
    padding: 15px 18px;
    text-align: center;
  }

  .price_sub {
    padding: 0 8px;
    line-height: 1.7;
  }

  .faq_list {
    margin-top: 42px;
  }

  .faq summary {
    gap: 11px;
    padding: 19px 38px 19px 0;
    font-size: 0.9rem;
  }

  .faq summary::after {
    right: 3px;
  }

  .faq summary > span,
.faq_answer > span {
    width: 34px;
    height: 34px;
  }

  .faq_answer {
    gap: 11px;
    padding: 0 8px 21px 0;
  }

  .faq_answer p {
    font-size: 0.86rem;
  }

  .contact {
    padding: 78px 0 72px;
  }

  .contact h2 {
    margin-top: 18px;
    font-size: clamp(1.7rem, 8.2vw, 2.2rem);
  }

  .contact_text {
    font-size: 0.88rem;
    line-height: 1.9;
  }

  .contact_badges {
    gap: 7px;
  }

  .contact_badges span {
    padding: 5px 10px 6px;
    font-size: 0.69rem;
  }

  .contact_button {
    margin-top: 28px;
    font-size: 0.96rem;
  }

  .contact_canvas_motif {
    top: 25px;
    right: -45px;
    opacity: 0.62;
    transform: rotate(11deg) scale(0.78);
  }

  .site_footer {
    padding: 32px 18px 35px;
  }

  .sp_only {
    display: block;
  }
}

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

  .hero_button {
    transition: none;
  }
}
