/* =============================================
   推専塾 トップページ — index.css
   コンセプト：青ペン×ノート
   ノート罫線・方眼紙・マーカー・付箋・テープ
   ============================================= */

/* 共通パーツ（.u-marker / .sec-title / .sticky / .js-reveal）は common.css に定義 */

/* =============================================
   ヒーロー（全画面写真＋白ベール＋手書きあしらい）
   ============================================= */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  height: calc(100svh - var(--nav-h));
  min-height: 600px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #e8edf3;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.86) 30%,
      rgba(255,255,255,.45) 56%,
      rgba(255,255,255,.05) 78%);
}
/* 次セクションへ白く溶ける */
.hero__overlay::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
}

/* 本文：左・縦中央 */
.hero__inner {
  position: absolute;
  left: clamp(28px, 7vw, 110px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 640px;
}

/* ラベル（マスクリビール） */
.hero__label { margin-bottom: 18px; }
.hero__label-mask {
  display: inline-block;
  overflow: hidden;
}
.hero__label-mask span {
  display: inline-block;
  font-family: 'Klee One', cursive;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue);
  animation: heroRise 1s cubic-bezier(.22,1,.36,1) .25s both;
}

/* 見出し（ノートに書いたような罫線付き） */
.hero__title { margin-bottom: 26px; }
.hero__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: .12em;
  border-bottom: 1px dashed rgba(43,92,201,.3);
  margin-bottom: .1em;
  width: fit-content;
}
.hero__title-mask {
  display: inline-block;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .08em;
  color: var(--text);
  will-change: transform;
}
.hero__title-line:nth-child(1) .hero__title-mask { animation: heroRise 1.1s cubic-bezier(.22,1,.36,1) .45s both; }
.hero__title-line:nth-child(2) .hero__title-mask { animation: heroRise 1.1s cubic-bezier(.22,1,.36,1) .65s both; }
@keyframes heroRise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

/* 説明文 */
.hero__note {
  font-size: .95rem;
  line-height: 2.2;
  letter-spacing: .06em;
  color: var(--ink-soft);
  margin-bottom: 34px;
  animation: heroFadeIn 1s ease 1s both;
}
.hero__note strong {
  font-size: 1.25em;
  font-weight: 900;
  color: var(--blue);
}

/* CTA */
.hero__btns {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  animation: heroFadeIn 1s ease 1.15s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(43,92,201,.28);
}
.hero__btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(43,92,201,.34);
}
/* 副CTA：下線テキスト（LINE＝緑） */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--line);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--line);
  transition: var(--transition);
}
.hero__cta span { transition: transform var(--transition); }
.hero__cta:hover { filter: brightness(.9); }
.hero__cta:hover span { transform: translateX(6px); }

/* 手書きのひとこと＋矢印（無料体験ボタンを指す） */
.hero__doodle {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: 10px;
  margin-left: 0;
  color: var(--blue);
  animation: heroFadeIn 1s ease 1.5s both;
}
.hero__doodle-arrow {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transform: scaleX(-1);
}
.hero__doodle-text {
  font-family: 'Klee One', cursive;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .08em;
  transform: rotate(-3deg);
  margin-top: 24px;
}

/* スクロールインジケーター */
.hero__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-text {
  font-family: 'Klee One', cursive;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: rgba(36,52,74,.5);
}
.hero__scroll-bar {
  width: 1px;
  height: 40px;
  background: rgba(36,52,74,.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  55%  { top: 100%; }
  100% { top: 100%; }
}

/* =============================================
   お悩み訴求（ノートのチェックリスト）
   ============================================= */
.worries { padding-block: 120px 100px; }
.worries__card {
  max-width: 760px;
  margin-inline: auto;
  background:
    repeating-linear-gradient(to bottom, transparent 0 51px, rgba(43,92,201,.12) 51px 52px),
    #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(36,52,74,.08);
  padding: 38px 48px;
  position: relative;
}
/* 上辺にテープ */
.worries__card::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 120px;
  height: 28px;
  background: rgba(150,190,255,.45);
  border-left: 1px dashed rgba(255,255,255,.8);
  border-right: 1px dashed rgba(255,255,255,.8);
  z-index: 2;
}
.worry-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 52px;   /* 罫線に合わせる */
  letter-spacing: .02em;
}
/* 手描き風チェックボックス */
.worry-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 2px solid var(--blue);
  border-radius: 46% 54% 50% 50% / 52% 48% 52% 48%;
  color: var(--blue);
  font-family: 'Klee One', cursive;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
  background: #fff;
}
.worries__closing {
  text-align: center;
  margin-top: 44px;
}
.worries__closing p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.worries__closing strong {
  font-weight: 900;
  color: var(--text);
  background: linear-gradient(transparent 58%, rgba(120,180,255,.4) 58%, rgba(120,180,255,.4) 94%, transparent 94%);
  padding-inline: 2px;
}

