@charset "UTF-8";
/**
 * 2026-08-28 にユーザーから**3つの役割**で指定を受けた。ここが唯一の定義。
 *
 *   見出し   Zen Maru Gothic  → $font-maru
 *   英字・数字 Montserrat      → $font-en   （それまでは Afacad）
 *   本文     Noto Sans        → $font-body （新設。それまで本文も丸ゴシックだった）
 *
 * ⚠️ **読み込みは header.php の Google Fonts の1行。**
 *    ここに足しただけでは配信されない。両方を直すこと。
 */
/**
 * 英字・数字
 *
 * ⚠️ Afacad から差し替えた。**幅がかなり変わる**（Montserrat は横に広い）。
 *    大きな英字見出し（`.c-section-title__en` の NEWS / SERVICE など）は
 *    完成系に合わせて字送りを詰めてある。→ `_section.scss`
 */
/**
 * 見出し（丸ゴシック）
 *
 * カンプ（Figma）の指定どおり。現行テーマは Zen Kaku Gothic New だったので、
 * リニューアルで変更になっている。
 */
/**
 * 本文
 *
 * 🔴 **`Noto Sans` には日本語が入っていない**（欧文だけのファミリー）。
 *    日本語は `Noto Sans JP` に落ちる。同じ設計のファミリーなので見た目は揃う。
 *    この順番だから、欧文＝Noto Sans / 和文＝Noto Sans JP で出る。**順番を入れ替えないこと。**
 */
/**
 * ── 本文のフォント（2026-08-28 ユーザー指定）─────────────────────
 * 本文は **Noto Sans**。
 *
 * ⚠️ ここが**サイト全体の土台**。旧 `style.scss` の
 *    `body { font-family: "Zen Kaku Gothic New" … }` を上書きしている。
 *    renewal.css は wp_enqueue_style の依存に 'main'（style.css）を指定していて
 *    必ず後に読まれるので、同じ強さ（要素セレクタ1つ）でも勝つ（functions.php 参照）。
 *
 * ⚠️ 見出しは各コンポーネントで `$font-maru` を指定している。ここは触らない。
 *    **指定が無いところは全部この本文フォントになる**（FAQの質問・答えなど）。
 */
body {
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
}

/**
 * 見出しは丸ゴシック
 *
 * 🔴 **見出しの多くは font-family を持っていなかった**（40か所ほど）。
 *    これまでは旧 `style.scss` の body（Zen Kaku Gothic New）を継いでいたので、
 *    「見出し＝丸ゴシック」になっていなかった。
 *    本文を Noto Sans にすると、指定の無い見出しはそのまま Noto Sans になってしまう。
 *    ⚠️ 1か所ずつ足すと40か所の書き換えになるので、**h1〜h6 にまとめて当てる**。
 *
 * ⚠️ `:where()` は**強さ（詳細度）を0にする**書き方。
 *    そのため、この行は `.main`（クラス1つぶん）と同じ強さにとどまり、
 *    あとから読む `.c-section-title__en` などの指定に**負ける**。
 *    ここを `.main h2` と普通に書くと逆に勝ってしまい、
 *    英字見出しのフォント指定を潰してしまうので、**`:where()` を外さないこと。**
 *
 * 🔴 **2026-08-29: 受け皿を `.main--renewal` から `.main` に広げた。**
 *
 *    旧CSS（style.css）に `h1 { font-family: "Shippori Mincho" }` と
 *    `h2 { font-family: "Shippori Mincho" }` がある。Shippori Mincho は
 *    フォント整理のときに**読み込むのをやめた**ので、いまは行き先の無い指定になっている。
 *    しかも**代替の指定が1つも書かれていない**ため、当たった見出しは
 *    「ブラウザの既定フォント」で表示される。その既定が
 *      Chrome … 日本語はゴシック → 一見おかしくない
 *      Safari … 日本語は**ヒラギノ明朝** → 明朝体で出る
 *    と食い違うので、**iPhoneだけ明朝体**という見え方になっていた。
 *
 *    `front-page.php` の main には `main--renewal` が付いていない（`class="main"` だけ）ので、
 *    TOPの見出し（MVのキャッチ・コンセプト・施設のご案内・ワークショップ＠遊び場…）が
 *    まるごとこの取り残しに当たっていた。
 *
 *    ⚠️ `main--renewal` を front-page.php に足す直し方もあるが、そちらは
 *       `_page-head.scss` の `.main.main--renewal { margin-top: 0 }` も一緒に効いて
 *       TOPの上の余白が88px（SPは66px）詰まってしまうので、**採らない**。
 *
 *    `.main_second` は `page.php`（固定ページの汎用テンプレート）だけが使っている入れ物。
 *    ここも `.main` が付いておらず同じ取り残しになるので、まとめて受ける。
 *    ⚠️ 新しいテンプレートを足すときは main に `main` クラスを付けること。
 */
.main :where(h1, h2, h3, h4, h5, h6),
.main_second :where(h1, h2, h3, h4, h5, h6) {
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
}

.kpx-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.u-br-pc {
  display: none;
}
@media screen and (min-width: 761px) {
  .u-br-pc {
    display: inline;
  }
}

.u-br-sp {
  display: inline;
}
@media screen and (min-width: 761px) {
  .u-br-sp {
    display: none;
  }
}

.c-section-title {
  text-align: center;
  margin: 0 0 24px;
}
@media screen and (min-width: 761px) {
  .c-section-title {
    margin-bottom: 32px;
  }
}

/**
 * 英字（CONCEPT / NEWS / SERVICE ...）
 *
 * ✅ **2026-08-28: 完成系のフォントは Montserrat だと実測で確定した。**
 *    それまで Afacad を当てていたが、大文字の高さの比が合っていなかった。
 *
 *      大文字の高さ ÷ フォントサイズ
 *        完成系      0.722（SP 26/36）/ 0.736（PC 40.5/55）
 *        Montserrat  0.730  ← 一致
 *        Afacad      0.670  ← 合わない
 *
 *    完成系PCのインク幅とも合う（55px・字送り0.06em で計算した値 → 実測）
 *        NEWS     183.2 → 183.0
 *        SERVICE  263.5 → 262.0
 *
 *    ⚠️ **字送りは 0.02em では足りなかった**（Afacad前提で決めた値）。
 *       0.06em にすると上記のとおり1px以内で合う。
 *    ⚠️ フォントサイズ（36 / 55）は**変えなくてよい**。
 *       もともと「完成系のインク高さから逆算」して決めていて、
 *       その逆算に使った比が Montserrat のものだったため。
 *
 * ⚠️ 同じ英字の見出しでも、`.p-faq__en` と `.p-member__en` は**丸ゴシック**。
 *    これも実測済みで、完成系PCの「FAQ」インク幅137に対して
 *    丸ゴシック135 / Montserrat 160 と、丸ゴシックのほうが合う → 確認事項 #072
 */
.c-section-title__en {
  display: block;
  color: #222224;
  font-family: "Montserrat", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 761px) {
  .c-section-title__en {
    font-size: 5.5rem;
  }
}

.c-section-title__ja {
  display: block;
  color: #222224;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
@media screen and (min-width: 761px) {
  .c-section-title__ja {
    font-size: 2rem;
    margin-top: 24px;
  }
}

.c-body-text {
  color: #222224;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
}
.c-body-text p + p {
  margin-top: 29px;
}
@media screen and (min-width: 761px) {
  .c-body-text {
    font-size: 1.5rem;
    text-align: left;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  height: 60px;
  -webkit-box-shadow: 0 1px 0 #E6E7EB;
          box-shadow: 0 1px 0 #E6E7EB;
}
@media screen and (min-width: 761px) {
  .l-header {
    height: 80px;
    -webkit-box-shadow: 0 4px 8px -4px rgba(233, 234, 238, 0.9);
            box-shadow: 0 4px 8px -4px rgba(233, 234, 238, 0.9);
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 18px 0 16px;
}
@media screen and (min-width: 761px) {
  .l-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.l-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  line-height: 1;
}
.l-header__logo img {
  display: block;
  width: auto;
  height: 29px;
}
@media screen and (min-width: 761px) {
  .l-header__logo img {
    height: 46px;
  }
}

.l-header__actions {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1px;
}
@media screen and (min-width: 761px) {
  .l-header__actions {
    gap: 10px;
  }
}

/**
 * ボタン（ログイン・マイページ / ご予約）
 *
 * SP: **60×60 のベタ塗りスクエア**。ヘッダーの高さ（60）と同じなので上下いっぱいに詰まる。
 *     アイコンが文字の上に乗る。
 * PC: 150×44 の pill。**アイコンは出さない。**
 *
 * ⚠️ 2026-08-28 に完成系（docs/design/common/header/header-sp.svg）へ合わせ直した。
 *    それまでは**アイコンが抜けていて、角丸8pxが付いていた**（ユーザー指摘）。
 *    完成系の矩形は `y=0 / height=60 / 角丸なし` なので、SPでは角丸を外している。
 *
 * 完成系の実測（ボタン内・上から）
 *   アイコン 16×16 … y 13.5–29.5
 *   ラベル   10px   … y 35.5–43.5（インクの範囲）
 * → アイコン16 + すき間4 + 行高13（10×1.3）= 33 を上下中央に置くと y13.5 から始まり一致する。
 */
.l-header__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 60px;
  height: 60px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.l-header__btn:hover, .l-header__btn:focus-visible {
  opacity: 0.85;
  color: #FFFFFF;
}
@media screen and (min-width: 761px) {
  .l-header__btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    width: 150px;
    height: 44px;
    border-radius: 9999px;
    font-size: 1.4rem;
  }
}

/**
 * ボタンのアイコン
 *
 * ⚠️ **PCには出さない。** 完成系のPCは文字だけの pill。
 *    中身は template-parts/header-icon.php（lucide の user / calendar-check）。
 */
.l-header__btn-icon {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 761px) {
  .l-header__btn-icon {
    display: none;
  }
}

.l-header__btn--login {
  background: #00A85F;
}

.l-header__btn--reserve {
  background: #EC6A4F;
}

.l-header__hamburger {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 18px;
  margin-left: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.l-header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222224;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}
.l-header__hamburger span:nth-child(1) {
  top: 0;
}
.l-header__hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__hamburger span:nth-child(3) {
  bottom: 0;
}
.l-header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 761px) {
  .l-header__hamburger {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .l-nav {
    position: fixed;
    inset: 60px 0 0;
    background: #FFFFFF;
    padding: 24px 16px;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    visibility: hidden;
  }
  .l-nav.is-open {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
  }
}
@media screen and (min-width: 761px) {
  .l-nav {
    margin-left: auto;
  }
}

.l-nav__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 761px) {
  .l-nav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
  }
}

@media screen and (max-width: 760px) {
  .l-nav__item {
    border-bottom: 1px solid #E6E7EB;
  }
}
.l-nav__item a {
  display: block;
  color: #222224;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 4px;
}
.l-nav__item a:hover, .l-nav__item a:focus-visible {
  color: #00A85F;
}
@media screen and (min-width: 761px) {
  .l-nav__item a {
    font-size: 1.4rem;
    padding: 0;
    white-space: nowrap;
  }
}

.l-nav__item--sub a {
  color: #666666;
}
@media screen and (min-width: 761px) {
  .l-nav__item--sub a {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 761px) {
  .l-header__inner .l-nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .l-header__inner .l-header__actions {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: 17px;
  }
}
section.p-mv {
  position: relative;
  background: #FFFFFF;
  padding: 24px 0 100px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  section.p-mv {
    padding: 40px 0 90px;
  }
}
section.p-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("../img/top/mv-decoration-sp.png");
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 761px) {
  section.p-mv::before {
    background-image: url("../img/top/mv-decoration.png");
    background-size: 1440px auto;
  }
}

.p-mv__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 761px) {
  .p-mv__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 94px;
  }
}

.p-mv__photo {
  width: 76.92%;
  margin: 0 auto;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 761px) {
  .p-mv__photo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 584px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0;
  }
}

.p-mv__swiper {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  .p-mv__swiper {
    border-radius: 16px;
  }
}

.p-mv__slide-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 300/218;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (min-width: 761px) {
  .p-mv__slide-img {
    aspect-ratio: 584/425;
    border-radius: 16px;
  }
}

.p-mv__swiper .p-mv__slide-img {
  border-radius: 0;
}

.p-mv__slide-link {
  display: block;
  overflow: hidden;
}
.p-mv__slide-link .p-mv__slide-img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-mv__slide-link:hover .p-mv__slide-img, .p-mv__slide-link:focus-visible .p-mv__slide-img {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
}
.p-mv__slide-link:focus-visible {
  outline: 3px solid #EC6A4F;
  outline-offset: -3px;
}

