@charset "UTF-8";
/* =============== Reset =============== */
*, *::before, *::after {
  box-sizing: border-box
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block
}
ol, ul {
  list-style: none
}
blockquote, q {
  quotes: none
}
blockquote::before, blockquote::after, q::before, q::after {
  content: ""
}
table {
  border-collapse: collapse;
  border-spacing: 0
}
img, video {
  max-width: 100%;
  height: auto;
  display: block
}
button, input, select, textarea {
  font: inherit;
  color: inherit
}
button {
  background: none;
  border: 0;
  cursor: pointer
}
a {
  text-decoration: none;
  color: inherit
}
body {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-family: "Noto Sans", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #0f172a
}
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
br.pc-only {
  display: block;
}
span.pc-only {
  display: inline;
}
@media (max-width: 767.98px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  br.sp-only {
    display: block;
  }
  span.sp-only {
    display: inline;
  }
}
/* =============== Tokens =============== */ :root {
  /* === Color (XDアセットからコピペ) === */
  --ink-900: #2f2f2f;
  --ink-700: #2f2f2f;
  /* === Radius / Shadow / Container === */
  --container: 92vw;
  /* === Wave背景 === */
  --wave-top-h: clamp(44px, 8vw, 120px);
  --wave-bottom-h: clamp(44px, 8vw, 120px);
}
/* =============== Global =============== */
section {
  padding: clamp(48px, 7vw, 96px) 0;
  background: #F7F7F7
}
.section-title {
  font-weight: 600;
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.18;
  letter-spacing: 0.1em;
}
.about-ruby {
  color: #2f2f2f;
  margin-top: .4em;
  font-size: clamp(14px, 1.02vw, 14px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.57;
}
.program__ruby, .companies__ruby, .schedule__ruby, .instructors__ruby, .support__ruby, .staff__ruby {
  color: #2f2f2f;
  margin-left: .6em;
  font-size: clamp(14px, 1.02vw, 14px);
  letter-spacing: 0.08em;
  line-height: 1.57;
}
/* Headings（共通見出しデザイン） */
h2 + p {
  position: relative; /* z-indexを効かせるため必須 */
  z-index: 10;
}
h2:not(.kv__maincopy):not(#note-embed-title) {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 0;
}
@media (max-width: 767.98px) {
  h2:not(.kv__maincopy):not(#note-embed-title) {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 0;
    text-align: center;
  }
}
h2:not(.kv__maincopy):not(#note-embed-title)::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 185px;
  height: 185px;
  background: url("../../assets/img/bg-title.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: -1;
}
h2:not(.kv__maincopy):not(#note-embed-title) > * {
  position: relative;
  z-index: 1;
}
/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  /* 初期は非表示（scrollでフェードイン） */
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
  padding: 10px;
}
@media (max-width: 767.98px) {
  .site-header {
    padding: 0 ;
  }
}
.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-header__inner {
  max-width: 1126px;
  margin: 0 auto;
  padding: 10px0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .site-header__inner {
    background: #ffffff;
  }
}
/* 左グループ（白角丸背景にロゴ＋ナビ） */
.site-header__left {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 9999px;
  padding: clamp(4px, 0.59vw, 8px) clamp(20px, 1.66vw, 50px);
  min-height: 60px;
}
.site-header__logo img {
  display: block;
  width: 100%;
  max-width: 95px;
  min-width: 40px;
  height: auto;
}
/* PCナビ */
.site-header__nav {
  display: block;
}
.site-header__menu {
  margin-left: clamp(20px, 2vw, 63px);
  display: flex;
  gap: clamp(5px, 3vw, 30px);
  align-items: center;
  font-weight: 600;
  font-size: clamp(10px, 2vw, 14px);
  letter-spacing: .02em;
  color: #2f2f2f;
}
@media (max-width: 1023.98px) {
  .site-header__menu {
  gap: clamp(5px, 1vw, 30px);
  }
}
.site-header__menu a {
  font-size: clamp(10px, 1.2vw, 14px); /* 10px〜14px の範囲で可変 */
  white-space: nowrap;                  /* 改行禁止 */
}
.site-header__menu a:hover {
  opacity: 0.7;
}
/* 右グループ（CTA） */
.site-header__right {
  display: block;
}
.btn.btn--cta {
  font-size: clamp(12px, 1.17vw, 16px);
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 9999px;
  background: #3E50D6;
  color: #fff;
  font-weight: 600;
  letter-spacing: .1em;
  transition: transform .08s ease, box-shadow .2s ease;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .btn.btn--cta {
    height: auto;
    margin: 40px 0 30px;
    padding: 15px;
    width: 100%;
    background: #ffffff;
    color: #3E50D6;
  }
}
.btn.btn--cta:hover {
  opacity: 0.7;
}
/* ハンバーガー（SPで表示） */
.site-header__burger {
  display: none;
  margin: 0 20px 0 0;
  display: inline-block;
  position: relative;
  width: 40px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 24px;
  background-image: url("../../assets/img/nav-open.svg");
  z-index: 200;
}
.site-header__burger.is-open {
  background-image: url("../../assets/img/nav-close.svg");
}
@media (max-width: 767.98px) {
  .site-header__burger {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .site-header__burger {
    display: none !important;
  }
}
/* SPドロワー */
.site-header__drawer[hidden] {
  display: none!important;
}
.site-header__drawer {
  width: 76.9%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(62, 80, 214, 1);
  backdrop-filter: saturate(180%) blur(6px);
  z-index: 190;
  border-radius: 40px 0 0 40px;
}
.site-header__drawer-nav ul {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.site-header__drawer-nav a {
  display: block;
  padding: 14px 12px;
  color: #ffffff;
  font-weight: 600;
}
.site-header__drawer-nav a.btn--cta {
  text-align: center;
}
/* ===== ブレークポイント（768） ===== */
@media (max-width: 767.98px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .site-header__left {
    gap: 10px;
    padding: 6px 10px;
    min-height: 50px;
  }
  .site-header__logo img {
    width: 104px;
  }
  .site-header__nav, .site-header__right {
    display: none;
  }
  .site-header__burger {
    display: inline-block;
  }
  .site-header__drawer-nav ul {
    margin: 100px 0 0;
    display: grid;
    gap: 0px;
    padding: 30px;
  }
  .site-header__drawer-nav ul li {
    border-bottom: 1px solid #ffffff;
    position: relative;
    padding-right: 1.2em;
  }
  .site-header__drawer-nav ul li::after {
    content: "";
    position: absolute;
    right: 0.4em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px; /* 横幅 */
    height: 8px; /* 縦幅 */
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    pointer-events: none;
  }
  .site-header__drawer-nav ul li:last-child {
    padding-right: 0;
  }
  .site-header__drawer-nav ul li:last-child::after {
    content: none;
  }
  .site-header__drawer-nav ul li:last-child, .site-header__drawer-nav ul li:nth-last-child(2) {
    border: none;
  }
}

/* ===== KVループ画像 ===== */
/* === KV下部ループ：Swiper版 === */
.kv-loop {
 margin-top: 2.4vw; 
}

/* Swiperコンテナ */
.kv-loop__swiper {
  overflow: hidden;
}
/* 等速に固定（必須） */
.kv-loop__swiper .swiper-wrapper{
  transition-timing-function: linear !important;
  align-items: center;
}

/* サムネは幅可変の帯 */
.kv-loop__swiper .swiper-slide{
  width: auto;
  display: flex;
  align-items: center;
  margin-right: 3.5vw;
  pointer-events: none;              /* ← クリックで止まるのを防ぐ */
}
.kv-loop__swiper .swiper-slide img{
  display: block;
  height: auto;
}

/* 既存の奇数/偶数の高さ指定はそのまま活かす */
.kv-loop__swiper .swiper-slide.learge img{
  height: clamp(90px, 10.8vw, 147px);
}
.kv-loop__swiper .swiper-slide.small img{
  height: clamp(70px, 9.4vw, 128px);
}

/* SPの余白調整（任意） */
@media (max-width: 767.98px) {
  .kv-loop { margin-top: 10vw; }
}

.kv-loop.is-visible {
  opacity: 1;
  transform: none;
  /* グループの1枚目と同じ delay にするなら .15s 等に合わせる */
  transition-delay: .15s;
}
.kv-loop__track {
  display: flex;
  width: max-content;
  animation: kvmarquee 50s linear infinite;
  will-change: transform;
}
/* 各セットを横並びに */
.loop-set {
  display: flex;
  gap: 3.5vw;
  align-items: center;
  margin-right: 3.5vw;
}
/* 共通リセット */
.loop-set img {
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: auto;
}
/* 奇数番目：大きい */
.loop-set img:nth-child(odd) {
  height: clamp(90px, 10.8vw, 147px);
}
/* 偶数番目：小さい */
.loop-set img:nth-child(even) {
  height: clamp(70px, 9.4vw, 128px);
}
/* マルチセット用のアニメーション */
@keyframes kvmarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
/* ===== KV：テキスト→ビジュアルの順に表示 ===== */
.kv__logo, .kv__subcopy {
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
/* kv__visual */
.kv__visual {
  opacity: 0;
  transform: none;
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity;
}
/* 表示時 */
.kv.is-kv-intro .kv__logo, .kv.is-kv-intro .kv__subcopy {
  opacity: 1;
  transform: none;
}
.kv.is-kv-intro .kv__visual {
  opacity: 1;
}
/* ステップ表示 */
.kv.is-kv-intro .kv__logo {
  transition-delay: 0s;
}
.kv.is-kv-intro .kv__subcopy {
  transition-delay: .4s;
}
.kv.is-kv-intro .kv__visual {
  transition-delay: 1.2s;
}
/* トリガークラス */
.kv.is-seq .kv__logo {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.kv.is-seq .kv__maincopy {
  opacity: 1;
  transform: none;
  transition-delay: .5s;
}
.kv.is-seq .kv__subcopy {
  opacity: 1;
  transform: none;
  transition-delay: 1s;
}

/* テキストが出終わってからビジュアルを出す */
.kv.is-seq .kv__visual {
  opacity: 1;
  transform: none;
  transition-delay: 1.5s;
  pointer-events: auto;
}
.kv__visual {
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .kv__logo, .kv__maincopy, .kv__subcopy, .kv__visual {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto;
  }
}
.kv__cta {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(62, 80, 214, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 10;
}
/* ベースでは隠す（PC/SPA共通）。SP用詳細指定があるなら競合しない位置に置く */
.kv__cta {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.kv__cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.kv__cta:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
.kv__cta-icon {
  width: 48px;
  height: auto;
  margin-bottom: 8px;
}
.kv__cta-text {
  display: block;
}
@media (max-width: 767.98px) {
  .kv__cta-text .pc-only {
    display: none!important;
  }
}
/* ヘッダー強制表示用（ドロワーOPEN中） */
.site-header.is-forced {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
@media (max-width: 767.98px) {
  .kv__cta {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    padding-bottom: max(0px, env(safe-area-inset-bottom));
    width: 100%;
    height: 70px;
    border-radius: 30px 30px 0 0;
    background: rgba(62, 80, 214, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    text-decoration: none;
    z-index: 9999;
    /* 初期は隠す（ヘッダーと同タイミングで出す） */
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
  }
  .kv__cta.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .kv__cta-icon {
    width: 36px;
    height: auto;
    margin-right: 1em;
    margin-bottom: 0;
    flex: 0 0 auto;
  }
}
/* =============== About =============== */
.about {
  background: url("../../assets/img/bg-book.svg") center/contain no-repeat #E2F3FD;
  background-size: 880px;
  background-position: center 405px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .about {
    background-size: 80vw;
      background-position: center 405px;
  }
}
@media (max-width: 767.98px) {
  .about {
    background-size: 90%;
    background-position: center 65%;
  }
}
.about__inner {
  position: relative;
  width: 880px;
  max-width: 100%;
  margin: 120px auto 0;
  text-align: center;
  z-index: 1;
}
@media (max-width: 1024px) {
  .about__inner {
  margin: 5vw auto 0;
  }
}
@media (max-width: 767.98px) {
  .about__inner {
    margin: 5vw auto 0;
  }
}
.about__bg {
  position: absolute;
  left: 50%;
  top: 61.5%;
  width: 880px;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}
.about__bg img {
  max-width: none !important;
}
.about__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 466px;
  aspect-ratio: 466 / 171;
  border-radius: 50% / 50%;
  padding: 16px 18px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 40px auto 40px;
}
@media (max-width: 767.98px) {
  .about__pill {
    width: 80%;
    font-size: 3.5vw;
    line-height: 1.5;
    margin: 5vw auto;
  }
}
.about__text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 34px;
  color: #2f2f2f;
  margin: 0 0 35px;
}
@media (max-width: 767.98px) {
  .about__text {
    font-size: 3.5vw;
    line-height: 1.5;
    margin: 0 0 5vw;
  }
}
.hl--solid {
  background: #7D91E3;
  color: #fff;
  border-radius: 5px;
  padding: .1em .45em;
}
.about__footer {
  display: inline-flex;
  /* width: 524px; */
  max-width: 100%;
  margin: 5px auto 0;
  background: #fff;
  border-radius: 9999px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 34px;
  color: #2f2f2f;
}
@media (max-width: 767.98px) {
  .about__footer {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}
/* =============== Audience =============== */
.audience__head {
  width: min(1046px, var(--container));
  margin: 7% auto 30px
}
@media (max-width: 767.98px) {
  .audience__head {
    margin: 15vw auto 30px;
    text-align: center;
  }
}
.audience__slider {
  width: min(1046px, var(--container));
  margin: 0 auto 6%;
  position: relative;
}
.audience__slider .swiper-wrapper {
  display: flex;
}
.aud-card {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(16px, 3vw, 24px);
  /* gap: 12px; */
  align-items:stretch;
}
@media (max-width: 767.98px) {
  .aud-card {
    width: 80%;
    margin: 0 auto 1em;
  }
}
.aud-card__copy {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.aud-card__thumb {
  margin: 20px auto;
  /* overflow: hidden; */
}
.aud-card__thumb img{
  width: 100%;
  height: auto;
  max-width: 130px;
}
.aud-card__text {
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.08em;
}
@media (max-width: 767.98px) {
  .aud-card__copy {
    font-size: clamp(14px, 1.6vw, 16px);
  }
}
/* =============== Program =============== */
.program {
  background: #E2F3FD
}
.program__head {
  margin: 0 0 0;
}
@media (max-width: 767.98px) {
  .program__head {
    margin: 0 0 0;
    text-align: center;
  }
}
.program__top {
  width: min(997px, var(--container));
  margin: 0 auto clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center
}
/* 768px以下は1カラムにする */
@media (max-width: 767.98px) {
  .program__top {
    grid-template-columns: 1fr;
  }
}
.program__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  margin: 0
}
.program__lead {
  margin-top: 2em;
  color: var(--ink-700);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 767.98px) {
  .program__body {
    margin: 0 5.12vw 0;
  }
}
.program__body p {
  margin-top: 1em;
  color: var(--ink-900);
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 22px;
  letter-spacing: 0.08em;
}
.program__flow {
  width: min(997px, var(--container));
  margin: 9% auto 0;
  text-align: center
}
.program__flow-title {
  width: 233px;
  height: 60px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  background: #7D91E3;
  color: #fff;
  text-align: center;
  border-radius: 9999px;
}
@media (max-width: 767.98px) {
  .program__flow-title {
    margin: 20vw auto 5vw;
    font-size: 4.166666vw;
  }
  .program__flow-title {
    width: 60vw;
    height: 13vw;
    margin: 20vw auto 5.12vw;
  }
}
.program__flow-text {
  margin: 2% 0 5%;
  color: var(--ink-700);
  text-align: center;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.57;
  letter-spacing: 0.08em;
}
.flowline {
  width: auto;
  margin: 0 auto;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  padding: 18px 0 45px;
  background-image: url("../../assets/img/program-arrow.svg");
  background-repeat: no-repeat;
  background-position: 52%;
  background-size: contain
}
.flowcard {
  text-align: left;
  width: 100%;
  margin: 14px auto;
  background: #fff;
  border-radius: 9999px;
  padding: 20px 30px;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.flowcard__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8em;
  align-items: center;
  font-weight: 600;
  color: var(--ink-900)
}
.flowcard__num {
  color: #3E50D6;
  font-weight: 900;
  white-space: nowrap
}
.flowcard__text {
  line-height: 1.6
}
/* =============== Companies（参加企業） ====================== */
.companies {
  padding: clamp(56px, 7vw, 112px) 0 10%;
  background: #f7f7f7
}
.companies__top {
  width: min(1046px, var(--container));
  margin: 96px auto clamp(20px, 4vw, 28px)
}
@media (max-width: 767.98px) {
  .companies {
    padding: clamp(56px, 7vw, 112px) 0 25%;
    background: #f7f7f7
  }
  .companies__top {
    margin: 15vw auto 5vw;
    text-align: center;
  }
}
.companies__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  margin: 0
}
.companies__text {
  margin: 30px 0 0;
  color: var(--ink-900);
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.57;
  letter-spacing: 0.08em;
}
@media (max-width: 767.98px) {
  .companies__text {
    margin: 30px 5.12vw 0;
    text-align: left
  }
}
.companies__note {
  margin: .6em 0 0;
  color: #64748b;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.57;
  letter-spacing: 0.08em;
}
@media (max-width: 767.98px) {
  .companies__note {
    margin: .6em 5.12vw 0;
    text-align: left
  }
}
.companies__note a{
  color: #3E50D6;
}
.companies__grid {
  width: min(1046px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width:768px) {
  .companies__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px
  }
}
/* カード */
.comp-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: clamp(10px, 2vw, 14px);
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(16px, 3vw, 24px)
}
@media (max-width: 767.98px) {
  .comp-card {
    width: 85vw;
    margin: 0 auto;
  }
}
.comp-card__head {
  min-height: 58px;
  display: grid;
  place-items: center;
  text-align: center
}
.comp-card__title {
  color: #3E50D6;
  margin: 0;
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 600;
  line-height: 1.4
}
.comp-card__logo {
  margin: 0;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden
}
.comp-card__logo img {
  width: auto;
  height: auto;
  display: block
}
.comp-card__text {
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.83;
  letter-spacing: 0.08em;
  margin: 0
}
.comp-card__action {
  margin: 0;
  display: grid
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7em 1.2em;
  font-size: clamp(14px, 2.1vw, 16px);
  font-weight: 600;
  transition: transform .08s ease
}
.btn--pill {
  background: #7D91E3;
  color: #ffffff;
  border-radius: 9999px;
}
.btn--pill:hover {
  opacity: 0.7;
}
/* =============== Schedule =============== */
.schedule {
  background: #E2F3FD
}
.schedule__head {
  width: min(1046px, var(--container));
  margin: 0 auto 12px
}
@media (max-width: 767.98px) {
  .pdf{
    width: 85vw;
    margin: 0 auto clamp(20px, 3.5vw, 28px);
  }
  .schedule__head {
    text-align: center
  }
}
.schedule__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
}

.table-scroll {
  width: min(1046px, var(--container));
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}
.schedule-table {
  width: 100%;
  min-width: 880px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  color: #3C3C3C;
  table-layout: fixed;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.57;
}
.schedule-table thead th {
  background: #7D91E3;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 12px 14px;
  white-space: nowrap
}
.schedule-table thead .th--first {
  border-top-left-radius: 10px
}
.schedule-table thead .th--last {
  border-top-right-radius: 10px
}
.col-day, .col-place {
  text-align: center
}
/*
.schedule-table tbody .cell-day, .schedule-table tbody td:nth-child(3) {
  text-align: center
}
*/
.schedule-table tbody tr td:nth-of-type(2) {
  text-align: center
}
.schedule-table tbody .cell-day {
  color: #7D91E3;
  font-weight: 500
}
.schedule-table th[scope="row"], .schedule-table td {
  padding: 12px 14px;
  vertical-align: middle;
  background: #fff;
  word-break: break-word;
  border-bottom: 1px solid #7D91E3;
  border-right: 1px solid #7D91E3
}
.schedule-table th:first-child, .schedule-table td:first-child {
  border-left: none
}
.schedule-table thead th {
  border-top: none
}
.schedule-table th:last-child, .schedule-table td:last-child {
  border-right: none
}
.schedule-table tbody tr:last-child th, .schedule-table tbody tr:last-child td {
  border-bottom: none;
  border-radius: 0 0 0 10px
}
.schedule-table tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0
}
@media (max-width:480px) {
  .schedule-table thead th, .schedule-table tbody td, .schedule-table tbody th[scope="row"] {
    padding: 10px 10px;
    font-size: 14px
  }
}
.schedule .note{
  width: min(1046px, var(--container));
  margin: 1em auto 0;
  text-align: right;
}
@media (max-width: 767.98px) {
  .schedule .note{
    width: 85vw;
    margin: 0 auto clamp(20px, 3.5vw, 28px);
    font-size: clamp(11px, 1.66666vw, 13px);
  }
}
/* =============== Instructors =============== */
.instructors {
  padding: 200px 0;
  background: #f7f7f7;
}
/* ヘッダー（最大幅=1046px） */
.instructors__head {
  width: min(1046px, 92%);
  margin: 0 auto clamp(20px, 3.5vw, 28px);
}
@media (max-width: 767.98px) {
  .instructors {
    padding: 8% 0 20%;
    background: #f7f7f7;
  }
  .instructors__head {
    margin: 15vw auto 5vw;
    text-align: center
  }
}
.instructors__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  margin: 0;
}
.instructors__text {
  margin: 30px 0 0;
  color: var(--ink-700);
  line-height: 1.85;
  font-size: clamp(14px, 2.1vw, 16px);
}
@media (max-width: 767.98px) {
  .instructors__text {
    margin: 30px 5.12vw 0;
    text-align: left;
  }
}
.instructors__grid {
  width: min(1046px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .instructors__grid {
    gap: 20px;
  }
}
.inst-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px 20px 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  gap: 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .inst-card {
    grid-template-columns: 165px 1fr;
    gap: 14px;
    min-height: 132px;
    align-items: center;
  }
}
/* サムネ */
.inst-card__thumb {
  margin: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  justify-self: center;
}
@media (min-width: 768px) {
  .inst-card__thumb {
    width: 165px;
    height: 165px;
    justify-self: start;
  }
}
.inst-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 本文 */
.inst-card__body {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 100%;
}
.inst-card__role {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.43;
  color: #7D91E3;
  font-weight: 600;
}
.inst-card__name {
  margin: 0;
  color: #3E50D6;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.inst-card__company, .inst-card__title {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.5;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.57;
}
@media (prefers-reduced-motion: reduce) {
  .inst-card {
    transition: none;
  }
}
/* =============== Support =============== */
.support {
  background: #E2F3FD
}
.support__top {
  width: min(1046px, var(--container));
  margin: 0 auto 12px
}
@media (max-width: 767.98px) {
  .support__top {
    text-align: center;
  }
}
.support__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  margin: 0;
}
.support__text {
  margin: 30px 0 0;
  color: var(--ink-900);
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.57;
  letter-spacing: 0.08em;
}
@media (max-width: 767.98px) {
  .support__text {
    margin: 30px 5.12vw 0;
    text-align: left;
  }
}
.support__slider {
  width: min(1046px, var(--container));
  margin: 50px auto;
  position: relative
}
.support__slider .swiper-wrapper {
  align-items: stretch;
}
.swiper-wrapper .swiper-slide {
  height: auto;
  /* display: flex; */
}
.org-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 767.98px) {
  .support__slider {
    margin: 5% auto 0;
  }
  .org-card {
    width: 80%;
    margin: 0 auto 1em;
  }
}
.org-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.2em;
}
.org-card__title {
  margin: 0;
  color: #3E50D6;
  font-size: clamp(14px, 1.17vw, 16px);
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-weight: 600;
}
.org-card__logo {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
}
.org-card__text {
  margin: 0;
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.83;
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .org-card__head {
    min-height: 2.8em;
  }
  .org-card__text {
    -webkit-line-clamp: 8;
  }
}
/* =============== Requirements =============== */
.requirements {
  background: #f7f7f7;
  padding: 200px 0;
}
/* 見出し */
.req__head {
  width: min(1046px, var(--container));
  margin: 0 auto clamp(16px, 3vw, 24px);
  text-align: left;
}
@media (max-width: 767.98px) {
  .req__head {
    text-align: center;
  }
  .requirements {
    background: #f7f7f7;
    padding: 20% 0 20%;
  }
}
.req__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: var(--ink-900);
  margin: 0;
}
/* 楕円 */
.req-pill {
  width: min(1046px, var(--container));
  margin: 0 auto clamp(20px, 4vw, 20px);
  background: #fff;
  border-radius: 9999px;
  padding: clamp(20px, 4vw, 40px) clamp(16px, 3vw, 24px);
  text-align: center;
}
@media (max-width: 767.98px) {
  .req-pill {
    width: 85vw;
    border-radius: 20px;
  }
}
.req-pill__title {
  margin: 0 0 .4em;
  font-size: clamp(14px, 2vw, 16px);
  color: #3E50D6;
  font-weight: 600;
  text-align: center;
  font-size: clamp(18px, 1.46vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.3;
}
/* リスト共通 */
.req-list {
  display: inline-block;
  gap: 8px;
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .req-list {
    width: 95%;
    margin: 0 auto;
  }
}
.req-list--check li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-900);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.86;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .req-list--check li {
    line-height: 1.5;
  }
}
.req-list--check li::before {
  content: "";
  
  inline-size: 18px;
  block-size: 18px;
  flex: 0 0 18px;
  background:
    url("../../assets/img/list-check.svg") center/contain no-repeat;
}
@media (max-width: 767.98px) {
  .req-list--check li {
    margin: 0 0 1em;
    display: flex;
    align-items: center;
    text-align: left;
  }
  .req-list--check li::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    background-image: url("../../assets/img/list-check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }
}
.req-list--dot {
  display: grid;
  gap: 4px;
}
.req-list--dot li {
  list-style: none;
  position: relative;
  padding-left: 1em;
  color: var(--ink-700);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.86;
  font-weight: 600;
}
.req-list--dot li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.9em;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--ink-700);
}
.req-grid {
  width: min(1046px, var(--container));
  margin: 0 auto clamp(20px, 3vw, 20px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) {
  .req-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.req-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px clamp(16px, 3vw, 20px);
}
@media (max-width: 767.98px) {
  .req-card {
    width: 85vw;
    margin: 0 auto;
  }
}
.req-card__title {
  margin: 0 0 .4em;
  font-weight: 600;
  color: #3E50D6;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.req-row {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin: 0 auto clamp(14px, 3vw, 18px);
  background: #fff;
  border-radius: 20px;
  padding: clamp(12px, 2.6vw, 16px) clamp(14px, 3vw, 20px);
  width: min(1046px, var(--container));
}
@media (max-width: 767.98px) {
  .req-row {
    width:85vw;
  }
}
.req-row__label, .req-row__value {
  font-size: clamp(14px, 2.2vw, 16px);
}
.req-row__label {
  font-weight: 600;
  color: #3E50D6;
}
.req-row__value {
  color: var(--ink-700);
}
.req-inlinebar {
  width: min(1046px, var(--container));
  min-height: 100px;
  margin: clamp(18px, 3.6vw, 24px) auto 0;
  background: #fff;
  border-radius: 20px;
  padding: clamp(12px, 2.6vw, 16px) clamp(14px, 3vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767.98px) {
  .req-inlinebar {
    width:85vw;
  }
}
.req-inlinebar__group {
  display: flex;
  align-items: baseline;
  gap: .5em;
  flex-wrap: wrap;
}
.req-inlinebar__label {
  font-weight: 600;
  color: #3E50D6;
  font-size: clamp(14px, 2.2vw, 16px);
}
.req-inlinebar__value {
  color: var(--ink-700);
  font-size: clamp(14px, 2.2vw, 16px);
}
.req-inlinebar__divider {
  font-size: clamp(22px, 6vw, 32px);
  line-height: 1;
  color: rgba(0, 0, 0, .18);
  font-weight: 600;
  user-select: none;
}
@media (max-width: 767.98px) {
  .req-inlinebar__divider {
    display: none;
  }
}
/* =============== Staff =============== */
.staff {
  background: #E2F3FD
}
.staff__head {
  width: min(1046px, var(--container));
  margin: 0 auto 30px
}
@media (max-width: 767.98px) {
  .staff__head {
    text-align: center
  }
}
.staff__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  margin: 0;
}
.staff__grid {
  width: min(1046px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width:720px) {
  .staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width:1024px) {
  .staff__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.staff-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(12px, 2.4vw, 16px);
  display: flex;
  flex-direction: column;
}
.staff-card__top {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.staff-card__thumb {
  margin: 0;
  width: 88px;
  height: 88px;
  overflow: hidden;
}
.staff-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff-card__name {
  color: #3E50D6;
  font-weight: 500
}
.staff-card__bottom {
  display: grid;
  padding-top: 12px
}
.staff-card__role {
  font-weight: 600;
  color: var(--ink-900)
}
.staff-card__dept, .staff-card__skill {
  color: var(--ink-700);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
}
@media (max-width:767.98px) {
  .staff__grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .staff-card__top {
    grid-template-columns: 1fr;
    text-align: center
  }
  .staff-card__thumb {
    margin: 0 auto
  }
}
/* =============== Note Embed =============== */
.note-embed-section {
  background: #f7f7f7
}
.note-embed-head {
  width: min(940px, var(--container));
  margin: 7% auto 30px
}
.note-embed__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.note-swiper {
  width: min(940px, var(--container));
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.note-swiper__viewport {
  overflow: hidden;
}

@media (max-width:1024px) {
  .note-swiper__viewport {
    width: 80%;
  }
}
.note-embed {
  /* border-radius: 20px; */
  /* overflow: hidden */
}
.note-embed__iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block
}
@media (min-width:1024px) {
  .note-swiper.swiper {
    overflow: visible !important;
  }
}
/* =============== Swiper UI（共通） =============== */ :root {
  --sw-size: 50px;
  --sw-icon: 50px;
  --sw-dot: 10px;
  --sw-gap: 10px;
  --sw-offset-pc: 56px; /* note のPC外出し */
}
.audience__nav, .companies__nav, .support__nav, .note-swiper__nav {
  position: absolute;
  top: calc(50% + -12px);
  transform: translateY(-50%);
  width: var(--sw-size);
  height: var(--sw-size);
  display: grid;
  place-items: center;
  border-radius: 9999px;
  /* background: #fff; */
  z-index: 10
}
.note-swiper__nav {
  top: 38%;
}
.audience__nav::after, .companies__nav::after, .support__nav::after, .note-swiper__nav::after {
  content: "";
  width: var(--sw-icon);
  height: var(--sw-icon);
  background: url("../../assets/img/arrow-left.svg") center/contain no-repeat;
  display: block
}
.audience__nav--next::after, .companies__nav--next::after, .support__nav--next::after, .note-swiper__nav--next::after {
  transform: rotate(180deg)
}
.audience__nav--prev, .companies__nav--prev, .support__nav--prev, .note-swiper__nav--prev {
  left: 8px
}
.audience__nav--next, .companies__nav--next, .support__nav--next, .note-swiper__nav--next {
  right: 8px
}
/* 表示ルール */
@media (max-width:1023.98px) {
  .audience__nav, .companies__nav, .support__nav {
    display: grid
  }
  .note-swiper__nav {
    display: grid
  }
}
@media (min-width:1025px) {
  .audience__nav, .companies__nav, .support__nav {
    display: none
  }
  .note-swiper__nav {
    display: grid
  }
  .note-swiper__nav--prev {
    /* left: calc(-1 * var(--sw-offset-pc)) */
    left: -78px;
  }
  .note-swiper__nav--next {
    right: -78px;
  }
}
.note-embed__iframe {
  height: 250px !important;
}
/* dots 共通 */
.audience__pagination, .companies__pagination, .support__pagination, .note-swiper__pagination {
  position: relative;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: var(--sw-gap);
  z-index: 5
}
.swiper-pagination-bullet {
  width: var(--sw-dot);
  height: var(--sw-dot);
  border-radius: 999px;
  background: #cbd5e1;
  opacity: 1;
  transition: transform .12s ease, background-color .12s ease
}
.swiper-pagination-bullet-active {
  background: #3E50D6;
  transform: scale(1.15)
}
/* =============== Footer =============== */
.footer {
  background: #2F2F2F;
  color: #e5e7eb;
  padding: clamp(32px, 5vw, 48px) 0;
  font-size: clamp(13px, 1.9vw, 15px);
}
.footer__inner {
  width: min(1046px, 92%);
  margin: 0 auto;
}
.footer__top {
  width: min(620px, 100%);
  display: flex;
  margin-bottom: clamp(20px, 3vw, 28px);
  text-align: left;
}
.footer__col {
  display: inline-block;
  width: fit-content;
  margin-right: 100px;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .footer__col {
    margin: 1em 0 0;
  }
}
.footer__col:last-child {
  margin-right: 0;
}
@media (min-width: 720px) {
  .footer__top {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .footer {
    background: #2F2F2F;
    color: #e5e7eb;
    padding: 5vw 0 18vw;
    font-size: clamp(13px, 1.9vw, 15px);
  }
  .footer__inner {
    width: min(1046px, 92%);
    margin: 0 auto;
  }
  .footer__top {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .footer__col {
    width: 100%;
    display: block;
  }
}
.footer__label {
  font-weight: 600;
  margin: 0 0 .4em;
  color: #AEE4FB;
}
.footer__text {
  color: #ffffff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 12px;
  text-align: center;
}
.footer__copy {
  color: #ffffff;
  font-size: clamp(12px, 1.8vw, 14px);
}
.section--wave {
  position: relative;
  z-index: 0;
  overflow: visible;
}
.section--wave::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: var(--wave-top-h);
  transform: translateY(-100%);
  background:
    url("../../assets/img/wave-1.png") center bottom / auto 100% repeat-x;
  pointer-events: none;
  z-index: -1;
}
.section--wave::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: var(--wave-bottom-h);
  transform: translateY(100%);
  background:
    url("../../assets/img/wave-2.png") center top / auto 100% repeat-x;
  pointer-events: none;
  z-index: -1;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1), filter .6s ease;
  will-change: opacity, transform, filter;
}
/* バリアント */
.reveal--up {
  transform: translateY(14px);
}
.reveal--down {
  transform: translateY(-14px);
}
.reveal--left {
  transform: translateX(16px);
}
.reveal--right {
  transform: translateX(-16px);
}
.reveal--zoom {
  transform: scale(.98);
}
.reveal--blur {
  filter: blur(6px);
}
/* 表示状態 */
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
/* スタッガー */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .55s cubic-bezier(.22, .61, .36, 1), transform .55s cubic-bezier(.22, .61, .36, 1);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: .05s;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: .15s;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: .25s;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: .35s;
}
.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: .45s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}