/* =============================================
   LINE特典（個別学習カルテ）
   ============================================= */
.gift { padding-block: 110px; }

/* メインの黄色い大付箋 */
.gift__sticky {
  max-width: 720px;
  margin-inline: auto;
  background: #fff8c9;
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(36,52,74,.12);
  transform: rotate(-.8deg);
  padding: 46px 48px 42px;
  text-align: center;
  position: relative;
  margin-bottom: 56px;
}
.gift__sticky::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(1.5deg);
  width: 120px;
  height: 28px;
  background: rgba(150,190,255,.45);
  border-left: 1px dashed rgba(255,255,255,.8);
  border-right: 1px dashed rgba(255,255,255,.8);
}
.gift__sub {
  font-family: 'Klee One', cursive;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: #b08a1e;
  margin-bottom: 8px;
}
.gift__main {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 900;
  letter-spacing: .03em;
  color: var(--text);
  margin-bottom: 18px;
}
.gift__body {
  font-size: .88rem;
  line-height: 2.2;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.gift__note {
  font-size: .74rem;
  color: #9a8a55;
  margin-bottom: 26px;
}

/* 2カラムのノートカード */
.gift__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin-inline: auto;
}
.gift__col {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(36,52,74,.06);
  padding: 30px 32px 26px;
}
.gift__col-head {
  font-family: 'Klee One', cursive;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px dashed rgba(43,92,201,.3);
}
.gift__col-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: .86rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.gift__col-list li + li { border-top: 1px dashed var(--gray-100); }
.gift__col-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

/* =============================================
   ステートメント（方眼紙の上に）
   ============================================= */
.statement {
  padding-block: clamp(110px, 16vh, 170px);
  text-align: center;
  background-image:
    linear-gradient(rgba(43,92,201,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,92,201,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.statement__lead {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 2;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 44px;
}
.statement__body {
  max-width: 600px;
  margin-inline: auto;
}
.statement__body p {
  font-size: .92rem;
  line-height: 2.6;
  letter-spacing: .06em;
  color: var(--gray-600);
  text-align: left;
}
.statement__sign {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Klee One', cursive;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue);
}

/* =============================================
   選ばれる理由（ノートカード）
   ============================================= */
.reasons {
  padding-block: 120px 40px;
}
.reason {
  position: relative;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 56px 0 72px;
}
.reason + .reason { border-top: 2px dashed rgba(43,92,201,.18); }
.reason--reverse .reason__img  { order: 2; }
.reason--reverse .reason__text { order: 1; }

/* 手描き風の丸数字 */
.reason__no {
  position: absolute;
  top: 34px;
  left: -6px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Klee One', cursive;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--blue);
  border: 2.5px solid var(--blue);
  border-radius: 54% 46% 48% 52% / 46% 54% 46% 54%;
  transform: rotate(-6deg);
  background: #fff;
}
.reason--reverse .reason__no { left: auto; right: -6px; transform: rotate(5deg); }

/* テープで留めた写真 */
.reason__img {
  position: relative;
  background: #fff;
  padding: 12px 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(36,52,74,.1);
  transform: rotate(-1.2deg);
  transition: transform .5s ease;
}
.reason--reverse .reason__img { transform: rotate(1.2deg); }
.reason__img:hover { transform: rotate(0deg); }
.reason__img::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 110px;
  height: 28px;
  background: rgba(150,190,255,.45);
  border-left: 1px dashed rgba(255,255,255,.8);
  border-right: 1px dashed rgba(255,255,255,.8);
  z-index: 2;
}
.reason__img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
}

.reason__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 20px;
}
.reason__desc {
  font-size: .88rem;
  line-height: 2.3;
  letter-spacing: .04em;
  color: var(--gray-600);
  margin-bottom: 16px;
}
/* 青ペンのメモ書き */
.reason__memo {
  font-family: 'Klee One', cursive;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--blue);
  margin-bottom: 26px;
}
.reason__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text);
  transition: color .25s;
}
.reason__more i {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--text);
  position: relative;
  transition: var(--transition);
}
.reason__more i::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 9px; height: 1px;
  background: inherit;
  transform: rotate(38deg);
  transform-origin: right center;
}
.reason__more:hover { color: var(--blue); }
.reason__more:hover i { width: 62px; background: var(--blue); }