@media (prefers-reduced-motion: reduce) {
  .p-mv__slide-link .p-mv__slide-img {
    -webkit-transition: none;
    transition: none;
  }
  .p-mv__slide-link .p-mv__slide-img:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.p-mv__pagination {
  position: absolute;
  bottom: 8px;
  z-index: 2;
}
.p-mv__pagination .swiper-pagination-bullet {
  background: #FFFFFF;
  opacity: 0.6;
}
.p-mv__pagination .swiper-pagination-bullet-active {
  background: #EC6A4F;
  opacity: 1;
}

.p-mv__body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 41.5px;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-mv__body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.p-mv__lead {
  display: block;
  color: #222224;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 761px) {
  .p-mv__lead {
    font-size: 2.4rem;
  }
}

.p-mv__wordmark {
  display: block;
  width: 78.85%;
  height: auto;
  margin: 26px auto 0;
}
@media screen and (min-width: 761px) {
  .p-mv__wordmark {
    width: 452px;
    margin: 24px auto 0;
  }
}

.p-mv__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 216px;
  height: 44px;
  margin-top: 20px;
  border-radius: 9999px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-mv__cta:hover, .p-mv__cta:focus-visible {
  opacity: 0.85;
  color: #FFFFFF;
}
@media screen and (min-width: 761px) {
  .p-mv__cta {
    width: 300px;
    height: 54px;
    margin-top: 46px;
    font-size: 1.6rem;
  }
}

section.p-concept {
  position: relative;
  background: #FAFAFA;
  padding: 56px 0 52px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  section.p-concept {
    padding: 111px 0 120px;
  }
}
section.p-concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background-image: url("../img/top/concept-wave-sp.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
  pointer-events: none;
}
@media screen and (min-width: 761px) {
  section.p-concept::before {
    height: 106px;
    background-image: url("../img/top/concept-wave-pc.svg");
  }
}
section.p-concept::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 151px;
  width: 344px;
  height: 344px;
  background-image: url("../img/top/concept-dots.svg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 761px) {
  section.p-concept::after {
    display: block;
  }
}

.p-concept__deco-right {
  position: absolute;
  right: -163px;
  top: 37px;
  width: 311px;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 761px) {
  .p-concept__deco-right {
    right: 30px;
    top: 330px;
    width: 344px;
  }
}
.p-concept__deco-right img {
  display: block;
  width: 100%;
  height: auto;
}

.p-concept__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
@media screen and (min-width: 761px) {
  .p-concept__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media screen and (min-width: 761px) {
  .p-concept__title {
    margin-bottom: 55px;
  }
}

.p-concept__photo {
  width: 87.05%;
  margin: 14px auto 29px;
  -webkit-clip-path: url(#kpx-concept-blob);
          clip-path: url(#kpx-concept-blob);
}
@supports not ((-webkit-clip-path: url(#kpx-concept-blob)) or (clip-path: url(#kpx-concept-blob))) {
  .p-concept__photo {
    overflow: hidden;
    border-radius: 50%;
  }
}
.p-concept__photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 339.5/258.5;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 761px) {
  .p-concept__photo {
    width: 500px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0;
  }
  .p-concept__photo img {
    aspect-ratio: 500/382;
  }
}

@media screen and (min-width: 761px) {
  .p-concept__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 36px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 761px) {
  .p-concept__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 525px;
            flex: 0 1 525px;
  }
}

.p-concept__lead {
  margin: 0 0 24px;
  color: #E8735A;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 761px) {
  .p-concept__lead {
    margin-bottom: 28px;
    font-size: 2.8rem;
  }
}

section.p-news {
  position: relative;
  background: #FFFFFF;
  padding: 48px 0 56px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  section.p-news {
    padding: 71px 0 80px;
  }
}
section.p-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/news-deco.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.p-news__inner {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-news__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}

section.p-news--archive {
  padding: 32px 0 64px;
}
@media screen and (min-width: 761px) {
  section.p-news--archive {
    padding: 64px 0 96px;
  }
}

.p-news__nav-fallback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 16px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.p-news__nav-fallback a {
  color: #F25B36;
  font-size: 1.4rem;
  text-decoration: underline;
}

.p-news__filter {
  margin-top: 26px;
}
@media screen and (min-width: 761px) {
  .p-news__filter {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.c-select {
  position: relative;
}
.c-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #968C86;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.c-select__control {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 44px 0 28px;
  border: 0;
  border-radius: 9999px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 8px rgba(51, 51, 51, 0.12);
          box-shadow: 0 2px 8px rgba(51, 51, 51, 0.12);
  color: #968C86;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 48px;
  cursor: pointer;
}
.c-select__control:focus-visible {
  outline: 2px solid #EC6A4F;
  outline-offset: 2px;
}
@media screen and (min-width: 761px) {
  .c-select__control {
    width: 222px;
    height: 56px;
    line-height: 56px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.p-news__groups {
  margin-top: 24px;
  position: relative;
}
@media screen and (min-width: 761px) {
  .p-news__groups {
    margin-top: 32px;
  }
}

.p-news__group {
  display: none;
}
.p-news__group.is-active {
  display: block;
}

.p-news__empty {
  color: #333333;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 24px 0;
}

.c-pager {
  margin-top: 32px;
}
@media screen and (min-width: 761px) {
  .c-pager {
    margin-top: 48px;
  }
}
.c-pager .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-pager a,
.c-pager span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #EEEEEE;
  border-radius: 999px;
  background: #FFFFFF;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.c-pager a:hover,
.c-pager a:focus-visible {
  border-color: #EC6A4F;
  background: #EC6A4F;
  color: #FFFFFF;
}
.c-pager .current {
  border-color: #EC6A4F;
  background: #EC6A4F;
  color: #FFFFFF;
}
.c-pager .dots {
  border-color: transparent;
  background: transparent;
}

.p-news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 13px;
  border-radius: 16px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 8px rgba(51, 51, 51, 0.12);
          box-shadow: 0 2px 8px rgba(51, 51, 51, 0.12);
  color: #333333;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.p-news-card + .p-news-card {
  margin-top: 24px;
}
.p-news-card:hover, .p-news-card:focus-visible {
  color: #333333;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(51, 51, 51, 0.16);
          box-shadow: 0 6px 16px rgba(51, 51, 51, 0.16);
}
@media screen and (min-width: 761px) {
  .p-news-card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    padding: 25px;
  }
  .p-news-card + .p-news-card {
    margin-top: 10px;
  }
}

/**
 * サムネイルの枠
 *
 * ⚠️ **完成系は正方形**（SP 90×90 / PC 150×150）だったが、
 *    2026-08-28 に**4:3 に変えた**（ユーザー指示）。
 *    入稿を 4:3 にそろえた（→ include/post-images.php）のに枠が正方形のままで、
 *    横長の写真もロゴも**左右が切れて**いたため。
 *
 * **高さは完成系のまま、横を広げている**（90→120 / 150→200）。
 * 高さを縮める手もあるが、それだと画像が小さくなるだけで
 * 「切れて見えない」という元の不満は解消しない。
 * カードの高さも完成系のまま変わらない。
 */
.p-news-card__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 120px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  .p-news-card__thumb {
    width: 200px;
    height: 150px;
  }
}

.p-news-card__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.p-news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.p-news-card__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 4px;
  background: #F2F6F4;
  color: #4E9C7A;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.p-news-card__date {
  color: #666666;
  font-size: 1.3rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 761px) {
  .p-news-card__date {
    font-size: 1.4rem;
  }
}

.p-news-card__title {
  margin: 13px 0 0;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (min-width: 761px) {
  .p-news-card__title {
    margin-top: 15px;
    font-size: 2rem;
  }
}

.p-news-card__excerpt {
  margin: 6px 0 0;
  color: #333333;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 761px) {
  .p-news-card__excerpt {
    margin-top: 11px;
  }
}

.p-news__more {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-news__more {
    margin-top: 32px;
  }
}

.c-btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 215px;
  height: 45px;
  border: 1px solid #EC6A4F;
  border-radius: 9999px;
  background: #FFFFFF;
  color: #EC6A4F;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-btn-outline:hover, .c-btn-outline:focus-visible {
  background: #EC6A4F;
  color: #FFFFFF;
}

section.p-service {
  position: relative;
  background: #FFFFFF;
  padding: 49px 0 56px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  section.p-service {
    padding: 71px 0 80px;
  }
}
section.p-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 390/482;
  background-image: url("../img/top/service-deco-sp.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 761px) {
  section.p-service::before {
    aspect-ratio: 1440/361;
    background-image: url("../img/top/service-deco.png");
  }
}

.p-service__inner {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-service__inner {
    max-width: 1122px;
    margin: 0 auto;
    padding: 0;
  }
}

.p-service__title {
  text-align: left;
  margin-left: 17px;
  text-shadow: 0 4px 4px #FFFFFF;
}
@media screen and (min-width: 761px) {
  .p-service__title {
    text-align: center;
    margin-left: 0;
    text-shadow: none;
  }
}

.p-service__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 761px) {
  .p-service__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 24px;
    padding-top: 15px;
  }
}

.p-service-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 21px 34.5px;
  border: 3px solid;
  border-radius: 8px;
  text-decoration: none;
}
@media screen and (min-width: 761px) {
  .p-service-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
}
.p-service-card--play {
  border-color: #3AC5E7;
  background: #F5FCFE;
  -webkit-box-shadow: 4px 4px 0 #3AC5E7;
          box-shadow: 4px 4px 0 #3AC5E7;
}
.p-service-card--program {
  border-color: #9DC97E;
  background: #F8FBF5;
  -webkit-box-shadow: 4px 4px 0 #9DC97E;
          box-shadow: 4px 4px 0 #9DC97E;
}
.p-service-card--after {
  border-color: #FF8041;
  background: #FFFBF9;
  -webkit-box-shadow: 4px 4px 0 #FF8041;
          box-shadow: 4px 4px 0 #FF8041;
}

.p-service-card__title {
  margin: 0;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-service-card__body {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  color: #333333;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 761px) {
  .p-service-card__body {
    line-height: 1.7;
  }
}

.p-service-card__photo {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  .p-service-card__photo {
    margin-top: 17px;
  }
}

.p-service-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 283/147;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-card__action {
  margin-top: 16px;
  text-align: center;
}

section.p-facilities {
  position: relative;
  background: #FFFFFF;
  padding: 49px 0 49px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  section.p-facilities {
    padding: 71px 0 80px;
  }
}
section.p-facilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/facilities-deco.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media screen and (min-width: 761px) {
  section.p-facilities::before {
    display: block;
  }
}

.p-facilities__inner {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-facilities__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}

.p-facilities__title {
  text-align: left;
  margin-left: 8px;
  margin-bottom: 20px;
}
@media screen and (min-width: 761px) {
  .p-facilities__title {
    margin-left: 0;
    margin-bottom: 48px;
  }
}

/**
 * カード
 *
 * 🔴 **列は必ず `minmax(0, …)` で下限を切ること。**
 *
 *    grid の列の既定は `auto` で、これは「中身の max-content まで伸びてよい」という意味。
 *    地図は 1120px の写真なので、**列が1120pxまで膨らんでカードが画面からはみ出す**。
 *    `.main { overflow: hidden }`（旧CSS）で切られるため、横スクロールもできず
 *    ただ見切れる、という状態になる。
 *
 *    Chrome は幅を % 指定した画像の min-content を0として扱うので表に出ないが、
 *    **Safari は画像の実寸で見積もる**ため iPhone だけで発生した（2026-08-29 報告）。
 *    `minmax(0, 1fr)` にすると下限が0になり、どのブラウザでも枠に収まる。
 */
.p-facilities__card {
  position: relative;
  display: grid;
  grid-template-areas: "head" "map" "body" "dots";
  grid-template-columns: minmax(0, 1fr);
  padding: 24px;
  border-radius: 16px;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 8px rgba(51, 51, 51, 0.3);
          box-shadow: 2px 2px 8px rgba(51, 51, 51, 0.3);
}
@media screen and (min-width: 761px) {
  .p-facilities__card {
    grid-template-areas: "map head" "map body";
    grid-template-columns: 600px minmax(0, 1fr);
    grid-template-rows: -webkit-min-content 1fr;
    grid-template-rows: min-content 1fr;
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
    -ms-flex-line-pack: start;
        align-content: start;
    padding: 48px;
    margin-bottom: 55px;
  }
}

.p-facilities__map {
  grid-area: map;
  position: relative;
  aspect-ratio: 1120/1222;
  margin-top: 28px;
  min-width: 0;
  max-width: 100%;
}
@media screen and (min-width: 761px) {
  .p-facilities__map {
    -ms-flex-item-align: start;
        align-self: start;
    margin-top: 0;
  }
}

.p-facilities__map-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-facilities__pin {
  position: absolute;
  display: none;
  width: 32px;
  height: 42px;
  padding: 0;
  border: 0;
  background: none;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  cursor: default;
}
@media screen and (min-width: 761px) {
  .p-facilities__pin {
    width: 42px;
    height: 55px;
  }
}
.p-facilities__pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--kpx-pin-color, #F23131);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 38'%3E%3Cpath d='M14.5 38S29 20.5 29 14.5A14.5 14.5 0 1 0 0 14.5C0 20.5 14.5 38 14.5 38Z' fill='%23000'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 38'%3E%3Cpath d='M14.5 38S29 20.5 29 14.5A14.5 14.5 0 1 0 0 14.5C0 20.5 14.5 38 14.5 38Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.p-facilities__pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38.16%;
  width: 37.93%;
  aspect-ratio: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #FFFFFF;
}
.p-facilities__pin.is-active {
  display: block;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.p-facilities__heads {
  grid-area: head;
}
@media screen and (min-width: 761px) {
  .p-facilities__heads {
    margin: 90px 0 30px;
  }
}

.p-facilities__head {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin: 0;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-facilities__head.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 761px) {
  .p-facilities__head {
    font-size: 2.4rem;
  }
}
.p-facilities__head::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EC6A4F;
}

.p-facilities__bodies {
  grid-area: body;
  position: relative;
  min-width: 0;
}
@media screen and (min-width: 761px) {
  .p-facilities__bodies {
    -ms-flex-item-align: start;
        align-self: start;
  }
}

.p-facilities__bodies-stack {
  display: grid;
}

.p-facilities__body {
  grid-area: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  visibility: hidden;
}
.p-facilities__body.is-active {
  visibility: visible;
}

.p-facilities__text {
  margin: 12px 0 0;
  color: #333333;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 761px) {
  .p-facilities__text {
    margin-top: 20px;
    /**
     * ⚠️ **PCだけ中央そろえ**（2026-08-29 ユーザー指示）。
     *    左そろえだと、右カラムの左端から始まるので**写真より左**に出て、
     *    見出し（中央）とも揃わずに浮いて見えていた。
     *
     *    SPは左そろえのまま。画面が狭くて3行以上に折り返すので、
     *    中央そろえにすると行の左端がガタついて読みにくくなる。
     */
    text-align: center;
    line-height: 1.8;
  }
}

.p-facilities__text:empty {
  display: none;
}

.p-facilities__photo {
  position: relative;
  margin-top: 0;
  aspect-ratio: 502.1/318.5;
  -webkit-clip-path: url(#kpx-facility-blob);
          clip-path: url(#kpx-facility-blob);
}
@supports not ((-webkit-clip-path: url(#kpx-facility-blob)) or (clip-path: url(#kpx-facility-blob))) {
  .p-facilities__photo {
    overflow: hidden;
    border-radius: 24px;
  }
}

.p-facilities__photo-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-facilities__arrow {
  position: absolute;
  top: 0;
  margin-top: calc(31.71% - 16px);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 6px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px 6px rgba(51, 51, 51, 0.2);
  color: #333333;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.p-facilities__arrow:hover, .p-facilities__arrow:focus-visible {
  background: #F7F7F7;
}
.p-facilities__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.p-facilities__arrow--prev {
  left: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-facilities__arrow--prev::before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-right: 2px;
}
.p-facilities__arrow--next {
  right: 0;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}
.p-facilities__arrow--next::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 2px;
}

.p-facilities__dots {
  grid-area: dots;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  margin-top: 14px;
}
@media screen and (min-width: 761px) {
  .p-facilities__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -48px;
    margin-top: 0;
    gap: 7px;
  }
}

.p-facilities__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #D4D4D3;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.p-facilities__dot.is-active {
  background: #EC6A4F;
}
@media screen and (min-width: 761px) {
  .p-facilities__dot {
    width: 7px;
    height: 7px;
  }
}

section.p-workshop {
  position: relative;
  background: #FFFFFF;
  padding: 48px 0 56px;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  section.p-workshop {
    padding: 71px 0 80px;
  }
}
section.p-workshop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/318;
  background-image: url("../img/top/workshop-deco.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media screen and (min-width: 761px) {
  section.p-workshop::before {
    display: block;
  }
}

.p-workshop__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 761px) {
  .p-workshop__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.p-workshop__head {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-workshop__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}

.p-workshop__title {
  text-align: left;
  margin-left: 8px;
  margin-bottom: 20px;
}
@media screen and (min-width: 761px) {
  .p-workshop__title {
    margin-left: 0;
    margin-bottom: 47px;
  }
}

.p-workshop__carousel {
  position: relative;
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-workshop__carousel {
    padding: 0;
    overflow: visible;
  }
}
.p-workshop__carousel .swiper {
  overflow: hidden;
  padding-bottom: 5px;
  padding-right: 4px;
}

.p-workshop__slide {
  width: 320px;
  height: auto;
}
@media screen and (min-width: 761px) {
  .p-workshop__slide {
    width: 340px;
  }
}

.p-workshop-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 12px 22px 21px;
  border-radius: 8px;
  border: 1px solid #3AC5E7;
  background: #F5FCFE;
  -webkit-box-shadow: 3px 3px 0 #3AC5E7;
          box-shadow: 3px 3px 0 #3AC5E7;
  color: #333333;
  text-decoration: none;
}

.p-workshop-card__photo {
  aspect-ratio: 273.8/237.2;
  -webkit-clip-path: url(#kpx-workshop-blob);
          clip-path: url(#kpx-workshop-blob);
}
@supports not ((-webkit-clip-path: url(#kpx-workshop-blob)) or (clip-path: url(#kpx-workshop-blob))) {
  .p-workshop-card__photo {
    overflow: hidden;
    border-radius: 50%;
  }
}

.p-workshop-card__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**
 * カードの開催日
 *
 * ⚠️ 2026-08-28 に開催日を**自由入力**にしたので、
 *    「8月12日（火）・8月13日（水）」のように**日本語が入る**。
 *    以前の `$font-en`（数字向けの英字フォント）だと日本語が別のフォントに落ちて
 *    ちぐはぐに見えるので、本文と同じ丸ゴシックにした。
 *    ⚠️ 長く書かれても2行までで止める（カードの高さが揃わなくなるため）。
 */
.p-workshop-card__date {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 32px;
  color: #EC6A4F;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-workshop-card__title {
  margin: 6px 0 0;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 761px) {
  .p-workshop-card__title {
    margin-top: 10px;
  }
}

.p-workshop-card__excerpt {
  margin: 7px 0 0;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 761px) {
  .p-workshop-card__excerpt {
    margin-top: 11px;
  }
}

.p-workshop-card__action {
  margin-top: 8px;
  padding-top: 0;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-workshop-card__action {
    margin-top: 13px;
  }
}

.p-workshop-card__spacer {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
}

.p-workshop__arrows--pc {
  display: none;
}

.p-workshop__arrows--sp {
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  z-index: 2;
  pointer-events: none;
}

@media screen and (min-width: 761px) {
  .p-workshop__arrows--sp {
    display: none;
  }
  .p-workshop__arrows--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    position: static;
    margin-top: 9px;
  }
}
.p-workshop__arrow {
  position: absolute;
  top: 159px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 6px rgba(51, 51, 51, 0.2);
          box-shadow: 0 2px 6px rgba(51, 51, 51, 0.2);
  color: #333333;
  cursor: pointer;
  pointer-events: auto;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.p-workshop__arrow:hover, .p-workshop__arrow:focus-visible {
  background: #F7F7F7;
}
.p-workshop__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.p-workshop__arrow--prev {
  left: 0;
}
.p-workshop__arrow--prev::before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-right: 2px;
}
.p-workshop__arrow--next {
  right: 0;
}
.p-workshop__arrow--next::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 2px;
}
.p-workshop__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
@media screen and (min-width: 761px) {
  .p-workshop__arrow {
    position: static;
    width: 60px;
    height: 60px;
    margin-top: 0;
  }
  .p-workshop__arrow::before {
    width: 11px;
    height: 11px;
  }
}

.p-workshop__more {
  margin-top: 45px;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-workshop__more {
    margin-top: 48px;
  }
}

.c-btn-fill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 216px;
  height: 44px;
  border: 0;
  border-radius: 9999px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-btn-fill:hover, .c-btn-fill:focus-visible {
  opacity: 0.85;
  color: #FFFFFF;
}

.p-workshop__empty {
  padding: 24px 16px;
  color: #333333;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

section.p-workshop--archive {
  padding: 32px 0 64px;
}
@media screen and (min-width: 761px) {
  section.p-workshop--archive {
    padding: 64px 0 96px;
  }
}

.p-workshop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px 16px;
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-workshop__grid {
    gap: 40px 32px;
    padding: 0;
  }
}
.p-workshop__grid > .p-workshop-card {
  height: 100%;
}

section.p-ws-single {
  position: relative;
  background: #FFFFFF;
  padding: 16px 0 64px;
  overflow: hidden;
  /**
   * 背景装飾（2026-09-01 ユーザー指示で追加）
   *
   * 原本は docs/design/top/background1{,-sp}.png。**2倍で書き出されている**ので、
   * 等倍にすると PC 1440×802 / SP 391×212。
   * ✅ どちらも**透過PNG**なので、下の白地がそのまま透ける。
   *
   * 🔴 **SPとPCで素材を出し分ける。**縦横比が近いので同じに見えるが、
   *    SP版は図形の数が少なく、小さい画面でうるさくならないようにしてある。
   *    PC版をSPに縮めると図形が小さくなりすぎる。
   *
   * ⚠️ **縦に繰り返す。**この画面は本文の長さで高さが変わり、
   *    1枚ぶん（PCで802px）では下half が寂しくなるため。
   *    図形がまばらなので、繰り返してもうるさくならない。
   * ⚠️ `100% 100%` にはしない。素材と画面の縦横比が違うので**図形がつぶれる**。
   *    幅だけ合わせて縦は成り行きにする。
   */
}
@media screen and (min-width: 761px) {
  section.p-ws-single {
    padding: 24px 0 96px;
  }
}
section.p-ws-single::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/common/background1-sp.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 761px) {
  section.p-ws-single::before {
    background-image: url("../img/common/background1.png");
  }
}

.p-ws-single__inner {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-ws-single__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
  }
}

.p-ws-single__head {
  margin-top: 24px;
}
@media screen and (min-width: 761px) {
  .p-ws-single__head {
    margin-top: 32px;
  }
}

.p-ws-single__date {
  display: block;
  color: #EC6A4F;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-ws-single__title {
  margin: 6px 0 0;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .p-ws-single__title {
    font-size: 3.2rem;
  }
}

/**
 * 開催情報（時間・対象・定員・参加費・参加方法）。項目名と値を横に並べる
 *
 * ⚠️ **値は複数行になる**（2026-08-28 に自由入力にしたため）。
 *    「①11:00〜11:30 / ②14:00〜14:30」のような2行がふつうに入るので、
 *    行の高さを固定してはいけない。
 */
.p-ws-single__meta {
  margin: 20px 0 0;
  padding: 16px 20px;
  border: 1px solid #3AC5E7;
  border-radius: 8px;
  background: #F5FCFE;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-ws-single__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.p-ws-single__meta-row + .p-ws-single__meta-row {
  margin-top: 12px;
}
.p-ws-single__meta-row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5em;
          flex: 0 0 5em;
  color: #666666;
  font-weight: 700;
}
.p-ws-single__meta-row dd {
  margin: 0;
  min-width: 0;
  color: #333333;
}

/**
 * 本文の上の写真
 *
 * ⚠️ 以前は幅いっぱい（PCで800px）まで広げていて、**写真だけで画面が埋まっていた**
 *    （2026-08-28 ユーザー指摘）。PCでは 480px で止めて中央に置く。
 *    SPは画面が狭いので、いっぱいに広げたままでちょうどよい。
 */
.p-ws-single__photo {
  margin: 24px 0 0;
}
@media screen and (min-width: 761px) {
  .p-ws-single__photo {
    max-width: 480px;
    margin: 32px auto 0;
  }
}
.p-ws-single__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.p-ws-single__body {
  margin-top: 24px;
  color: #222224;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (min-width: 761px) {
  .p-ws-single__body {
    margin-top: 32px;
    font-size: 1.6rem;
  }
}
.p-ws-single__body p {
  margin: 0 0 1.5em;
}
.p-ws-single__body h2,
.p-ws-single__body h3 {
  margin: 2em 0 0.8em;
  color: #333333;
  font-weight: 700;
  line-height: 1.5;
}
.p-ws-single__body h2 {
  font-size: 2rem;
}
.p-ws-single__body h3 {
  font-size: 1.8rem;
}
.p-ws-single__body ul,
.p-ws-single__body ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}
.p-ws-single__body li {
  margin-bottom: 0.4em;
}
.p-ws-single__body a {
  color: #EC6A4F;
  text-decoration: underline;
}
.p-ws-single__body img {
  max-width: 100%;
  height: auto;
}

.p-ws-single__back {
  margin-top: 48px;
  text-align: center;
}

.l-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFFFFF;
  padding: 0;
}