/* =============================================
   コース（ノートの表：罫線＋マーカー価格）
   ============================================= */
.courses-sec {
  background:
    repeating-linear-gradient(to bottom, transparent 0 35px, rgba(43,92,201,.07) 35px 36px),
    var(--blue-pale);
  padding-block: 120px;
}
.course-list {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(36,52,74,.06);
}
.course-row {
  display: grid;
  grid-template-columns: 200px 90px 1fr 150px 40px;
  gap: 28px;
  align-items: center;
  padding: 34px 32px;
  transition: background .3s;
}
.course-row + .course-row { border-top: 1px dashed rgba(43,92,201,.25); }
.course-row:hover { background: var(--blue-pale); }
.course-row__name {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1.3;
}
.course-row__name small {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-top: 6px;
}
.course-row__target {
  font-family: 'Klee One', cursive;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.course-row__desc {
  font-size: .82rem;
  line-height: 2;
  color: var(--gray-600);
}
.course-row__price {
  font-size: .8rem;
  color: var(--gray-600);
  text-align: right;
  white-space: nowrap;
}
.course-row__price strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  background: linear-gradient(transparent 58%, rgba(120,180,255,.4) 58%, rgba(120,180,255,.4) 94%, transparent 94%);
  padding-inline: 2px;
}
.course-row__arrow {
  font-size: 1.1rem;
  color: var(--gray-400);
  text-align: right;
  transition: var(--transition);
}
.course-row:hover .course-row__arrow {
  color: var(--blue);
  transform: translateX(5px);
}
.course-list__note {
  margin-top: 22px;
  font-size: .78rem;
  color: var(--gray-600);
  letter-spacing: .04em;
}
.course-list__note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   環境（テープ写真＋付箋）
   ============================================= */
.env { padding-block: 130px 110px; }
.env__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.env__media {
  position: relative;
  background: #fff;
  padding: 12px 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(36,52,74,.1);
  transform: rotate(-1deg);
}
.env__media::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 120px;
  height: 28px;
  background: rgba(150,190,255,.45);
  border-left: 1px dashed rgba(255,255,255,.8);
  border-right: 1px dashed rgba(255,255,255,.8);
  z-index: 2;
}
.env__media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
/* 右下に重なる小さい写真 */
.env__media-sub {
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 190px !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
  padding: 8px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(36,52,74,.14);
  transform: rotate(3deg);
}

/* 付箋グリッド（.sticky 本体は common.css） */
.env__stickies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

/* =============================================
   合格実績（インデックスタブ）
   ============================================= */
.results {
  background:
    repeating-linear-gradient(to bottom, transparent 0 35px, rgba(43,92,201,.07) 35px 36px),
    var(--blue-pale);
  padding-block: 120px;
}
.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.results__label {
  font-family: 'Klee One', cursive;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 20px;
}
.results__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.results__list li {
  background: #fff;
  border-left: 4px solid var(--blue-mid);
  border-radius: 0 6px 6px 0;
  padding: 9px 16px;
  font-size: .86rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  box-shadow: 0 2px 6px rgba(36,52,74,.05);
}
.results__list li:nth-child(3n+2) { border-left-color: var(--blue); }
.results__list li:nth-child(3n)   { border-left-color: #a7c8f5; }
.results__list li.is-etc {
  background: transparent;
  border-left-color: transparent;
  box-shadow: none;
  color: var(--gray-400);
  font-size: .78rem;
}

/* =============================================
   動画
   ============================================= */
.movie { padding-block: 120px; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.video-item__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #fff;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(36,52,74,.08);
}
.video-item__embed iframe,
.video-item__embed video {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 0;
  border-radius: 2px;
  background: #10273d;
  object-fit: cover;
}
.video-item__cap {
  margin-top: 18px;
  font-family: 'Klee One', cursive;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  color: var(--ink-soft);
}

/* =============================================
   生徒・保護者の声（ノートの切れ端）
   ============================================= */
.voices-sec { padding-block: 120px; padding-top: 0; }
.voices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.voice {
  background:
    repeating-linear-gradient(to bottom, transparent 0 34px, rgba(43,92,201,.14) 34px 35px),
    #fff;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 38px 36px 30px;
  box-shadow: 0 10px 26px rgba(36,52,74,.07);
  position: relative;
}
/* 上辺にテープ */
.voice::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 36px;
  width: 90px;
  height: 26px;
  background: rgba(150,190,255,.4);
  transform: rotate(-2deg);
  border-left: 1px dashed rgba(255,255,255,.8);
  border-right: 1px dashed rgba(255,255,255,.8);
}
.voice__quote-text {
  font-family: 'Klee One', cursive;
  font-size: 1rem;
  font-weight: 400;
  line-height: 35px;   /* 罫線に合わせる */
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 24px;
}
.voice__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
}
.voice__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-100);
}
.voice__avatar[src=""] { display: none; }
.voice__name {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
}
.voice__role {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: 2px;
  letter-spacing: .04em;
}