.l-footer__main {
  padding: 24px;
}
@media screen and (min-width: 761px) {
  .l-footer__main {
    padding: 58px 0 36px;
  }
}

@media screen and (min-width: 761px) {
  .p-footer-main__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media screen and (min-width: 761px) {
  .p-footer-main__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-footer-main__logo {
  display: block;
  line-height: 1;
}
.p-footer-main__logo img {
  display: block;
  width: 100%;
  max-width: 342px;
  height: auto;
}
@media screen and (min-width: 761px) {
  .p-footer-main__logo img {
    max-width: none;
  }
}
@media screen and (min-width: 761px) {
  .p-footer-main__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
    width: 260px;
  }
}

.p-footer-main__desc {
  margin: 17px 0 0;
  color: #2C2826;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .p-footer-main__desc {
    margin: 0 0 0 56px;
    max-width: 730px;
    line-height: 1.8;
  }
}

.p-footer-main__actions {
  margin-top: 8px;
}
@media screen and (min-width: 761px) {
  .p-footer-main__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 35px;
  }
}

.p-footer-main__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 761px) {
  .p-footer-main__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}

.c-footer-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 260px;
  height: 44px;
  border-radius: 22px;
  border: 1px solid transparent;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 761px) {
  .c-footer-btn {
    width: 150px;
    height: 40px;
    border-radius: 20px;
  }
}

.c-footer-btn--reserve {
  background: #EC6A4F;
  border-color: #EC6A4F;
  color: #FFFFFF;
}
.c-footer-btn--reserve:hover {
  background: #FFFFFF;
  color: #EC6A4F;
}

.c-footer-btn--mypage {
  background: #FFFFFF;
  border-color: #EC6A4F;
  color: #EC6A4F;
}
.c-footer-btn--mypage:hover {
  background: #EC6A4F;
  color: #FFFFFF;
}

.p-footer-main__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  margin-top: 26px;
}
.p-footer-main__sns img {
  display: block;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 761px) {
  .p-footer-main__sns {
    margin: 0 0 0 32px;
    gap: 12px;
  }
}

.l-footer__nav {
  background: #EEEFF3;
  padding: 24px 0;
}
@media screen and (min-width: 1240px) {
  .l-footer__nav {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 0;
  }
}

@media screen and (min-width: 1240px) {
  .p-footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-footer-nav__item {
  border-bottom: 1px solid #E6E7EB;
}
.p-footer-nav__item + .p-footer-nav__item {
  margin-top: 10px;
}
@media screen and (min-width: 1240px) {
  .p-footer-nav__item {
    border-bottom: 0;
  }
  .p-footer-nav__item + .p-footer-nav__item {
    margin: 0 0 0 -1px;
    border-left: 1px solid #E6E7EB;
  }
}

.p-footer-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 51px;
  padding: 0 16px;
  color: #222224;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 1240px) {
  .p-footer-nav__link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6px;
    height: 57px;
    padding: 0 16px;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1240px) {
  .p-footer-nav__item:first-child .p-footer-nav__link {
    padding-left: 0;
  }
}

.p-footer-nav__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
}
.p-footer-nav__arrow svg {
  display: block;
}
@media screen and (min-width: 1240px) {
  .p-footer-nav__arrow {
    width: 5px;
    height: 9px;
  }
}

.l-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  background: #333333;
  color: #FFFFFF;
  line-height: 1;
  text-align: center;
}
.l-footer__copyright small {
  font-size: 1.1rem;
}
@media screen and (min-width: 761px) {
  .l-footer__copyright {
    height: 36px;
  }
}

.main.main--renewal {
  margin-top: 0;
}

.l-page-head {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 761px) {
  .l-page-head {
    padding-top: 56px;
    padding-bottom: 122px;
  }
}

.l-page-head__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .l-page-head__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.c-page-mv {
  position: relative;
  margin: 0 8px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 342/169.187;
}
@media screen and (min-width: 761px) {
  .c-page-mv {
    margin: 0;
    aspect-ratio: 1200/450;
  }
}

.c-page-mv__photo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page-mv__caption {
  position: absolute;
  top: 50%;
  left: var(--kpx-mv-caption-x, 48px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 761px) {
  .c-page-mv__caption {
    left: var(--kpx-mv-caption-x-pc, 206px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: calc(50% + 6px);
  }
}

@media screen and (max-width: 760px) {
  .c-page-mv__caption--badge-first .c-page-mv__badge {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 6px;
  }
  .c-page-mv__caption--badge-first .c-page-mv__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-page-mv__badge {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 15px;
  margin-top: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 761px) {
  .c-page-mv__badge {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 24px;
    margin: 0 0 20px;
    padding: 0 14px;
    font-size: 2rem;
  }
}

.c-page-mv__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 761px) {
  .c-page-mv__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 5.6rem;
    text-shadow: 12px 12px 7px rgba(255, 255, 255, 0.8);
  }
}

.c-breadcrumb {
  margin: 6px 8px 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .c-breadcrumb {
    margin: 24px 0 0;
    padding-left: 24px;
  }
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #333333;
}
.c-breadcrumb__list .c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  margin-right: 8px;
  color: #333333;
  font-weight: 700;
}

.c-breadcrumb__item::before {
  display: inline;
}
.c-breadcrumb__item a {
  color: #EC6A4F;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.c-breadcrumb__item a:hover {
  border-bottom-color: transparent;
}

.c-page-lead {
  margin-top: 24px;
}
@media screen and (min-width: 761px) {
  .c-page-lead {
    margin-top: 58px;
    text-align: center;
  }
}

.c-page-lead__head {
  margin: 0;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 761px) {
  .c-page-lead__head {
    font-size: 4.8rem;
    line-height: 1.28;
  }
}

.c-page-lead__sub {
  margin: 9px 0 0;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 761px) {
  .c-page-lead__sub {
    margin-top: 27px;
    font-size: 3.6rem;
    letter-spacing: 0.04em;
  }
}

.c-page-lead__title {
  margin: 0;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.13em;
  text-shadow: 0 4px 4px #FFFFFF;
}
@media screen and (min-width: 761px) {
  .c-page-lead__title {
    font-size: 5rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}

/**
 * リード見出しの色。ページごとのテーマカラー（TOPのSERVICEカードと同じ3色）
 *
 * 青・緑・橙は SERVICEカードの枠線の色をそのまま使う。
 * 遊び場の青と月額制プログラムの緑が**同じ明るさで対になる**（2026-08-29 ユーザー指定）。
 *
 * ⚠️ **どれも白地の文字としては薄い**（青も緑も コントラスト比 約1.9:1）。
 *    ただし50px（SP 34px）の太い見出しで、下に白の影も敷いてあるので読める。
 *    デザイン上そろえることを優先している。
 *    🔴 もっとはっきりさせたい場合は緑を `$c-green`（#00A85F）にする手がある。
 *       ただし青とのつり合いは崩れる。
 *
 * ⚠️ 一度 `$c-green`（#00A85F）にしたが、**ユーザー指定でカードの緑に戻した**
 *    （2026-08-29。「SERVICEカードの緑がいい」）。
 */
.c-page-lead__title--blue {
  color: #3AC5E7;
}

.c-page-lead__title--green {
  color: #9DC97E;
}

.c-page-lead__title--orange {
  color: #FF8041;
}

.c-page-lead__title--coral {
  color: #E8735A;
}

.c-page-lead__sub--blue {
  color: #3AC5E7;
}

.c-page-lead__sub--green {
  color: #9DC97E;
}

.c-page-lead__sub--orange {
  color: #FF8041;
}

.c-page-lead__sub--coral {
  color: #E8735A;
}

.c-page-lead__body {
  margin: 9px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .c-page-lead__body {
    max-width: 1160px;
    margin: 24px auto 0;
    font-size: 1.8rem;
    line-height: 1.667;
  }
}

.c-page-nav {
  margin-top: 23px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  background: #FFF9F2;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px #E6E7EB;
          box-shadow: 0 4px 8px #E6E7EB;
}
@media screen and (min-width: 761px) {
  .c-page-nav {
    margin-top: 48px;
  }
}

.c-page-nav__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: 32px;
  margin: 0;
  padding: 0 10px;
  background: #E8735A;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.c-page-nav__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
}

.c-page-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 761px) {
  .c-page-nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-page-nav__item {
  border-bottom: 1px solid #E6E7EB;
}
.c-page-nav__item:last-child {
  border-bottom: 0;
}
@media screen and (min-width: 761px) {
  .c-page-nav__item {
    border-bottom: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
}

.c-page-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  height: 45px;
  padding: 0 16px;
  color: #2C2826;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .c-page-nav__link {
    height: 40px;
  }
}

.c-page-nav__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  color: #F25B36;
}
.c-page-nav__arrow svg {
  display: block;
}

.c-cta-band {
  position: relative;
  overflow: hidden;
  padding: 24px 16px 25px;
  border: 1px solid #FFEFF4;
  border-radius: 8px;
  background: #EC6A4F;
  color: #FFFFFF;
  text-align: center;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 761px) {
  .c-cta-band {
    padding: 51px 20px 55px;
  }
}

.c-cta-band__deco {
  position: absolute;
  border-radius: 50%;
  background-image: -webkit-radial-gradient(circle, #FFEFF4 1.78px, transparent 1.88px), -webkit-radial-gradient(circle, #FFEFF4 1.78px, transparent 1.88px);
  background-image: radial-gradient(circle, #FFEFF4 1.78px, transparent 1.88px), radial-gradient(circle, #FFEFF4 1.78px, transparent 1.88px);
  background-position: 0 0, 4.445px 4.4px;
  background-size: 8.89px 8.8px;
  pointer-events: none;
}
@media screen and (min-width: 761px) {
  .c-cta-band__deco {
    background-image: -webkit-radial-gradient(circle, #FFEFF4 3.13px, transparent 3.23px), -webkit-radial-gradient(circle, #FFEFF4 3.13px, transparent 3.23px);
    background-image: radial-gradient(circle, #FFEFF4 3.13px, transparent 3.23px), radial-gradient(circle, #FFEFF4 3.13px, transparent 3.23px);
    background-position: 0 0, 7.82px 7.8px;
    background-size: 15.645px 15.6px;
  }
}

.c-cta-band__deco--tr {
  top: 0;
  right: -18px;
  width: 70px;
  height: 70px;
}
@media screen and (min-width: 761px) {
  .c-cta-band__deco--tr {
    top: -47px;
    right: 0;
    width: 249px;
    height: 249px;
  }
}

.c-cta-band__deco--bl {
  bottom: -18px;
  left: -55px;
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 761px) {
  .c-cta-band__deco--bl {
    bottom: auto;
    top: 91px;
    left: -13px;
    width: 169px;
    height: 169px;
  }
}

.c-cta-band__inner {
  position: relative;
}

.c-cta-band__title {
  margin: 0;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 761px) {
  .c-cta-band__title {
    font-size: 3.2rem;
  }
}

.c-cta-band__body {
  margin: 12px 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .c-cta-band__body {
    margin-top: 27px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.c-cta-band__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 25px;
}
@media screen and (min-width: 761px) {
  .c-cta-band__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 14px;
    margin-top: 33px;
  }
}

.c-cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 214px;
  max-width: 100%;
  height: 45px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.c-cta-btn--white {
  border-color: #EC6A4F;
  background: #FFFFFF;
  color: #F25B36;
}
.c-cta-btn--white:hover {
  background: #F25B36;
  color: #FFFFFF;
}

.c-cta-btn--orange {
  border-width: 2px;
  border-color: #E9EEF6;
  background: #F25B36;
  color: #FFFFFF;
}
.c-cta-btn--orange:hover {
  background: #FFFFFF;
  color: #F25B36;
}

section.p-pp-facilities {
  background: #FDECEC;
  scroll-margin-top: 60px;
  padding: 48px 0 24px;
}
@media screen and (min-width: 761px) {
  section.p-pp-facilities {
    padding: 63px 0 104px;
    scroll-margin-top: 80px;
  }
}

.p-pp-facilities__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-pp-facilities__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-pp-facilities__head {
  display: none;
}
@media screen and (min-width: 761px) {
  .p-pp-facilities__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 42px;
  }
}

.p-pp-facilities__title {
  text-align: left;
  margin: 0;
}
.p-pp-facilities__title .c-section-title__ja {
  font-size: 2.4rem;
  margin-top: 15px;
  letter-spacing: 0;
}

.p-pp-facilities__carousel {
  position: relative;
}
.p-pp-facilities__carousel .swiper {
  overflow: hidden;
  padding-bottom: 10px;
}

.p-pp-facilities__slide {
  width: 320px;
  height: auto;
}

.p-pp-fac-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 25px 25px 22px;
  border: 1px solid #EFEFEF;
  border-radius: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 8px rgba(255, 123, 47, 0.12);
          box-shadow: 0 2px 8px rgba(255, 123, 47, 0.12);
}

.p-pp-fac-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  margin: 0;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-pp-fac-card__title::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8735A;
}

.p-pp-fac-card__text {
  margin: 12px 0 15px;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
}
.p-pp-fac-card__text:empty {
  display: none;
}

/**
 * カードの写真
 *
 * ⚠️ **写真はカードの下端に寄せる**（`margin-top: auto`）。
 *    カルーセルのカードは**一番背の高いカードに高さが揃う**ので、
 *    写真を本文の直後に置くと、文章が短いカードは**下に大きな余白**ができ、
 *    しかもカードごとに写真の高さがバラバラになる。
 *    下端に寄せれば、余った分は本文と写真の間に入り、写真の位置は全カードで揃う。
 *    （TOPの施設マップでも同じ理由で同じことをしている → `_facilities.scss`）
 *
 *    2026-08-29 にプログラムゾーンの説明文が2段落になって余白が倍近くになり、
 *    目に見えて気になるようになったので入れた。
 *    本文 → 写真の最小の間隔（15px）は `.p-pp-fac-card__text` の margin-bottom で確保している。
 */
.p-pp-fac-card__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 0;
  overflow: hidden;
  margin-top: auto;
  aspect-ratio: 273.7/173.6;
  -webkit-clip-path: url(#kpx-facility-blob);
          clip-path: url(#kpx-facility-blob);
}
.p-pp-fac-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 761px) {
  .p-pp-facilities__arrows--sp {
    display: none;
  }
}

.p-pp-facilities__arrows--pc {
  display: none;
}
@media screen and (min-width: 761px) {
  .p-pp-facilities__arrows--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-top: 17px;
  }
}

.p-pp-fac-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #FFFFFF;
  color: #222224;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-pp-fac-arrow svg {
  display: block;
}
.p-pp-fac-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
@media screen and (min-width: 761px) {
  .p-pp-fac-arrow {
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

.p-pp-facilities__arrows--sp .p-pp-fac-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-pp-facilities__arrows--sp .p-pp-fac-arrow--prev {
  left: -14px;
}
.p-pp-facilities__arrows--sp .p-pp-fac-arrow--next {
  right: 25px;
}

.p-pp-facilities__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 2px;
  padding-left: 8px;
}
@media screen and (min-width: 761px) {
  .p-pp-facilities__dots {
    margin-top: 22px;
    padding-left: 4px;
  }
}
.p-pp-facilities__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0;
  border-radius: 50%;
  background: rgba(44, 40, 38, 0.2);
  opacity: 1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-pp-facilities__dots .swiper-pagination-bullet-active {
  background: #E8735A;
}

.p-pp-facilities__cta {
  margin-top: 48px;
}
@media screen and (min-width: 761px) {
  .p-pp-facilities__cta {
    margin-top: 72px;
  }
}

section.p-pp-price {
  scroll-margin-top: 60px;
  padding: 40px 0 0;
}
@media screen and (min-width: 761px) {
  section.p-pp-price {
    scroll-margin-top: 80px;
    padding: 71px 0 0;
  }
}

.p-pp-price__inner {
  padding: 0 20px;
}
@media screen and (min-width: 761px) {
  .p-pp-price__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-pp-price__title {
  margin: 0 0 25px;
}
.p-pp-price__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-pp-price__title {
    margin-bottom: 50px;
  }
  .p-pp-price__title .c-section-title__ja {
    font-size: 2.4rem;
    margin-top: 22px;
  }
}

.p-pp-price__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}
@media screen and (min-width: 761px) {
  .p-pp-price__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

.p-pp-price__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 5px;
  margin: 0 0 14px;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 761px) {
  .p-pp-price__label {
    gap: 6px 9px;
    margin-bottom: 24px;
    font-size: 2.8rem;
  }
}

/**
 * 見出しに添える小さい一言
 *
 * 2026-08-31 ユーザー指示で追加（完成系カンプには無い）。
 * いまは「平日パスポート」の**6か月間平日通い放題のお得なパスポート**だけ。
 *
 * 見出しより一段小さくする。SPは 20 → 14 / PCは 28 → 18。
 * ⚠️ SPでは幅が足りず**次の行に回る**（親の flex-wrap）。
 *    「平日パスポート」7文字で約140px、この一言は18文字で約252px あり、
 *    枠(350)には並ばないため。PC(584)は同じ行に収まる。
 */
.p-pp-price__label-sub {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 761px) {
  .p-pp-price__label-sub {
    font-size: 1.8rem;
  }
}

.c-price-badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 761px) {
  .c-price-badge {
    height: 34px;
    padding: 0 17px;
    font-size: 1.7rem;
  }
}

.c-price-badge--weekday {
  background: #57BFEC;
}

.c-price-badge--holiday {
  background: #E8735A;
}

.c-price-badge--both {
  background: #798DF3;
}

.c-price-table {
  overflow: hidden;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}
.c-price-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.c-price-table__head th {
  height: 28px;
  padding: 0 8px;
  background: #45C9C1;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  vertical-align: middle;
}

.c-price-row + .c-price-row > * {
  border-top: 1px solid #EEEEEE;
}

.c-price-row > th {
  width: 100px;
  padding: 6px 4px;
  border-right: 1px solid #EEEEEE;
  background: #FFF9F3;
  color: #333333;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
.c-price-row > th small {
  display: block;
  margin-top: 2px;
  color: #666666;
  font-size: 1rem;
  line-height: 1.2;
}

.c-price-row > td {
  height: 36px;
  padding: 6px 9px 6px 8px;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: right;
  vertical-align: middle;
}

.c-price-row--amount > th,
.c-price-row--amount > td {
  height: 52px;
}

.c-price-yen {
  color: #FF1216;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.c-price-yen small {
  font-size: 1.3rem;
  font-weight: 700;
}

.c-price-free {
  color: #FF1216;
  font-size: 1.4rem;
  font-weight: 700;
}

.c-price-note {
  margin: 13px 0 0;
  color: #999999;
  font-size: 1.2rem;
  line-height: 1.5;
  word-break: auto-phrase;
}
@media screen and (min-width: 761px) {
  .c-price-note {
    margin-top: 25px;
  }
}

.c-price-info {
  margin-top: 15px;
  padding: 11px 14px 14px;
  border: 2px solid #45C9C1;
  border-radius: 8px;
  background: #F4FBFA;
}

.c-price-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
  color: #45C9C1;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.c-price-info__title svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
}

.c-price-info__body {
  margin: 13px 0 0 12px;
  color: #666666;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-price-info__body p {
  margin: 0;
}

/**
 * 料金ブロックの申込ボタン
 *
 * ✅ 2026-08-29 に追加。**完成系カンプには無い**。
 *    旧サイトの「料金のご案内」ページ（page-price.php）にあった
 *    「『団体利用』の申込フォーム」のボタンを、同じ位置（表と注記の下）に戻したもの。
 *    いまは団体利用のブロックだけが持っている。
 *
 * 形は月額制プログラムの「体験申込はこちら」（.p-pg-class__btn）に揃えている。
 * ⚠️ あちらは 216px 固定だが、こちらは「団体利用のお申し込み」で10文字あるので 240px。
 */
.c-price-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  max-width: 100%;
  height: 44px;
  margin: 20px auto 0;
  border: 1px solid #EC6A4F;
  border-radius: 999px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-price-btn:hover, .c-price-btn:focus-visible {
  background: #FFFFFF;
  color: #EC6A4F;
}
@media screen and (min-width: 761px) {
  .c-price-btn {
    margin-top: 24px;
  }
}

.p-pp-price__cta {
  margin-top: 45px;
  padding-bottom: 24px;
}
@media screen and (min-width: 761px) {
  .p-pp-price__cta {
    margin-top: 60px;
    padding-bottom: 80px;
  }
}

section.p-pp-guide {
  background: #EDFCFF;
  scroll-margin-top: 60px;
  padding: 40px 0 24px;
}
@media screen and (min-width: 761px) {
  section.p-pp-guide {
    scroll-margin-top: 80px;
    padding: 71px 0 80px;
  }
}

.p-pp-guide__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-pp-guide__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-pp-guide__title {
  margin: 0 0 20px;
}
.p-pp-guide__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-pp-guide__title {
    margin-bottom: 50px;
  }
  .p-pp-guide__title .c-section-title__ja {
    font-size: 2.4rem;
    margin-top: 22px;
  }
}

.c-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 3px solid #3AC5E7;
}
@media screen and (min-width: 761px) {
  .c-tabs__list {
    display: none;
  }
}

.c-tabs__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 43px;
  padding: 0 15px;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: #EEEEEE;
  color: #666666;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-tabs__btn.is-active {
  background: #3AC5E7;
  color: #FFFFFF;
}

.c-tabs__head {
  display: none;
}
@media screen and (min-width: 761px) {
  .c-tabs__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 62px;
    margin: 0;
    padding: 0 20px;
    background: #3AC5E7;
    color: #FFFFFF;
    font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
  }
}

.c-tabs__panel {
  border-radius: 0 0 8px 8px;
  background: #FFFFFF;
}
.c-tabs__panel[hidden] {
  display: none;
}
@media screen and (min-width: 761px) {
  .c-tabs__panel {
    overflow: hidden;
    border-radius: 8px;
  }
  .c-tabs__panel[hidden] {
    display: block;
  }
  .c-tabs__panel.c-tabs__panel--stack + .c-tabs__panel--stack {
    margin-top: 56px;
  }
}

.c-tabs__body {
  padding: 16px;
}
@media screen and (min-width: 761px) {
  .c-tabs__body {
    padding: 23px 32px 32px;
  }
}

.c-guide-table {
  overflow: hidden;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  background: #FFFFFF;
}
@media screen and (min-width: 761px) {
  .c-guide-table {
    margin-top: 9px;
  }
}
.c-guide-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.c-guide-table th,
.c-guide-table td {
  padding: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 761px) {
  .c-guide-table th,
  .c-guide-table td {
    padding: 16px;
  }
}
.c-guide-table th,
.c-guide-table td,
.c-guide-table td p,
.c-guide-table td li {
  font-size: 1.3rem;
  line-height: 1.8;
}
.c-guide-table th {
  width: 100px;
  color: #45C9C1;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 761px) {
  .c-guide-table th {
    width: 136px;
    padding-right: 0;
  }
}
.c-guide-table td {
  color: #333333;
}
.c-guide-table td p {
  margin: 0;
}
.c-guide-table tr + tr > * {
  border-top: 1px solid #EEEEEE;
}

.c-guide-dots {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-guide-dots li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-guide-dots li::before {
  content: "・";
}

.c-guide-notes {
  margin-top: 12px;
}
@media screen and (min-width: 761px) {
  .c-guide-notes {
    margin-top: 32px;
  }
}

.c-guide-note + .c-guide-note {
  margin-top: 12px;
}
@media screen and (min-width: 761px) {
  .c-guide-note + .c-guide-note {
    margin-top: 34px;
  }
}

.c-guide-note__title {
  margin: 0;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-guide-note__body {
  margin: 12px 0 0;
  color: #666666;
  font-size: 1.3rem;
  line-height: 1.75;
}

.c-guide-sub + .c-guide-sub {
  margin-top: 8px;
}
@media screen and (min-width: 761px) {
  .c-guide-sub + .c-guide-sub {
    margin-top: 23px;
  }
}

.c-guide-sub__title {
  margin: 0;
  padding: 10px 0 5px 13px;
  border-bottom: 3px solid #3AC5E7;
  color: #222224;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 761px) {
  .c-guide-sub__title {
    padding: 14px 0 9px 13px;
  }
}

.c-guide-sub__list {
  margin: 12px 0 0;
  color: #333333;
}
@media screen and (min-width: 761px) {
  .c-guide-sub__list {
    margin-top: 24px;
  }
}

.c-guide-sub__body {
  margin: 12px 0 0;
  color: #333333;
}
@media screen and (min-width: 761px) {
  .c-guide-sub__body {
    margin-top: 24px;
  }
}

.c-guide-sub__list li {
  font-size: 1.4rem;
  line-height: 1.7;
}

.c-guide-sub__body p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.c-guide-sub__list {
  list-style: disc;
  padding-left: 20px;
}
.c-guide-sub__list li {
  margin: 0;
}

.c-guide-sub__body p {
  margin: 0;
}
.c-guide-sub__body p + p {
  margin-top: 22px;
}

.l-page-head--afterschool {
  padding-bottom: 24px;
}
@media screen and (min-width: 761px) {
  .l-page-head--afterschool {
    padding-bottom: 32px;
  }
}
.l-page-head--afterschool .c-page-nav {
  margin-top: 48px;
}
@media screen and (min-width: 761px) {
  .l-page-head--afterschool .c-page-nav {
    margin-top: 92px;
  }
}
.l-page-head--afterschool .c-page-nav__link {
  height: 40px;
}
@media screen and (min-width: 761px) {
  .l-page-head--afterschool .c-page-lead {
    margin-top: 64px;
  }
}

.p-as-strength {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 761px) {
  .p-as-strength {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 968px;
    margin: 60px auto 0;
  }
}

.p-as-strength__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 158px;
  padding: 12px;
  border: 1px solid #FFEFF4;
  border-radius: 8px;
  background: #FFFFFF;
  text-align: center;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 761px) {
  .p-as-strength__item {
    min-height: 180px;
  }
}

.p-as-strength__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.p-as-strength__icon img {
  display: block;
}

.p-as-strength__icon--think {
  background: #EC6A4F;
}

.p-as-strength__icon--challenge {
  background: #6CC6EA;
}

.p-as-strength__icon--cooperate {
  background: #45C8C0;
}

.p-as-strength__icon--create {
  background: #00A85F;
}

.p-as-strength__icon--confidence {
  background: #F481C1;
}

.p-as-strength__icon--express {
  background: #FFB907;
}

.p-as-strength__title {
  margin: 8px 0 0;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-as-strength__text {
  margin: 6px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
}

section.p-as-feature {
  background: #FFF3F3;
  scroll-margin-top: 60px;
  padding: 40px 0 93px;
}
@media screen and (min-width: 761px) {
  section.p-as-feature {
    scroll-margin-top: 80px;
    padding: 71px 0 80px;
  }
}

.p-as-feature__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-as-feature__inner {
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-as-feature__title {
  margin: 0 0 20px;
}
.p-as-feature__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-as-feature__title {
    margin-bottom: 42px;
  }
  .p-as-feature__title .c-section-title__ja {
    font-size: 2.4rem;
    margin-top: 22px;
  }
}

.p-as-feature__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 761px) {
  .p-as-feature__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 36px;
  }
}
@media screen and (min-width: 761px) {
  .p-as-feature__list > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    width: 100%;
    max-width: 686px;
    margin: 0 auto;
  }
}