/* =============================================
   最終CTA内の引用行
   ============================================= */
.common-cta__quotes { margin-bottom: 20px; }
.common-cta__quotes p {
  font-family: 'Klee One', cursive;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
  line-height: 2.2;
}

/* =============================================
   スクロールリビール（ベースは common.css）
   回転を持つ要素は回転を保ったまま出す
   ============================================= */
.reason__img.js-reveal { transform: rotate(-1.2deg) translateY(24px); }
.reason__img.js-reveal.is-shown { transform: rotate(-1.2deg) translateY(0); }
.reason--reverse .reason__img.js-reveal { transform: rotate(1.2deg) translateY(24px); }
.reason--reverse .reason__img.js-reveal.is-shown { transform: rotate(1.2deg) translateY(0); }
.env__media.js-reveal { transform: rotate(-1deg) translateY(24px); }
.env__media.js-reveal.is-shown { transform: rotate(-1deg) translateY(0); }
.gift__sticky.js-reveal { transform: rotate(-.8deg) translateY(24px); }
.gift__sticky.js-reveal.is-shown { transform: rotate(-.8deg) translateY(0); }
.reason__no.js-reveal { transform: rotate(-6deg) scale(.6); transition-delay: .3s; }
.reason__no.js-reveal.is-shown { transform: rotate(-6deg) scale(1); }
.reason--reverse .reason__no.js-reveal { transform: rotate(5deg) scale(.6); }
.reason--reverse .reason__no.js-reveal.is-shown { transform: rotate(5deg) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .hero__bg, .hero__label-mask span, .hero__title-mask,
  .hero__note, .hero__btns, .hero__doodle { animation: none; }
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 1024px) {
  .reason,
  .reason--reverse { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 64px; }
  .reason--reverse .reason__img  { order: 0; }
  .reason--reverse .reason__text { order: 0; }
  .reason__no { top: 22px; }

  .course-row {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding: 26px 22px;
  }
  .course-row__name   { grid-column: 1; }
  .course-row__target { grid-column: 2; grid-row: 1; text-align: right; }
  .course-row__desc   { grid-column: 1 / -1; }
  .course-row__price  { grid-column: 1; text-align: left; }
  .course-row__arrow  { grid-column: 2; grid-row: 4; }

  .env__grid { grid-template-columns: 1fr; gap: 72px; }
  .env__media { max-width: 560px; }

  .results__grid { grid-template-columns: 1fr; gap: 48px; }
  .video-grid { grid-template-columns: 1fr; }
  .voices { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  .hero__inner { left: 20px; right: 20px; }
  /* 写真を左に寄せる（%を上げるほど左に動く） */
  .hero__bg { background-position: 65% center; }
  .hero__title-mask { font-size: clamp(1.8rem, 7.6vw, 2.3rem); letter-spacing: .06em; }
  /* LINEリンクの左端をボタン内の「無」の左端に揃える
     （ボタンの左パディング36pxぶんインデント） */
  .hero__btns {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__btns .hero__cta { margin-left: 36px; }
  .hero__doodle { margin-left: 0; }
  .hero__scroll { display: none; }

  .statement { padding-block: 90px; }
  .reasons { padding-block: 80px 20px; }
  .courses-sec, .results, .movie { padding-block: 80px; }
  .voices-sec { padding-block: 80px; padding-top: 0; }
  .env { padding-block: 80px; }
  .env__media-sub { display: none; }
  .worries { padding-block: 80px 70px; }
  .worries__card { padding: 24px 20px; }
  .worry-list li { line-height: 1.9; padding-block: 12px; font-size: .88rem; }
  .worry-list li + li { border-top: 1px dashed var(--gray-200); }
  .worries__card {
    background:
      repeating-linear-gradient(to bottom, transparent 0 51px, rgba(43,92,201,0) 51px 52px),
      #fff;
  }
  .gift { padding-block: 80px; }
  .gift__sticky { padding: 34px 22px 30px; margin-bottom: 40px; }
  .gift__cols { grid-template-columns: 1fr; gap: 24px; }
  .gift__col { padding: 24px 22px 20px; }
  .voice { padding: 32px 24px 26px; }
}