.p-as-feature-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #FFFFFF;
}

.p-as-feature-card__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}
.p-as-feature-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-as-feature-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.p-as-feature-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.p-as-feature-card__num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #FFEEEB;
  color: #EC6A4F;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.p-as-feature-card__title {
  margin: 0;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-as-feature-card__text {
  margin: 8px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.65;
}

section.p-as-schedule {
  scroll-margin-top: 60px;
  padding: 40px 0 0;
}
@media screen and (min-width: 761px) {
  section.p-as-schedule {
    scroll-margin-top: 80px;
    padding: 71px 0 0;
  }
}

.p-as-schedule__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-as-schedule__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-as-schedule__title {
  margin: 0 0 24px;
}
.p-as-schedule__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-as-schedule__title {
    margin-bottom: 46px;
  }
  .p-as-schedule__title .c-section-title__ja {
    font-size: 2rem;
    margin-top: 24px;
  }
}

@media screen and (min-width: 761px) {
  .p-as-schedule__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 761px) {
  .p-as-schedule__tabs .c-tabs__head {
    height: 78px;
    padding: 0 25px;
  }
}
.p-as-schedule__tabs .c-tabs__panel {
  border-radius: 0;
  background: none;
}
@media screen and (min-width: 761px) {
  .p-as-schedule__tabs .c-tabs__panel {
    border-radius: 0;
    overflow: visible;
  }
}
.p-as-schedule__tabs .c-tabs__body {
  padding: 24px 0 0;
}
@media screen and (min-width: 761px) {
  .p-as-schedule__tabs .c-tabs__body {
    padding: 0;
  }
}

.p-as-sched {
  border: 1px solid #3AC5E7;
  padding: 18px 11px 26px;
}

.p-as-sched__hours {
  margin: 0 0 22px;
  color: #FF1216;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-as-sched__hours {
    margin-bottom: 38px;
  }
}

.p-as-sched__group {
  overflow: hidden;
  border: 1px solid #EFEFEF;
  border-radius: 8px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 8px rgba(51, 51, 51, 0.12);
          box-shadow: 0 2px 8px rgba(51, 51, 51, 0.12);
}
.p-as-sched__group + .p-as-sched__group {
  margin-top: 12px;
}

.p-as-sched__slot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  padding: 6px 17px;
}
@media screen and (min-width: 761px) {
  .p-as-sched__slot {
    min-height: 56px;
    padding: 8px 17px;
  }
}
.p-as-sched__slot + .p-as-sched__slot {
  border-top: 1px solid #EFEFEF;
}

.p-as-sched__time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 102px;
          flex: 0 0 102px;
  margin: 0;
  color: #3AC5E7;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-as-sched__act {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  margin: 0;
  color: #222224;
  font-size: 1.4rem;
  line-height: 1.5;
}

.p-as-sched__foot {
  margin: 15px 0 0;
  color: #999999;
  font-size: 1.1rem;
  line-height: 1.6;
}
.p-as-sched__foot + .p-as-sched__group {
  margin-top: 14px;
}

.p-as-sched-note {
  margin: 25px 0 0;
  padding: 24px 15px 18px;
  border: 2px dashed #FFD23F;
  border-radius: 7px;
  background: #FFF7E6;
}
.p-as-sched-note + .p-as-sched__group {
  margin-top: 17px;
}

.p-as-sched-note__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin: 0;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-as-sched-note__title svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
}

.p-as-sched-note__body {
  margin: 16px 0 0;
  color: #333333;
}
.p-as-sched-note__body p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.p-as-sched-target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin: 15px 0 0;
  padding: 12px 15px;
  border-radius: 8px;
  background: #FFFFFF;
}

.p-as-sched-target__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  padding-right: 15px;
  border-right: 1px solid #E6E7EB;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-as-sched-target__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.p-as-sched-target__body p {
  margin: 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
}

.p-as-sched-note__foot {
  margin: 14px 0 0;
  color: #999999;
  font-size: 1.1rem;
  line-height: 1.6;
}

.p-as-schedule__cta {
  margin-top: 25px;
  padding-bottom: 24px;
}
@media screen and (min-width: 761px) {
  .p-as-schedule__cta {
    margin-top: 48px;
    padding-bottom: 80px;
  }
}

.c-cta-band--as {
  padding: 27px 16px 24px;
}
@media screen and (min-width: 761px) {
  .c-cta-band--as {
    padding: 40px 20px 45px;
  }
}
.c-cta-band--as .c-cta-band__buttons {
  margin-top: 24px;
}
@media screen and (min-width: 761px) {
  .c-cta-band--as .c-cta-band__buttons {
    margin-top: 28px;
  }
}
.c-cta-band--as .c-cta-band__deco {
  opacity: 0.6;
}

section.p-as-curriculum {
  background: #E3F5FF;
  scroll-margin-top: 60px;
  padding: 40px 0 80px;
}
@media screen and (min-width: 761px) {
  section.p-as-curriculum {
    scroll-margin-top: 80px;
    padding: 71px 0 80px;
  }
}

.p-as-curriculum__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-as-curriculum__inner {
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-as-curriculum__title {
  margin: 0 0 20px;
}
.p-as-curriculum__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-as-curriculum__title {
    margin-bottom: 42px;
  }
  .p-as-curriculum__title .c-section-title__ja {
    font-size: 2.4rem;
    margin-top: 22px;
  }
}

.p-as-cur + .p-as-cur {
  margin-top: 48px;
}

.p-as-cur__label {
  margin: 0;
  padding: 14px 0 5px;
  border-bottom: 3px solid #3AC5E7;
  color: #222224;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 761px) {
  .p-as-cur__label {
    padding: 12px 0 1px;
    font-size: 3.2rem;
  }
}

.p-as-cur__intro {
  margin-top: 16px;
}
@media screen and (min-width: 761px) {
  .p-as-cur__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    margin-top: 32px;
  }
}

.p-as-cur__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 568/223.3;
}
@media screen and (min-width: 761px) {
  .p-as-cur__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 568px;
            flex: 0 0 568px;
  }
}
.p-as-cur__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-as-cur__desc {
  margin: 15px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (min-width: 761px) {
  .p-as-cur__desc {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
    margin: 0;
  }
}

.p-as-cur__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 19px;
}
@media screen and (min-width: 761px) {
  .p-as-cur__bar {
    margin-top: 24px;
  }
}

.p-as-cur__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4px;
  margin: 0;
  color: #222224;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (min-width: 761px) {
  .p-as-cur__count {
    font-size: 2.4rem;
  }
}

.p-as-cur__count-now {
  color: #3AC5E7;
  font-size: 2.4rem;
}
@media screen and (min-width: 761px) {
  .p-as-cur__count-now {
    font-size: 3.2rem;
  }
}

.p-as-cur__count-sep {
  color: #999999;
}

.p-as-cur__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.p-as-cur__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #FFFFFF;
  color: #222224;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8px rgba(34, 34, 36, 0.12);
          box-shadow: 0 2px 8px rgba(34, 34, 36, 0.12);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-as-cur__arrow svg {
  display: block;
}
.p-as-cur__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.p-as-cur__slide {
  width: 320px;
  height: auto;
}

.p-as-cur-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 348px;
  padding: 17px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #FFFFFF;
}

.p-as-cur-card__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 286.4/150;
}
.p-as-cur-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-as-cur-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #222224;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-as-cur-card__title::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3AC5E7;
}

.p-as-cur-card__text {
  margin: 13px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7;
}

section.p-as-price {
  scroll-margin-top: 60px;
  padding: 40px 0 48px;
}
@media screen and (min-width: 761px) {
  section.p-as-price {
    scroll-margin-top: 80px;
    padding: 71px 0 80px;
  }
}

.p-as-price__inner {
  padding: 0 20px;
}
@media screen and (min-width: 761px) {
  .p-as-price__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-as-price__title {
  margin: 0 0 20px;
}
.p-as-price__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-as-price__title {
    margin-bottom: 42px;
  }
  .p-as-price__title .c-section-title__ja {
    font-size: 2.4rem;
    margin-top: 22px;
  }
}

.p-as-price__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 761px) {
  .p-as-price__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-as-price-panel {
  overflow: hidden;
  border-radius: 8px;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.p-as-price-panel__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 65px;
  margin: 0;
  padding: 0 12px;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-as-price-panel__head--teal {
  background: #45C9C1;
}

.p-as-price-panel__head--sky {
  background: #3AC5E7;
}

.p-as-price-panel__body {
  padding: 12px 12px 24px;
}

.p-as-price__lead {
  margin: 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
}

.p-as-price__table {
  margin-top: 16px;
}
.p-as-price__table.c-price-table--sky .c-price-table__head th {
  background: #3AC5E7;
}

.c-price-note + .p-as-price__table {
  margin-top: 22px;
}

section.p-as-flow {
  background: #FFF3F3;
  scroll-margin-top: 60px;
  padding: 40px 0 80px;
}
@media screen and (min-width: 761px) {
  section.p-as-flow {
    scroll-margin-top: 80px;
    padding: 71px 0 80px;
  }
}

.p-as-flow__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-as-flow__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-as-flow__title {
  margin: 0 0 20px;
}
.p-as-flow__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-as-flow__title {
    margin-bottom: 20px;
  }
  .p-as-flow__title .c-section-title__ja {
    font-size: 2.4rem;
    margin-top: 22px;
  }
}

.p-as-flow__target {
  margin: 0;
  padding: 11px 0 5px;
  border-bottom: 3px solid #E8735A;
  color: #222224;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-as-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 18px 0 0;
  padding: 30px 0 0;
  list-style: none;
}
@media screen and (min-width: 761px) {
  .p-as-flow__list {
    gap: 48px 40px;
    margin-top: 15px;
  }
}

.p-as-flow-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 333px;
  max-width: 100%;
  border-radius: 8px;
  background: #FFFFFF;
}

.p-as-flow-card__num {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 51px;
  height: 51px;
  border: 1px solid #E8735A;
  border-radius: 50%;
  background: #FFFAFA;
  color: #E8735A;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.p-as-flow-card__num svg {
  display: block;
}

.p-as-flow-card__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 64px;
  margin: 0;
  padding: 0 12px;
  border-radius: 8px 8px 0 0;
  background: #E8735A;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-as-flow-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 15px 21px;
  border-radius: 0 0 8px 8px;
  background: #FFFFFF;
}

.p-as-flow-card__text {
  margin: 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7;
}

.p-as-flow-card__alert {
  margin: 0;
  color: #FF0606;
  font-size: 1.4rem;
  line-height: 1.7;
}

.p-as-flow-card__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 230px;
  max-width: 100%;
  height: 45px;
  margin: 8px auto;
  border: 1px solid #EC6A4F;
  border-radius: 999px;
  background: #FFFFFF;
  color: #EC6A4F;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-as-flow-card__btn:hover {
  background: #EC6A4F;
  color: #FFFFFF;
}

.p-as-flow-card--done .p-as-flow-card__num {
  border-color: #00A85F;
  color: #00A85F;
}
.p-as-flow-card--done .p-as-flow-card__label {
  background: #00A85F;
}
.p-as-flow-card--done .p-as-flow-card__body {
  background: #EDF8EE;
}
.p-as-flow-card--done .p-as-flow-card__text {
  color: #00A85F;
}

section.p-as-voice {
  scroll-margin-top: 60px;
  padding: 40px 0 60px;
}
@media screen and (min-width: 761px) {
  section.p-as-voice {
    scroll-margin-top: 80px;
    padding: 71px 0 84px;
  }
}

.p-as-voice__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-as-voice__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-as-voice__title {
  margin: 0 0 20px;
}
.p-as-voice__title .c-section-title__ja {
  font-size: 1.6rem;
  margin-top: 7px;
}
@media screen and (min-width: 761px) {
  .p-as-voice__title {
    margin-bottom: 42px;
  }
  .p-as-voice__title .c-section-title__ja {
    font-size: 2.4rem;
    margin-top: 22px;
  }
}

.p-as-voice__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 761px) {
  .p-as-voice__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.p-as-voice-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  padding: 16px 24px;
  border: 1px solid #E8735A;
  border-radius: 8px;
  background: #FFF9F2;
}

.p-as-voice-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 74px;
          flex: 0 0 74px;
}
.p-as-voice-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.p-as-voice-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.p-as-voice-card__lead {
  margin: 0;
  color: #222224;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-as-voice-card__text {
  margin: 17px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
}

.p-pg-class--sports {
  --kpx-pg-theme: #3AC5E7;
}

.p-pg-class--parkour {
  --kpx-pg-theme: #45C9C1;
}

.l-page-head--program {
  padding-bottom: 0;
}
@media screen and (min-width: 761px) {
  .l-page-head--program {
    padding-bottom: 0;
  }
}

section.p-pg-classes {
  padding: 24px 0 40px;
}
@media screen and (min-width: 761px) {
  section.p-pg-classes {
    padding: 77px 0 80px;
  }
}

.p-pg-classes__inner {
  padding: 0 16px;
}
@media screen and (min-width: 761px) {
  .p-pg-classes__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-pg-classes__inner > * + * {
  margin-top: 24px;
}
@media screen and (min-width: 761px) {
  .p-pg-classes__inner > * + * {
    margin-top: 64px;
  }
}

@media screen and (min-width: 761px) {
  .p-pg-classes__inner > .c-cta-band {
    margin-top: 40px;
  }
}

.p-pg-classes__inner > .p-pg-trial-note {
  margin-top: 16px;
}
@media screen and (min-width: 761px) {
  .p-pg-classes__inner > .p-pg-trial-note {
    margin-top: 14px;
  }
}

.p-pg-class {
  overflow: hidden;
  border-radius: 8px;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.p-pg-class__head {
  min-height: 117px;
  padding: 18px 12px 14px;
  background: var(--kpx-pg-theme);
  color: #FFFFFF;
}
@media screen and (min-width: 761px) {
  .p-pg-class__head {
    min-height: 160px;
    padding: 36px 40px 14px;
  }
}

.p-pg-class .p-pg-class__title {
  margin: 0;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-pg-class .p-pg-class__title {
    font-size: 3rem;
  }
}

.p-pg-class__rule {
  height: 1px;
  margin: 2px 0 0;
  border: 0;
  color: inherit;
  background: currentColor;
}
@media screen and (min-width: 761px) {
  .p-pg-class__rule {
    margin-top: 19px;
  }
}

.p-pg-class__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px 16px;
  margin-top: 19px;
}
@media screen and (min-width: 761px) {
  .p-pg-class__meta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px 24px;
    margin-top: 20px;
  }
}

.p-pg-class__entry {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.p-pg-class__entry span {
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 761px) {
  .p-pg-class__entry {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-pg-class__entry {
    text-align: left;
  }
  .p-pg-class__entry::before {
    content: "/";
    margin-right: 24px;
  }
}

.p-pg-class__day {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 761px) {
  .p-pg-class__day {
    font-size: 1.8rem;
  }
}

/**
 * 月会費
 *
 * ✅ **2026-08-28: 完成系の数字は Montserrat だと実測で確定した**（#054 解決）。
 *    「丸ゴシックより横幅の広い別フォント」の正体がこれ。
 *
 *      28px のときの 1桁の送り ÷ インクの高さ
 *        完成系          0.936（送り19 / 高さ20.3）
 *        Montserrat      0.900  ← ほぼ一致
 *        Zen Maru Gothic 0.675  ← 合わない
 *
 *    ⚠️ 「円」は日本語なので **`<small>` だけ丸ゴシックに戻す**。
 *       ここを外すと「円」が端末まかせのフォントになる。
 */
.p-pg-class__fee {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.p-pg-class__fee small {
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.p-pg-class__body {
  padding: 12px 12px 24px;
}
@media screen and (min-width: 761px) {
  .p-pg-class__body {
    padding: 32px 12px 32px;
  }
}

@media screen and (min-width: 761px) {
  .p-pg-class__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-pg-class__photo {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 326/147;
}
@media screen and (min-width: 761px) {
  .p-pg-class__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 12px);
            flex: 0 0 calc(50% - 12px);
    aspect-ratio: 576/250;
  }
}
.p-pg-class__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 761px) {
  .p-pg-class__desc {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
}

.p-pg-class__lead {
  margin: 12px 0 0;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.39;
}
@media screen and (min-width: 761px) {
  .p-pg-class__lead {
    margin-top: 0;
  }
}

.p-pg-class__text {
  margin: 14px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
}
.p-pg-class__text:first-child {
  margin-top: 16px;
}
@media screen and (min-width: 761px) {
  .p-pg-class__text:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 761px) {
  .p-pg-class__text {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.p-pg-class__note {
  margin: 24px 0 0;
  color: #999999;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .p-pg-class__note {
    margin-top: 32px;
    text-align: center;
  }
}

.p-pg-class__cols {
  margin-top: 30px;
}
@media screen and (min-width: 761px) {
  .p-pg-class__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 72px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 47px;
    padding: 0 12px;
  }
}

.p-pg-class__col + .p-pg-class__col {
  margin-top: 35px;
}
@media screen and (min-width: 761px) {
  .p-pg-class__col + .p-pg-class__col {
    margin-top: 0;
  }
}

.p-pg-class__subtitle {
  margin: 0;
  padding: 0 0 4px 12px;
  border-bottom: 3px solid var(--kpx-pg-theme);
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 761px) {
  .p-pg-class__subtitle {
    padding: 0 0 10px 16px;
    font-size: 2.4rem;
  }
}

.p-pg-voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 13px;
  padding: 24px 16px 24px 24px;
  border: 1px solid rgba(232, 115, 90, 0.16);
  border-radius: 8px;
  background: #FFF9F2;
}
@media screen and (min-width: 761px) {
  .p-pg-voice {
    margin-top: 24px;
  }
}

.p-pg-voice__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 74px;
          flex: 0 0 74px;
  width: 74px;
  height: 74px;
}
.p-pg-voice__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-pg-voice__text {
  margin: 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.457;
}

.p-pg-sched {
  overflow: hidden;
  margin-top: 13px;
  border: 1px solid rgba(238, 238, 238, 0.9);
  border-radius: 12px;
}
@media screen and (min-width: 761px) {
  .p-pg-sched {
    margin-top: 24px;
  }
}

.p-pg-sched__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  min-height: 67px;
  padding-left: 10px;
}
.p-pg-sched__row + .p-pg-sched__row {
  border-top: 1px solid rgba(238, 238, 238, 0.9);
}

/**
 * 時刻
 *
 * 🔴 完成系は「時刻の左端10 → クラス名の左端110」で枠が100だったが、
 *    実装のフォント（Noto Sans）は完成系より字幅が広く、「14:00〜15:00」で約96px ある。
 *    100の枠に左寄せだと右が4pxしか空かず、クラス名にくっついて見えていた
 *    → 2026-08-29 ユーザー指摘「時間と文字のすきま／少し隙間作って」
 *
 *    枠を104に広げ、隙間は行の gap（18）で作る。
 *    さらに **右寄せ** にして、パルクールの「9:30〜10:30」のように1桁の時刻がある行でも
 *    隙間が広がらないようにした（左寄せだとこの行だけ約9px 空きが増えて不揃いに見える）。
 */
.p-pg-sched__time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 104px;
          flex: 0 0 104px;
  color: var(--kpx-pg-theme);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.p-pg-sched__class {
  margin: 0;
  color: #333333;
  font-size: 1.3rem;
  line-height: 1.77;
}
.p-pg-sched__class span {
  display: block;
}

.p-pg-sched__notes {
  margin: 12px 0 0;
  color: #999999;
  font-size: 1.2rem;
  line-height: 1.5;
}
.p-pg-sched__notes + .p-pg-sched__notes {
  margin-top: 18px;
}

.p-pg-class__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 216px;
  max-width: 100%;
  height: 44px;
  margin: 23px auto 0;
  border: 1px solid #EC6A4F;
  border-radius: 999px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-pg-class__btn:hover {
  background: #FFFFFF;
  color: #EC6A4F;
}
@media screen and (min-width: 761px) {
  .p-pg-class__btn {
    margin-top: 26px;
  }
}

.p-pg-fee {
  padding: 16px;
  border: 1px dashed #FF4B4E;
  border-radius: 8px;
  background: #FFFFFF;
}

.p-pg-fee__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
}
.p-pg-fee__head img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
}
.p-pg-fee__head b {
  font-weight: 700;
}

.p-pg-fee__body {
  margin: 24px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7;
}
.p-pg-fee__body + .p-pg-fee__body {
  margin-top: 24px;
}

@media screen and (min-width: 761px) {
  .c-cta-band--program {
    padding: 44px 20px 45px;
  }
  .c-cta-band--program .c-cta-band__buttons {
    margin-top: 26px;
  }
}

.p-pg-trial-note {
  margin: 16px 0 0;
  color: #999999;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 761px) {
  .p-pg-trial-note {
    margin-top: 14px;
  }
}

.p-faq-group {
  --kpx-faq-color: #9DC97E;
  --kpx-faq-bg: #F8FBF5;
}

section.p-faq {
  padding: 28px 0 40px;
}
@media screen and (min-width: 761px) {
  section.p-faq {
    padding: 68px 0 80px;
  }
}

.p-faq__inner {
  padding: 0 24px;
}
@media screen and (min-width: 761px) {
  .p-faq__inner {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.p-faq__head {
  margin: 0;
  text-align: center;
}

.p-faq__en {
  display: block;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 761px) {
  .p-faq__en {
    font-size: 7.5rem;
  }
}

.p-faq__ja {
  display: block;
  margin-top: 0;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 761px) {
  .p-faq__ja {
    margin-top: 1px;
    font-size: 2.8rem;
  }
}

.p-faq__groups {
  margin-top: 30px;
}
@media screen and (min-width: 761px) {
  .p-faq__groups {
    margin-top: 75px;
  }
}

.p-faq-group + .p-faq-group {
  margin-top: 33px;
}
@media screen and (min-width: 761px) {
  .p-faq-group + .p-faq-group {
    margin-top: 59px;
  }
}

.p-faq-group .p-faq-group__title {
  margin: 0;
  padding: 0 0 4px 12px;
  border-bottom: 3px solid var(--kpx-faq-color);
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-faq-group__list {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 761px) {
  .p-faq-group__list {
    margin-top: 25px;
  }
}

.p-faq-group__item + .p-faq-group__item {
  margin-top: 10px;
}
@media screen and (min-width: 761px) {
  .p-faq-group__item + .p-faq-group__item {
    margin-top: 25px;
  }
}

.p-faq-item {
  padding: 16px;
  border: 1px solid rgba(139, 90, 43, 0.15);
  border-radius: 16px;
  background: #FFFFFF;
}
@media screen and (min-width: 761px) {
  .p-faq-item {
    padding: 22px;
  }
}

.p-faq-item__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: #333333;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.43;
  text-align: left;
  cursor: pointer;
}

.p-faq-item__badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 761px) {
  .p-faq-item__badge {
    width: 46px;
    height: 46px;
    font-size: 2.2rem;
  }
}

.p-faq-item__badge--q {
  background: var(--kpx-faq-bg);
  color: var(--kpx-faq-color);
}

.p-faq-item__badge--a {
  background: var(--kpx-faq-color);
  color: #FFFFFF;
}

.p-faq-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.p-faq-item__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9px;
  height: 6px;
  color: #6B6C6F;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (min-width: 761px) {
  .p-faq-item__arrow {
    width: 14px;
    height: 8px;
  }
}
.p-faq-item__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-faq-item__q[aria-expanded=true] .p-faq-item__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-faq-item__panel {
  overflow: hidden;
  -webkit-transition: height 0.25s ease;
  transition: height 0.25s ease;
}

.p-faq-item__panel[hidden] {
  display: none;
}

.p-faq-item__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.43;
  /**
   * 答えの中のリンク（2026-08-28 入稿の体験申込みフォーム）。
   * URLをそのまま出しているので、SP幅で枠からはみ出さないよう折り返しを許す。
   */
}
@media screen and (min-width: 761px) {
  .p-faq-item__a {
    margin-top: 22px;
  }
}
.p-faq-item__a p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.43;
}
.p-faq-item__a a {
  color: inherit;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.p-faq-item__a a:hover, .p-faq-item__a a:focus-visible {
  opacity: 0.7;
}

section.p-member {
  padding: 28px 0 48px;
}
@media screen and (min-width: 761px) {
  section.p-member {
    padding: 68px 0 96px;
  }
}

.p-member__inner {
  padding: 0 24px;
}
@media screen and (min-width: 761px) {
  .p-member__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media screen and (min-width: 761px) {
  .p-member__inner--wide {
    max-width: 880px;
  }
}

.p-member__head {
  margin: 0;
  text-align: center;
}

.p-member__en {
  display: block;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 761px) {
  .p-member__en {
    font-size: 5.6rem;
  }
}

.p-member__ja {
  display: block;
  margin-top: 6px;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 761px) {
  .p-member__ja {
    margin-top: 8px;
    font-size: 2rem;
  }
}

.p-member__lead {
  margin: 20px 0 0;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-member__lead {
    margin-top: 28px;
    font-size: 1.6rem;
  }
}

.p-member-card {
  margin-top: 28px;
  padding: 24px 20px;
  border: 1px solid rgba(139, 90, 43, 0.15);
  border-radius: 16px;
  background: #FFFFFF;
}
@media screen and (min-width: 761px) {
  .p-member-card {
    margin-top: 40px;
    padding: 40px;
  }
}

.p-member-card + .p-member-card {
  margin-top: 20px;
}
@media screen and (min-width: 761px) {
  .p-member-card + .p-member-card {
    margin-top: 28px;
  }
}

.p-member-card__title {
  margin: 0 0 16px;
  padding: 0 0 4px 12px;
  border-bottom: 3px solid #3AC5E7;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 761px) {
  .p-member-card__title {
    margin-bottom: 24px;
    font-size: 2rem;
  }
}

.p-member-notice {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1.7;
}

.p-member-notice--error {
  border: 1px solid rgba(255, 75, 78, 0.4);
  background: #FFF5F5;
  color: #C8272B;
}

.p-member-notice--done {
  border: 1px solid rgba(0, 168, 95, 0.35);
  background: #EDF8EE;
  color: #0B7A45;
}

.p-member-form__row + .p-member-form__row {
  margin-top: 20px;
}

.p-member-form__label {
  display: block;
  margin-bottom: 6px;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-member-form__required {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  vertical-align: 2px;
}

.p-member-form__input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  background: #FFFFFF;
  color: #333333;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.5;
}
.p-member-form__input:focus {
  outline: 2px solid #3AC5E7;
  outline-offset: 1px;
}
.p-member-form__input::-webkit-input-placeholder {
  color: #968C86;
}
.p-member-form__input::-moz-placeholder {
  color: #968C86;
}
.p-member-form__input:-ms-input-placeholder {
  color: #968C86;
}
.p-member-form__input::-ms-input-placeholder {
  color: #968C86;
}
.p-member-form__input::placeholder {
  color: #968C86;
}

.p-member-form__password {
  position: relative;
}

.p-member-form__input--password {
  padding-right: 72px;
}

.p-member-form__reveal {
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  min-width: 56px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
  background: #FFF9F2;
  color: #2C2826;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}
.p-member-form__reveal:hover {
  background: #FFFFFF;
}
.p-member-form__reveal:focus-visible {
  outline: 2px solid #3AC5E7;
  outline-offset: 1px;
}
.p-member-form__reveal[aria-pressed=true] {
  border-color: #3AC5E7;
  background: #F5FCFE;
  color: #3AC5E7;
}

.p-member-form__select {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 34px 0 14px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23968C86' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  color: #333333;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.5;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.p-member-form__select:focus {
  outline: 2px solid #3AC5E7;
  outline-offset: 1px;
}

.p-member-form__textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  background: #FFFFFF;
  color: #333333;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.6;
  resize: vertical;
}
.p-member-form__textarea:focus {
  outline: 2px solid #3AC5E7;
  outline-offset: 1px;
}

.p-member-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.p-member-checks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-member-checks li + li {
  margin-top: 4px;
}

.p-member-checks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  min-height: 40px;
  padding: 8px 4px;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.5;
  cursor: pointer;
}
.p-member-checks__item input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
}

.p-member-form__note {
  margin: 6px 0 0;
  color: #666666;
  font-size: 1.2rem;
  line-height: 1.6;
}

.p-member-form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7;
}
.p-member-form__check input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.p-member-form__check a {
  color: #F25B36;
  text-decoration: underline;
}

.p-member-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 48px;
  margin: 28px auto 0;
  padding: 0 16px;
  border: 1px solid #EC6A4F;
  border-radius: 999px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-member-form__submit:hover {
  background: #FFFFFF;
  color: #EC6A4F;
}

.p-member-form__submit--quiet {
  border-color: #EEEEEE;
  background: #FFFFFF;
  color: #2C2826;
}
.p-member-form__submit--quiet:hover {
  background: #FFF9F2;
  color: #2C2826;
}

.p-member-links {
  margin: 24px 0 0;
  text-align: center;
}

.p-member-links li + li {
  margin-top: 10px;
}

.p-member-links a {
  color: #F25B36;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: underline;
}
.p-member-links a:hover {
  text-decoration: none;
}

.p-member-dl {
  margin: 0;
}
@media screen and (min-width: 761px) {
  .p-member-dl {
    display: grid;
    grid-template-columns: 160px 1fr;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 20px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.p-member-dl__key {
  color: #666666;
  font-size: 1.3rem;
  line-height: 1.6;
}
@media screen and (min-width: 761px) {
  .p-member-dl__key {
    font-size: 1.4rem;
  }
}

.p-member-dl__value {
  margin: 2px 0 0;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.6;
  word-break: break-all;
}
@media screen and (min-width: 761px) {
  .p-member-dl__value {
    margin-top: 0;
    font-size: 1.6rem;
  }
}

.p-member-dl__key + .p-member-dl__value + .p-member-dl__key {
  margin-top: 16px;
}
@media screen and (min-width: 761px) {
  .p-member-dl__key + .p-member-dl__value + .p-member-dl__key {
    margin-top: 0;
  }
}

.p-member-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 761px) {
  .p-member-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-member-actions__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 8px 20px;
  border: 1px solid #EC6A4F;
  border-radius: 999px;
  background: #EC6A4F;
  color: #FFFFFF;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-member-actions__btn:hover {
  background: #FFFFFF;
  color: #EC6A4F;
}
@media screen and (min-width: 761px) {
  .p-member-actions__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    font-size: 1.6rem;
  }
}

.p-member-actions__btn--sub {
  border-color: #3AC5E7;
  background: #FFFFFF;
  color: #3AC5E7;
}
.p-member-actions__btn--sub:hover {
  background: #3AC5E7;
  color: #FFFFFF;
}

.p-member-history {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-member-history__item {
  padding: 16px 0;
  border-bottom: 1px solid #EEEEEE;
}
.p-member-history__item:first-child {
  padding-top: 0;
}
.p-member-history__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.p-member-history__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-member-history__badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-member-history__badge--done {
  background: #EDF8EE;
  color: #0B7A45;
}

.p-member-history__badge--upcoming {
  background: #F5FCFE;
  color: #3AC5E7;
}

.p-member-history__badge--cancel {
  background: #EEEEEE;
  color: #666666;
}

.p-member-history__detail {
  margin: 6px 0 0;
  color: #2C2826;
  font-size: 1.4rem;
  line-height: 1.7;
}

.p-member-history__note {
  margin: 12px 0 0;
  color: #666666;
  font-size: 1.3rem;
  line-height: 1.7;
}

.p-member-history__cancel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #EC6A4F;
  border-radius: 9999px;
  color: #EC6A4F;
  font-weight: 700;
  text-decoration: none;
}
.p-member-history__cancel:hover, .p-member-history__cancel:focus-visible {
  background: #EC6A4F;
  color: #FFFFFF;
}

.p-member-history__note-sub {
  display: block;
  margin-top: 6px;
}

.p-member-empty {
  margin: 0;
  color: #666666;
  font-size: 1.4rem;
  line-height: 1.8;
}

#booking-package_myBookingDetailsFroVisitor {
  /**
   * 「戻る」は消している（2026-08-27 ユーザー判断）。
   *
   * 押すと予約カレンダーに戻るだけで、マイページから来た人には行き先が合わない。
   * ⚠️ 戻したくなったら、この1ブロックを消せば元どおり出る。
   */
}
#booking-package_myBookingDetailsFroVisitor .buttonPanel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
#booking-package_myBookingDetailsFroVisitor .return_button {
  display: none;
}
#booking-package_myBookingDetailsFroVisitor .cancel_booking_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid #EC6A4F;
  border-radius: 9999px;
  background: #FFFFFF;
  color: #EC6A4F;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}
#booking-package_myBookingDetailsFroVisitor .cancel_booking_button:hover, #booking-package_myBookingDetailsFroVisitor .cancel_booking_button:focus-visible {
  background: #EC6A4F;
  color: #FFFFFF;
}

.p-bp-prefill {
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 168, 95, 0.35);
  border-radius: 8px;
  background: #EDF8EE;
  color: #0B7A45;
  font-family: "Noto Sans", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック体", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.p-member-history__more {
  margin-top: 10px;
}

.p-member-history__toggle,
.p-member-edit__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #F25B36;
  font-size: 1.4rem;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}
.p-member-history__toggle::-webkit-details-marker,
.p-member-edit__toggle::-webkit-details-marker {
  display: none;
}
.p-member-history__toggle::before,
.p-member-edit__toggle::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.p-member-history__toggle:hover,
.p-member-edit__toggle:hover {
  text-decoration: underline;
}

[open] > .p-member-history__toggle::before,
[open] > .p-member-edit__toggle::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-member-history__more .p-member-dl {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #FFF9F2;
}

@media screen and (min-width: 761px) {
  .p-member-dl--compact {
    grid-template-columns: 140px 1fr;
    row-gap: 10px;
  }
}
.p-member-dl--compact .p-member-dl__key {
  font-size: 1.2rem;
}
@media screen and (min-width: 761px) {
  .p-member-dl--compact .p-member-dl__key {
    font-size: 1.3rem;
  }
}
.p-member-dl--compact .p-member-dl__value {
  font-size: 1.4rem;
}
@media screen and (min-width: 761px) {
  .p-member-dl--compact .p-member-dl__value {
    font-size: 1.5rem;
  }
}

.p-member-children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-member-children__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  line-height: 1.6;
}
.p-member-children__item + .p-member-children__item {
  margin-top: 6px;
}

.p-member-children__age {
  color: #666666;
  font-size: 1.3rem;
}

.p-member-children__badge {
  padding: 2px 8px;
  border-radius: 4px;
  background: #F5FCFE;
  color: #3AC5E7;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-member-edit {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #EEEEEE;
}

.p-member-child {
  margin: 16px 0 0;
  padding: 16px;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  background: #FFF9F2;
}

.p-member-child__legend {
  padding: 0 6px;
  color: #333333;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-member-child__row + .p-member-child__row {
  margin-top: 12px;
}

.p-member-child__birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.p-member-child__birth .p-member-form__select {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.kpx-anim .js-reveal {
  opacity: 0;
  -webkit-transform: translateY(24px);
      -ms-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1);
  -webkit-transition-delay: var(--kpx-reveal-delay, 0s);
          transition-delay: var(--kpx-reveal-delay, 0s);
}
.kpx-anim .js-reveal.is-revealed {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.kpx-anim .js-reveal--zoom {
  -webkit-transform: translateY(24px) scale(0.96);
      -ms-transform: translateY(24px) scale(0.96);
          transform: translateY(24px) scale(0.96);
}
.kpx-anim .js-reveal--zoom.is-revealed {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .kpx-anim .js-reveal,
  .kpx-anim .js-reveal--zoom {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
.kpx-anim .p-concept__body .js-reveal:nth-child(2) {
  --kpx-reveal-delay: 0.1s;
}
.kpx-anim .p-concept__body .js-reveal:nth-child(3) {
  --kpx-reveal-delay: 0.2s;
}
.kpx-anim .p-concept__body .js-reveal:nth-child(4) {
  --kpx-reveal-delay: 0.3s;
}
.kpx-anim .p-service__cards .js-reveal:nth-child(2) {
  --kpx-reveal-delay: 0.12s;
}
.kpx-anim .p-service__cards .js-reveal:nth-child(3) {
  --kpx-reveal-delay: 0.24s;
}
