@charset "UTF-8";

/* =============================================================================
   ableto — landing page styles

   命名規則
     l-  … レイアウト（ページのセクション・骨格）
     c-  … コンポーネント（再利用する部品）
     BEM … block__element--modifier

   レイアウト基準: desktop artboard 1280px / mobile artboard 375px
   ブレークポイント
     SP  … @media (max-width: 767px)
     PC  … @media (min-width: 768px)                        … SP以外すべて
     TB  … @media (min-width: 768px) and (max-width: 1100px)
     LG  … @media (min-width: 1101px)

   目次
     1. Design tokens
     2. Base
     3. Components   … c-section-title / c-button / c-kv / c-program-card /
                       c-outcome / c-slider / c-history-card / c-accordion /
                       c-tag / c-event-card / c-sns / c-modal
     4. Layout       … l-header / l-hero / l-wave / l-about / l-dome / l-programs /
                       l-outcomes / l-history / l-faq / l-event / l-next-chapter /
                       l-contact / l-footer
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --c-mint: #9fcebe;                      /* HERO */
  --c-aqua: #c6eaea;                      /* PROGRAMS / OUTCOMES */
  --c-sand: rgba(244, 241, 226, 0.97);    /* HISTORY / FAQ */
  --c-rose: #edbcc6;                      /* EVENT */
  --c-paper: #fbfbf9;                     /* カード・セクションの白面 */
  --c-paper-warm: #f6f6f0;                /* NEXT CHAPTER (SPのみ) */
  --c-white: #fff;

  /* Text & accents */
  --c-ink: #333;
  --c-teal: #1e859b;                      /* ABOUT / OUTCOMES / EVENT 見出し */
  --c-teal-deep: #2f6f75;                 /* PROGRAMS / HISTORY 見出し */
  --c-teal-dark: #2f7c82;                 /* EVENT 日付・強調 */
  --c-teal-button: #327c81;
  --c-pink: #e88297;                      /* HERO ボタン / FAQ ラベル */
  --c-pink-arrow: #f55b96;
  --c-magenta: #e3175f;                   /* ABOUT 見出しの強調 */
  --c-blue-pale: #8cc2cf;                 /* FAQ の A マーカー */
  --c-rule: #ccc;

  /* Component fills */
  --c-card-border: #7ac5c5;               /* PROGRAMS カードの枠 */
  --c-placeholder-about: #a6dbe1;
  --c-placeholder-photo: #d5eaeb;
  --c-tag-default: #c9c9c9;
  --c-tag-orange: #f1ad71;
  --c-tag-teal: #a6dadd;
  --c-slider-button: rgba(82, 167, 175, 0.64);

  /* Typography */
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;

  /* Radii */
  --r-card: 40px;
  --r-card-sp: 24px;
  --r-pill: 999px;

  /* l-header の高さ。body の padding-top とアンカーの scroll-margin-top で共有する */
  --header-h: 88px;
}

@media (max-width: 767px) {
  :root { --header-h: 64px; }
}

/* -----------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
}

body {
  font-family: var(--font-ja);
  color: var(--c-ink);
  /* 固定ヘッダー（.l-header）がフローから外れる分の高さを確保する */
  padding-top: var(--header-h);
}

/* キーボード操作時のみフォーカスリングを出す（見た目の変更なし） */
:focus-visible {
  outline: 2px solid var(--c-teal-dark);
  outline-offset: 2px;
}

/* l-header が fixed で常に画面上部に残るため、アンカーリンク（#event 等）で
   ジャンプした際に見出しが隠れないよう、ジャンプ先の手前で止める */
main > section[id] {
  scroll-margin-top: var(--header-h);
}

/* モーダル表示中は背面のスクロールを止める */
body.is-modal-open {
  overflow: hidden;
}

/* =============================================================================
   3. Components
   ========================================================================== */

/* -----------------------------------------------------------------------------
   c-section-title — 各セクションの見出し（英字＋日本語）
   h2 の既定サイズを打ち消し、子要素側で字送りを完結させる。
   セクションごとの高さ・余白は各レイアウトブロックで指定する。
   -------------------------------------------------------------------------- */
.c-section-title {
  font: inherit;
  text-align: center;
}

.c-section-title__en {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 5px;
  line-height: 1.4;
}

.c-section-title__ja {
  display: block;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .c-section-title__en {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .c-section-title__ja {
    font-size: 14px;
  }
}

/* -----------------------------------------------------------------------------
   c-button — CTA。--kv はヒーロー、--contact はイベントカード末尾、
   --header はヘッダー（矢印なし）、--contact-section はCONTACTセクション。
   -------------------------------------------------------------------------- */
.c-button {
  color: var(--c-white);
  font-weight: 700;
  text-decoration: none;
}

.c-button--kv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 60px;
  background: var(--c-pink);
  font-family: var(--font-ja);
}

.c-button--kv::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
  transform: rotate(45deg);
}

.c-button--contact {
  position: relative;
  display: block;
  border-radius: var(--r-pill);
  background: var(--c-teal-button);
  line-height: 24px;
  text-align: center;
}

.c-button--contact::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
  transform: translateY(-50%) rotate(45deg);
}

.c-button--header {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  background: var(--c-pink);
  font-family: var(--font-ja);
  white-space: nowrap;
  /* ヘッダーの「お問合せ」は矢印なし（--kv/--contact/--contact-sectionとの違い） */
}

.c-button--contact-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-pill);
  background: var(--c-teal-deep);
  font-family: var(--font-ja);
  /* 背景色はCONTACTの見出し文字色（--c-teal-deep）に合わせる。文字色は.c-button基本の白のまま */
}

.c-button--contact-section::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .c-button--kv {
    width: 60%;
    height: 59px;
    padding: 0 28px;
    font-size: 18px;
    letter-spacing: 2px;
  }

  .c-button--contact {
    width: 228px;
    min-height: 44px;
    margin: 24px 0 0 auto;
    padding: 10px 44px 10px 24px;
    font-size: 16px;
    -webkit-transition: all .2s;
    transition: all .2s;
    &:hover{
      opacity:0.8;
      zoom:1;
    }
  }

  .c-button--header {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-transition: all .2s;
    transition: all .2s;
    &:hover{
      opacity:0.8;
      zoom:1;
    }
  }

  .c-button--contact-section {
    height: 52px;
    padding: 0 32px;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: all .2s;
    transition: all .2s;
    &:hover{
      opacity:0.8;
      zoom:1;
    }
  }
}

@media (max-width: 767px) {
  .c-button--kv {
    width: 275px;
    height: 47px;
    padding: 0 24px;
    font-size: 14px;
    letter-spacing: 0.14px;
  }

  .c-button--contact {
    width: 174px;
    min-height: 40px;
    margin: 20px auto 0;
    padding: 8px 36px 8px 18px;
    font-size: 14px;
  }

  .c-button--header {
    height: 34px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .c-button--contact-section {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
  }
}

/* -----------------------------------------------------------------------------
   c-kv — ヒーローのキービジュアル（吹き出し＋人物）。すべて装飾。
   -------------------------------------------------------------------------- */
.c-kv__bubble {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.c-kv__person {
  position: absolute;
  z-index: 4;
  object-fit: contain;
  pointer-events: none;
}

.c-kv__bubble {
  width: 277px;
  left: 223px;
  top: 244px;
}

@media (min-width: 768px) {
  .c-kv__bubble {
    width: calc(234/ 1280 * 100%);
    right: 0;
    top: 474px;
    left: inherit;
  }

  .c-kv__person--1 { width: calc(617/ 1280 * 100%); left: 0; top: 26px; }
  .c-kv__person--2 { width: calc(396/ 1280 * 100%); left: calc(224/ 1280 * 100%);  top: 600px; }
  .c-kv__person--3 { width: calc(382/ 1280 * 100%); right:0;  top: 696px; }
}

@media (max-width: 767px) {
  .c-kv__bubble {
    left: inherit;
    top: 264px;
    width: calc(335/ 750 * 100%);
    right: 0;
  }

  .c-kv__person--1 { width: 426px; left: -169px; top: 0; }
  .c-kv__person--2 { width: 241px; left: -48px;  top: 466px; }
  .c-kv__person--3 { width: 220px; left: 194px;  top: 528px; }
}

/* -----------------------------------------------------------------------------
   c-program-card — 取り組みカード。イラストが上端から飛び出す。
   -------------------------------------------------------------------------- */
.c-program-card {
  position: relative;
  overflow: visible;
  background: var(--c-white);
  border: 4px solid var(--c-card-border);
}

.c-program-card__illust {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0;
}

.c-program-card__illust img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.c-program-card__title {
  font-family: var(--font-ja);
  font-weight: 900;
  color: var(--c-teal-deep);
  text-align: center;
}

.c-program-card__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  color: var(--c-ink);
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (min-width: 768px) {
  .c-program-card {
    flex: 1;
    min-height: 360px;
    padding: 51px 24px 32px;
    border-radius: var(--r-card);
  }
  .c-program-card--center{
    padding: 29px 24px 32px;
  }

  .c-program-card--center .c-program-card__title{
    margin-bottom: 11px;
  }

  .c-program-card--right{
    padding: 45px 24px 20px;
  }

  .c-program-card--right .c-program-card__title{
    margin-bottom: 30px;
  }

  .c-program-card:nth-child(1) .c-program-card__illust img { width: min(244px, calc(100% - 24px)); }
  .c-program-card:nth-child(2) .c-program-card__illust img { width: min(251px, calc(100% - 24px)); }
  .c-program-card:nth-child(3) .c-program-card__illust img { width: min(275px, calc(100% - 24px)); }

  .c-program-card__title {
    margin-bottom: 21px;
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: 4px;
  }

  .c-program-card__desc {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .c-program-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .c-program-card__title {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .c-program-card__desc {
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .c-program-card {
    z-index: 1;
    flex: none;
    width: 100%;
    min-height: 202px;
    margin: 0;
    padding: 36px 23px 26px;
    border-radius: var(--r-card-sp);
  }

  .c-program-card:nth-child(2) {  }
  .c-program-card:nth-child(3) {  }

  /* イラストがカードの背面に回るため、枠線だけを上から描き直す */
  .c-program-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    z-index: 2;
    border: 4px solid var(--c-card-border);
    border-radius: var(--r-card-sp);
    pointer-events: none;
  }

  .c-program-card__illust {
    z-index: 0;
  }

  .c-program-card:nth-child(1) .c-program-card__illust img { width: min(220px, calc(100% - 48px)); }
  .c-program-card:nth-child(2) .c-program-card__illust img { width: min(226px, calc(100% - 48px)); }
  .c-program-card:nth-child(3) .c-program-card__illust img { width: min(244px, calc(100% - 48px)); }

  .c-program-card__title {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 2px;
  }

  .c-program-card__desc {
    font-size: 13.5px;
    line-height: 1.8;
    letter-spacing: 0;
  }
}

/* -----------------------------------------------------------------------------
   c-outcome — 効果の紹介。--reverse で画像と本文を入れ替える。
   -------------------------------------------------------------------------- */
.c-outcome {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.c-outcome--reverse {
  flex-direction: row-reverse;
}

/* 3つ目のみ、続くビル背景との間に余白を持たせる */
.c-outcome--spaced {
  margin-bottom: 60px;
}

.c-outcome__image {
  margin-inline: auto;
}

.c-outcome__image img {
  display: block;
  width: 100%;
  height: auto;
}

.c-outcome__body {
  margin-inline: auto;
  position: relative;
}

.c-outcome__title {
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--c-ink);
}

.c-outcome__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.78px;
  position: relative;
  z-index:3;
}

@media (min-width: 768px) {
  .c-outcome {
    align-items: center;
    width: min(932px, calc(100% - 48px));
    gap: clamp(32px, 7vw, 100px);
  }

  .c-outcome__image {
    flex-shrink: 0;
    width: 449px;
  }

  .c-outcome__body {
    flex: 0 0 393px;
  }

  .c-outcome__title {
    margin-bottom: 20px;
    font-size: 27px;
    line-height: 1.75;
    letter-spacing: 2px;
  }

  .c-outcome__desc {
    max-width: 393px;
    font-size: 16px;
    line-height: 2.5;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .c-outcome {
    width: min(860px, calc(100% - 80px));
  }

  .c-outcome__image {
    width: 42%;
  }

  .c-outcome__body {
    flex: 1 1 auto;
  }
}

@media (max-width: 767px) {
  .c-outcome,
  .c-outcome--reverse {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 525px;
    padding: 0 22px;
    gap: 38px;
    &.l-outcomes__box{
      padding: 0;
      gap: 0;
      min-height: inherit;
    }
  }

  .c-outcome__image {
    position: relative;
    flex: none;
    width: 100%;
    max-width: 328px;
  }

  .c-outcome__body {
    flex: 1;
    padding: 0 8vw;
  }

  .c-outcome__title {
    margin-bottom: 17px;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 1px;
  }

  .c-outcome__desc {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.95;
  }
}

/* -----------------------------------------------------------------------------
   c-slider — 前後に複製カードを並べて無限ループさせる横スクローラー
   -------------------------------------------------------------------------- */
.c-slider {
  position: relative;
}

.c-slider__track {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.c-slider__track::-webkit-scrollbar {
  display: none;
}

.c-slider__nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.c-slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--c-slider-button);
  color: var(--c-white);
  font-weight: bold;
  cursor: pointer;
  pointer-events: all;
}

@media (min-width: 768px) {
  /* 両端のカードを半分だけ覗かせるため、幅を広げて左にずらす */
  .c-slider__track {
    width: calc(100% + 144px);
    padding: 0;
    gap: 32px;
    transform: translateX(-72px);
  }

  .c-slider__nav {
    padding: 0 244px;
  }

  .c-slider__button {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  /* カード1枚を中央にスナップさせる */
  .c-slider__track {
    gap: 16px;
    padding: 0 calc((100% - 285px) / 2);
    scroll-padding-inline: calc((100% - 285px) / 2);
  }

  .c-slider__nav {
    padding: 0 max(0px, calc((100% - 325px) / 2));
  }

  .c-slider__button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* -----------------------------------------------------------------------------
   c-history-card — 実績カード
   -------------------------------------------------------------------------- */
.c-history-card {
  overflow: hidden;
  background: var(--c-white);
  border-radius: var(--r-card);
  scroll-snap-align: start;
  padding: 35px;
}

/* JS が生成する複製カードは操作対象外 */
.c-history-card[aria-hidden='true'] {
  pointer-events: none;
}

.c-history-card__image {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.c-history-card__title {
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--c-teal-deep);
  letter-spacing: 1px;
  text-align: center;
}

.c-history-card__desc {
  overflow: hidden;
  margin-bottom: 16px;
  color: var(--c-ink);
}

.c-history-card__divider {
  margin-bottom: 12px;
  border: none;
  border-top: 1px solid var(--c-rule);
}

.c-history-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-ink);
  font-weight: 700;
  line-height: 2;
}

.c-history-card__meta img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .c-history-card {
    flex: 0 0 336px;
  }

  .c-history-card__image {
    height: 190px;
  }

  .c-history-card__body {
    padding: 20px 0 0;
  }

  .c-history-card__title {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.7;
  }

  .c-history-card__desc {
    height: 112px;
    font-size: 14px;
    line-height: 2;
  }

  .c-history-card__meta {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .c-history-card {
    flex: 0 0 285px;
    scroll-snap-align: center;
  }

  .c-history-card__image {
    margin: 0 auto 0;
  }

  .c-history-card__body {
    padding: 14px 19px 20px;
  }

  .c-history-card__title {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 1.6;
  }

  .c-history-card__desc {
    height: 70px;
    font-size: 12px;
    line-height: 1.9;
  }

  .c-history-card__meta {
    font-size: 12px;
  }
}

/* -----------------------------------------------------------------------------
   c-accordion — FAQ。見出し(h3)＋button でキーボード操作に対応する。
   -------------------------------------------------------------------------- */
.c-accordion {
  list-style: none;
}

.c-accordion__item {
  border-top: 1px solid var(--c-rule);
}

.c-accordion__item:last-child {
  border-bottom: 1px solid var(--c-rule);
}

/* h3 の既定サイズを打ち消し、字送りは子要素側で完結させる */
.c-accordion__heading {
  font: inherit;
}

.c-accordion__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: start;                  /* button 既定の center を打ち消す */
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.c-accordion__marker {
  flex-shrink: 0;
  color: var(--c-pink);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: 5px;
}

.c-accordion__marker--answer {
  color: var(--c-blue-pale);
  line-height: 1.2;
}

.c-accordion__label {
  flex: 1;
  color: var(--c-ink);
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 1px;
}

.c-accordion__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  border-top: 2px solid var(--c-pink-arrow);
  border-right: 2px solid var(--c-pink-arrow);
  transform: rotate(135deg);
  transition: transform 0.3s;
}

.c-accordion__answer {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 22px;
}

.c-accordion__text {
  flex: 1;
  padding-top: 4px;
  color: var(--c-ink);
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 2;
}

.c-accordion__item--open .c-accordion__answer {
  display: flex;
}

.c-accordion__item--open .c-accordion__icon {
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .c-accordion__question {
    padding: 20px 0 13px;
  }

  .c-accordion__marker {
    width: 28px;
    font-size: 30px;
  }

  .c-accordion__label {
    font-size: 20px;
  }

  .c-accordion__text {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .c-accordion__marker--answer {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .c-accordion__question {
    gap: 7px;
    padding: 10px 0 8px;
  }

  .c-accordion__marker {
    width: 17px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .c-accordion__label {
    font-size: 14px;
    letter-spacing: 0;
  }

  .c-accordion__icon {
    width: 9px;
    height: 9px;
  }

  .c-accordion__answer {
    gap: 7px;
    padding-bottom: 16px;
  }

  .c-accordion__text {
    font-size: 14px;
  }
}

/* -----------------------------------------------------------------------------
   c-tag — イベントの対象ラベル
   -------------------------------------------------------------------------- */
.c-tag {
  border-radius: 2px;
  background: var(--c-tag-default);
  color: var(--c-ink);
  font-weight: 700;
}

.c-tag--pink   { background: var(--c-pink);       color: var(--c-ink); }
.c-tag--orange { background: var(--c-tag-orange); color: var(--c-ink); }
.c-tag--teal   { background: var(--c-tag-teal);   color: var(--c-ink); }

@media (min-width: 768px) {
  .c-tag {
    padding: 4px 16px;
    font-size: 14px;
    letter-spacing: 4px;
  }
}

@media (max-width: 767px) {
  .c-tag {
    padding: 3px 13px;
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* -----------------------------------------------------------------------------
   c-event-card — イベント情報。--brief は概要のみ、--full は詳細まで載せる。
   -------------------------------------------------------------------------- */
.c-event-card {
  display: flex;
  align-items: flex-start;
  background: var(--c-paper);
  max-width: 1100px;
  margin: 0 auto 0;
}

.c-event-card__photo {
  flex-shrink: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--c-placeholder-photo);
}

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

.c-event-card__body {
  flex: 1;
  min-width: 0;
}

.c-event-card__tags {
  display: flex;
  gap: 8px;
}

.c-event-card__title {
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 1px;
}

.c-event-card__desc {
  color: var(--c-ink);
  letter-spacing: 0.5px;
}

.c-event-card__divider {
  margin-bottom: 16px;
  border: none;
  border-top: 2px solid #e88297;
}

.c-event-card__date {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0 0 16px;
  color: var(--c-teal-dark);
  line-height: 1.45;
}

.c-event-card__date small {
  font-weight: 700;
}

.c-event-card__detail {
  display: grid;
  column-gap: 16px;
}

.c-event-card__detail-label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--c-ink);
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.c-event-card__detail-label img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.c-event-card__detail-value {
  color: var(--c-ink);
  letter-spacing: 0.5px;
}

.c-event-card__detail-value strong {
  color: var(--c-teal-dark);
}

.c-event-card__detail-value small {
  display: block;
  margin-top: 3px;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .c-event-card {
    padding: 50px;
    gap: 54px;
    border-radius: var(--r-card);
  }

  .c-event-card--brief { min-height: 560px;margin: 15px auto 70px; }
  .c-event-card--full  { min-height: 996px; }

  .c-event-card__photo {
    width: 444px;
    height: 439px;
  }

  /* NOTE: 2枚目（--full）の写真のみ PC で 439px ではなく 420px。
     元デザインの実装値をそのまま維持している。揃えるなら 439px にする。 */
  .c-event-card--full .c-event-card__photo {
    height: 420px;
  }

  .c-event-card__tags {
    margin-bottom: 30px;
  }

  .c-event-card__title {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1.5;
  }

  .c-event-card__desc {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 1.9;
  }

  .c-event-card__date strong { font-size: 22px; }
  .c-event-card__date small  { font-size: 13px; }

  .c-event-card__detail {
    grid-template-columns: auto 1fr;
    row-gap: 8px;
  }

  .c-event-card__detail-label {
    padding-top: 2px;
    font-size: 14px;
  }

  .c-event-card__detail-value {
    font-size: 14px;
    line-height: 1.7;
  }

  .c-event-card__detail-value small { font-size: 11px; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .c-event-card {
    margin-right: 40px;
    margin-left: 40px;
    padding: 32px;
    gap: 30px;
  }

  .c-event-card__photo {
    width: 40%;
    height: auto;
    aspect-ratio: 444 / 439;
  }

  .c-event-card__title {
    font-size: 20px;
  }

  .c-event-card__desc {
    font-size: 13px;
    line-height: 1.65;
  }

  .c-event-card__detail-label,
  .c-event-card__detail-value {
    font-size: 11px;
  }
}

.sp_none{
  display: block;
}
.pc_none{
  display: none;
}
@media (max-width: 767px) {
  .sp_none{
    display: none;
  }
  .pc_none{
    display: block;
  }
}


@media (max-width: 767px) {
  .c-event-card {
    flex-direction: column;
    width: 89.33vw;
    min-height: 0;
    margin: 0 auto 44px;
    padding: 30px 24px 28px;
    gap: 15px;
    border-radius: 22px;
  }

  .c-event-card__photo {
    width: 100%;
    height: auto;
  }

  .c-event-card__tags {
    margin-bottom: 11px;
  }

  .c-event-card__title {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .c-event-card__desc {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.75;
  }

  .c-event-card__date {
    margin-bottom: 14px;
  }

  .c-event-card__date strong { font-size: 16px; }
  .c-event-card__date small  { font-size: 10px; }

  .c-event-card__detail {
    grid-template-columns: 1fr;
    row-gap: 1px;
    column-gap: 12px;
  }

  .c-event-card__detail-label {
    padding-top: 7px;
    font-size: 11px;
  }

  .c-event-card__detail-value {
    padding-left: 24px;
    font-size: 11px;
    line-height: 1.5;
  }

  .c-event-card__detail-value small { font-size: 10px; }
}

/* -----------------------------------------------------------------------------
   c-sns — SNSアイコンの並び
   -------------------------------------------------------------------------- */
.c-sns {
  display: flex;
  gap: 12px;
}

.c-sns__icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .c-sns__icon {
    width: 35px;
    height: 35px;
  }
}

/* -----------------------------------------------------------------------------
   c-modal — プライバシーポリシー等の全画面ダイアログ。
   [hidden] 属性で表示/非表示を切り替え、開いている間は body.is-modal-open で
   背面スクロールを止める（main.js 側で管理）。
   -------------------------------------------------------------------------- */
.c-modal[hidden] {
  display: none;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.c-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.55);
}

.c-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(720px, calc(100% - 40px));
  max-height: min(84vh, 760px);
  margin: 6vh auto;
  overflow: hidden;
  background: var(--c-paper);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.c-modal__header {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--c-rule);
}

.c-modal__title {
  font: inherit;
}

.c-modal__title-en {
  display: block;
  color: var(--c-pink);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 3px;
}

.c-modal__title-ja {
  display: block;
  margin-top: 4px;
  color: var(--c-ink);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}

.c-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--c-rose);
  color: var(--c-ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.c-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 32px;
  color: var(--c-ink);
  font-family: var(--font-ja);
  font-size: 14px;
  line-height: 1.9;
}

.c-modal__lead {
  margin-bottom: 20px;
}

.c-modal__list {
  padding-left: 1.2em;
  list-style: decimal;
}

.c-modal__list > li {
  margin-bottom: 18px;
}

.c-modal__item-title {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
}

.c-modal__sublist {
  margin: 8px 0 0;
  padding-left: 1.4em;
  list-style: disc;
}

.c-modal__sublist li {
  margin-bottom: 4px;
}

.c-modal__contact {
  margin-top: 8px;
}

.c-modal__contact a {
  color: var(--c-teal-dark);
}

@media (max-width: 767px) {
  .c-modal__dialog {
    width: calc(100% - 24px);
    max-height: min(88vh, 720px);
    margin: 4vh auto;
    border-radius: 20px;
  }

  .c-modal__header {
    padding: 20px 20px 16px;
  }

  .c-modal__title-en {
    font-size: 17px;
  }

  .c-modal__title-ja {
    font-size: 14px;
  }

  .c-modal__body {
    padding: 18px 20px 24px;
    font-size: 13px;
  }
}

/* =============================================================================
   4. Layout
   ========================================================================== */

/* -----------------------------------------------------------------------------
   l-header
   -------------------------------------------------------------------------- */
/* スクロールしても常に上部へ固定する。
   html/body に overflow-x: hidden があると body がスクロールコンテナ化して
   position: sticky が効かないため、fixed で固定し body 側に高さ分の余白を確保する
   （body の overflow-x を外すと横スクロールが発生するため sticky は採用しない）。 */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--c-paper);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 24px;
}

.l-header__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.l-header__logo img {
  display: block;
  width: auto;
  height: 40px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .l-header__inner {
    padding: 0 32px;
  }
}

@media (max-width: 767px) {
  .l-header__inner {
    padding: 0 20px;
  }

  .l-header__logo img {
    height: 28px;
  }
}

/* -----------------------------------------------------------------------------
   l-hero
   -------------------------------------------------------------------------- */
.l-hero {
  position: relative;
  background: var(--c-mint);
}

.l-hero__content {
  position: absolute;
  right: auto;
  z-index: 6;
}

.l-hero__logo img {
  width: 100%;
}

.l-hero__title {
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.3px;
}

.l-hero__lead {
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.78px;
}

.l-hero--btn{
  -webkit-transition: all .2s;
  transition: all .2s;
  &:hover{
    opacity:0.8;
    zoom:1;
  }
}

@media (min-width: 768px) {
  .l-hero {
    height: 1096px;
  }

  .l-hero__content {
    width: calc(570/ 1280 * 100%);;
    left: 55.16%;
    top: 122px;
    padding: 0 20px 0 0;
  }

  .l-hero__logo {
    width: 100%;
    margin-bottom: 34px;
  }

  .l-hero__title {
    margin: 0 0 23px;
    font-size: 33px;
    line-height: 1.35;
  }

  .l-hero__lead {
    margin-bottom: 42px;
    font-size: 20px;
    line-height: 2.1;
  }
}

@media (max-width: 767px) {
  .l-hero {
    height: calc(100vh - 64px);
    overflow: hidden;
  }

  .l-hero__content {
    left: 0;
    top: 190px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .l-hero__logo {
    width: 271px;
    margin: 0 auto 24px;
  }

  .l-hero__title {
    width: 100%;
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.45;
  }

  .l-hero__lead {
    margin-bottom: 29px;
    font-size: 15px;
    line-height: 1.95;
  }
}

/* -----------------------------------------------------------------------------
   l-wave — HERO → ABOUT の雲形トランジション
   -------------------------------------------------------------------------- */
.l-wave {
  position: relative;
  z-index: 10;
  overflow: hidden;
  line-height: 0;
  background: var(--c-mint);
}

.l-wave svg {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .l-wave,
  .l-wave svg { height: 284px; }
}

@media (max-width: 767px) {
  .l-wave,
  .l-wave svg { height: 83px; }
}

.l-wave-box{
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
}

.l-wave-box img{
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {

}

/* -----------------------------------------------------------------------------
   l-about
   -------------------------------------------------------------------------- */
.l-about {
  padding: 40px 0 88px;
  background: var(--c-paper);
  position: relative;
}

.l-about .c-section-title__en,
.l-about .c-section-title__ja {
  color: var(--c-teal);
}

.l-about .l-about-section__title{
  margin-top: 0;
}

.l-about__body {
  display: flex;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
}

.l-about__text {
  flex: 1;
}

.l-about__title {
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.3px;
}

.l-about__title em {
  color: var(--c-magenta);
  font-style: normal;
}

.l-about__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.78px;
}

.l-about__image {
  flex-shrink: 0;
}

.l-about__image img {
  width: 100%;
}

@media (min-width: 768px) {
  .l-about .c-section-title {
    height: 184px;
    padding: 11px 0 0;
  }

  .l-about__body {
    gap: 88px;
    padding: 0 132px;
  }

  .l-about__text {
    padding-top: 15px;
  }

  .l-about__title {
    margin-bottom: 31px;
    font-size: 32px;
    line-height: 1.65;
  }

  .l-about__desc {
    font-size: 16px;
    line-height: 2.38;
  }

  .l-about__image {
    width: 539px;
    height: 406px;
    margin-top: -13px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .l-about__body {
    gap: 36px;
    padding: 0 48px;
  }

  .l-about__title {
    font-size: 27px;
  }

  .l-about__desc {
    font-size: 14px;
    line-height: 2.15;
  }

  .l-about__image {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .l-about {
    min-height:inherit;
    padding:0 0 72px;
  }

  .l-about .c-section-title {
    height: 170px;
    padding: 67px 0 0;
  }

  .l-about__body {
    flex-direction: column;
    gap: 0;
    padding: 0 28px;
  }

  .l-about__text {
    order: 1;
  }

  .l-about__title {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.85;
    text-align: center;
  }

  .l-about__desc {
    font-size: 14px;
    line-height: 2.1;
  }

  .l-about__image {
    order: 2;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: var(--r-card-sp);
  }
  .l-about__image img{
    width: 100%;
  }
}

/* -----------------------------------------------------------------------------
   l-dome — ABOUT → PROGRAMS のドーム形トランジション
   -------------------------------------------------------------------------- */
.l-dome {
  position: relative;
  z-index: 2;
  overflow: hidden;
  line-height: 0;
}

.l-dome svg {
  display: block;
  width: 100%;
}

.l-dome path {
  fill: var(--c-aqua);
}

@media (min-width: 768px) {
  .l-dome,
  .l-dome svg { height: 120px; }
}

@media (max-width: 767px) {
  .l-dome,
  .l-dome svg { }
}

.l-dome-top{
  width: 100%;
  height: 370px;
  margin: 0 auto 0;
  background: #FBFBF9;
}

.l-dome-top img{
  width: 100%;
  object-fit: cover;
  margin: 0 auto 0;
}

@media (max-width: 767px) {
  .l-dome-top{
    width: 100%;
    height: auto;
  }
}

/* -----------------------------------------------------------------------------
   l-programs
   -------------------------------------------------------------------------- */
.l-programs {
  position: relative;
  z-index: 2;
  min-height: 696px;
  padding: 0 0 60px;
  background: var(--c-aqua);
}

.l-programs .c-section-title__en,
.l-programs .c-section-title__ja {
  color: var(--c-teal-deep);
}

.l-programs__cards {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.l-programs__note {
  padding-bottom: 4px;
  color: var(--c-teal-deep);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

@media (min-width: 768px) {
  .l-programs .c-section-title {
    height: 193px;
    padding: 15px 0 0;
  }

  .l-programs__cards {
    gap: 32px;
    padding: 50px 105px 0;
  }

  .l-programs__note {
    margin-top: 28px;
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .l-programs__cards {
    gap: 16px;
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .l-programs {
    min-height: 0;
    padding-bottom: 40px;
  }

  .l-programs .c-section-title {
    height: 188px;
    padding: 31px 0 0;
  }

  .l-programs__cards {
    flex-direction: column;
    gap: 150px;
    padding: 0 27px;
  }

  .l-programs__note {
    margin-top: 30px;
    padding: 0 16px;
    font-size: 14px;
  }
}

/* -----------------------------------------------------------------------------
   l-outcomes
   -------------------------------------------------------------------------- */
.l-outcomes {
  position: relative;
  overflow: hidden;
  background: var(--c-aqua);
  padding-bottom: 410px;
}

.l-outcomes .c-section-title__en,
.l-outcomes .c-section-title__ja {
  color: var(--c-teal);
}

/* このセクションの重ね順: 装飾イラスト(1) < picture(3) / title2(4) < intro(5)。
   intro は position を持たないと装飾イラスト（position:absolute で DOM 上も後方）に
   必ず覆われるため、position:relative を与えたうえで最前面に置く。 */
.l-outcomes__intro {
  position: relative;
  z-index: 5;
  color: var(--c-ink);
  font-weight: 500;
  letter-spacing: 0.78px;
  text-align: center;
}

.l-outcomes__item1{
  width: 246px;
  position: absolute;
  top: 240px;
  right: 87px;
  z-index: 1;
}

.l-outcomes__item2{
  width: 256px;
  position: absolute;
  bottom: -90px;
  left: -50px;
}

.l-outcomes__item3{
  width: 256px;
  position: absolute;
  bottom: -70px;
  right: -110px;
}

.l-outcomes__item4{
  width: 256px;
  position: absolute;
  top: 7px;
  left: -175px;
}

.l-outcomes__item5{
  width: 256px;
  position: absolute;
  bottom: -104px;
  left: -80px;
  opacity: .3;
}

.l-outcomes__item6{
  width: 171px;
  position: absolute;
  bottom: -45px;
  right: -92px;
  img{
    width: 100%;
  }
}

.l-outcomes__box{
  padding: 60px 0 0;
}

.l-outcomes__box2{
  padding: 206px 0 0;
  gap: inherit;
}

.l-outcomes__box3{
  padding: 176px 0 0;
  gap: inherit;
}

.l-outcomes__image{
  width: 458px;
  position: relative;
}

.l-outcomes__image picture{
  position: relative;
  z-index: 3;
}

.l-outcomes__image--reverse{
  width: 458px;
  margin: 0 0 0 auto;
  position: relative;
}

.l-outcomes__image--reverse picture{
  position: relative;
  z-index: 3;
}

.l-outcomes__title{
  font-size: 32px;
  padding: 40px 0 0;
}

.l-outcomes__title2{
  font-size: 32px;
  padding: 40px 0 0;
  position: relative;
  z-index: 4;
}

.l-outcomes__body{
  position: relative;
}

.l-outcomes__body--reverse{
  padding: 30px 0 0 47px;
  position: relative;
}

/* セクション下端に敷くビルのシルエット */
.l-outcomes__building {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  line-height: 0;
}

.l-outcomes__building img {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .l-outcomes {
  }

  .l-outcomes .c-section-title {
    height: 180px;
    padding: 83px 0 0;
  }

  .l-outcomes__intro {
    margin: 13px 0 92px;
    padding: 0 220px;
    font-size: 22px;
    line-height: 2;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .l-outcomes__intro {
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .l-outcomes {
    padding-bottom: 130px;
  }

  .l-outcomes .c-section-title {
    padding: 28px 0 30px;
  }

  .l-outcomes__intro {
    margin: 0 0 120px;
    padding: 0 31px;
    font-size: 16px;
    line-height: 2.25;
    text-align: left;
  }

  .l-outcomes__item1 {
    width:130px;
    position: absolute;
    top: 63.73vw;
    right:-2.67vw;
  }

  .l-outcomes__item2 {
    width:178px;
    position: absolute;
    bottom: -20vw;
    left: -15vw;
    opacity: .5;
  }

  .l-outcomes__item3 {
    width:178px;
    position: absolute;
    bottom: -20vw;
    right: -14.67vw;
    opacity: .5;
  }

  .l-outcomes__item5 {
      width:178px;
      position: absolute;
      bottom:-20vw;
      left: -10vw;
      opacity: .5;
  }

  .l-outcomes__item7 {
      width:101px;
      position: absolute;
      bottom:-22.67vw;
      left: 49.33vw;
      opacity: .5;
  }

  .l-outcomes__item7 img{
    width: 100%;
  }

  .l-outcomes__item1 img{
    width: 100%;
  }

  .l-outcomes__title, .l-outcomes__title2{
    font-size: 20px;
    padding: 30px 0 0;
    text-align: center;
  }

  .l-outcomes__box2{
    padding: 24vw 0 0;
  }

   .l-outcomes__box3{
    padding: 24vw 0 30vw;
  }

  .l-outcomes__image{
    width: 87.47vw;
    margin: 0 auto 0;
    max-width: inherit;
  }

  .l-outcomes__image--reverse{
    width: 87.47vw;
    margin: 0 auto 0;
    max-width: inherit;
  }

  .l-outcomes__body--reverse{
    padding: 0 8vw;
  }
}

/* -----------------------------------------------------------------------------
   l-history
   -------------------------------------------------------------------------- */
.l-history {
  overflow: hidden;
  background: var(--c-sand);
  position: relative;
}

.l-history .c-section-title__en,
.l-history .c-section-title__ja {
  color: var(--c-teal-deep);
}

.l-history__intro {
  color: var(--c-ink);
  font-weight: 500;
  letter-spacing: 0.78px;
  text-align: center;
}

@media (min-width: 768px) {
  .l-history {
    padding: 0 0 90px;
  }

  .l-history .c-section-title {
    padding: 68px 0 33px;
  }

  .l-history__intro {
    margin: 0 0 81px;
    font-size: 22px;
    line-height: 2;
  }

}

@media (max-width: 767px) {
  .l-history {
    padding: 0 0 100px;
  }

  .l-history .c-section-title {
    padding: 82px 0 30px;
  }

  .l-history__intro {
    margin: 0 0 71px;
    padding: 0 31px;
    font-size: 16px;
    line-height: 2.1;
    text-align: left;
  }

  .l-history__intro br {
    display: none;
  }

  .c-history-card{
    padding:7.33vw;
  }

}

/* -----------------------------------------------------------------------------
   l-faq
   -------------------------------------------------------------------------- */
.l-faq {
  position: relative;
  background: url(../images/faq_bg.png) repeat-x 0 bottom var(--c-sand);

}

.l-faq__inner {
  max-width: 1100px;
  margin: 0 auto 0;
  min-height: 550px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  background: var(--c-paper);
}

.l-faq__box{
  width: 255px;
}

.l-faq__list{
  max-width: 600px;
}

.l-faq__heading {
  font: inherit;
}

.l-faq__heading-en {
  display: block;
  margin-bottom: 8px;
  color: var(--c-pink);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1;
}

.l-faq__heading-ja {
  display: block;
  color: var(--c-ink);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}

.l-faq__illust img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .l-faq {
    padding: 90px 0 180px;
  }

  .l-faq__inner {
    border-radius: 300px;
  }

  .l-faq__heading {

  }

  .l-faq__heading-en {
    font-size: 44px;
  }

  .l-faq__heading-ja {
    font-size: 24px;
  }

  .l-faq__illust {
    width: 246px;
    margin: 20px 0 0 -20px;
  }

}

@media (min-width: 768px) and (max-width: 1100px) {
  .l-faq__inner {
    margin: 0 40px;
    padding: 60px 60px 60px calc(200/ 1280 * 100%);
  }

  .l-faq__heading {
    left: 75px;
  }

  .l-faq__illust {
    left: 48px;
    width: 290px;
  }
}

@media (min-width: 1101px) {
  .l-faq__inner {
    padding: 115px 0 120px 0;
  }
}

@media (max-width: 767px) {
  .l-faq {
    padding: 27px 0 100px;
  }

  .l-faq__inner {
    width: 89.33vw;
    margin: 0 auto;
    padding: 80px 22px 40px;
    border-radius: 120px;
    display: block;
  }

  .l-faq__heading {
    left: 27px;
    top: 55px;
  }

  .l-faq__heading-en {
    font-size: 30px;
  }

  .l-faq__illust {
    width:50.27vw;
    margin: 50px auto 0;
  }

  .l-faq__list{
    margin: 20px auto 0;
  }

}

/* -----------------------------------------------------------------------------
   l-event
   -------------------------------------------------------------------------- */
.l-event {
  background: var(--c-rose);
  background: url(../images/event_bg.png) repeat-x 0 bottom var(--c-rose);
  position: relative;
  z-index: 3;
}

.l-event:before{
  width: 1280px;
  height: 1972px;
  content: "";
  background: url(../images/dumy.png) no-repeat 0 0;
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  opacity: .5;
  display: none;
}

.l-event__label{
  background: var(--c-pink);
  color: #000;
  padding: 4px 30px;
}

.l-event .c-section-title__en,
.l-event .c-section-title__ja {
  color: var(--c-teal);
}

@media (min-width: 768px) {
  .l-event {
    min-height: 2034px;
    padding: 0 0 90px;
  }

  .l-event .c-section-title {
    height: 180px;
    padding: 75px 0 0;
  }
}

@media (max-width: 767px) {
  .l-event {
    padding-bottom: 64px;
  }

  .l-event .c-section-title {
    padding: 64px 0 35px;
  }
}

/* -----------------------------------------------------------------------------
   l-next-chapter
   -------------------------------------------------------------------------- */
.l-next-chapter {
  display: flex;
  background: var(--c-paper);
  position: relative;
}

.l-next-chapter__text {
  flex: 1;
}

.l-next-chapter__en {
  color: var(--c-teal-deep);
  font-family: var(--font-en);
  font-weight: 800;
}

.l-next-chapter__title {
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 2px;
  line-height: 1.7;
}

.l-next-chapter__label {
  margin-bottom: 16px;
  color: var(--c-ink);
  letter-spacing: 1px;
}

.l-next-chapter__image {
  flex-shrink: 0;
  height: auto;
  overflow: hidden;
}

.l-next-chapter__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .l-next-chapter {
    align-items: flex-start;
    /* height 固定は文言が1行増えた時点で溢れるため min-height にする */
    min-height: 542px;
    /* 218px 固定だとウィンドウが狭まった分がすべてテキスト列に転嫁されるので、
       余白から先に詰まるよう流体化する（1280px 相当まで縮んでも本文幅を確保できる） */
    padding: 83px clamp(24px, 8vw, 218px) 60px;
  }

  .l-next-chapter__en {
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: 5px;
  }

  .l-next-chapter__title {
    margin-bottom: 32px;
    font-size: 30px;
  }

  .l-next-chapter__label {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .l-next-chapter {
    padding-right: 80px;
    padding-left: 80px;
    gap: 32px;
  }

  .l-next-chapter__text {
    min-width: 420px;
  }

  .l-next-chapter__image {
    width: min(32%, 320px);
  }
}

@media (min-width: 1101px) {
  .l-next-chapter {
    gap: 50px;
  }

  /* min-width: 0 は flex アイテム既定の最小幅保護（min-width: auto）を外すため、
     テキスト列が1文字幅まで潰れて縦一列になっていた。下限を明示して戻す。 */
  .l-next-chapter__text {
    min-width: min(100%, 420px);
    margin: 0 0 0 clamp(0px, 4vw, 108px);
  }

  .l-next-chapter__image {
    width: clamp(260px, 28vw, 430px);
    margin: 21px clamp(0px, 8vw, 115px) 0 0;
  }
}

/* 上の clamp() は 1101〜1600px の潰れを救うためのもので、上限（218/108/430/115px）には
   現実的な画面幅では到達しない。固定値のままでもテキスト列 420px を確保できる 1600px 以上では、
   納品時のデザイン値に戻す。
   （1600px 時: content 1585px − 固定分 1139px = 446px ≥ 420px） */
@media (min-width: 1600px) {
  .l-next-chapter {
    padding-right: 218px;
    padding-left: 218px;
  }

  .l-next-chapter__text {
    margin-left: 108px;
  }

  .l-next-chapter__image {
    width: 430px;
    margin-right: 115px;
  }
}

@media (max-width: 767px) {
  /* SP は「英字見出し → 日本語見出し → 画像」の縦積み。
     __text をラッパーとして畳み、子を .l-next-chapter 直下の flex item にする */
  .l-next-chapter {
    position: relative;
    flex-direction: column;
    align-items: center;
    height: 606px;
    padding: 73px 24px 45px;
    gap: 34px;
    background: #FBFBF9;
  }

  .l-next-chapter__text {
    display: contents;
  }

  .l-next-chapter__en {
    order: 0;
    margin: 0;
    font-size: 24px;
    letter-spacing: 3px;
  }

  .l-next-chapter__title {
    order: 1;
    width: 100%;
    margin: 0;
    padding: 0 8px;
    font-size: 19px;
    text-align: center;
  }

  .l-next-chapter__image {
    order: 2;
    width: 260px;
  }

  .l-next-chapter__image img {
    border-radius: 12px;
  }

  .l-next-chapter__label {
    position: absolute;
    left: 81px;
    bottom: 78px;
    width: 125px;
    font-size: 13px;
    line-height: 1.5;
  }

  .l-next-chapter__sns {
    position: absolute;
    left: 209px;
    bottom: 80px;
  }
}

/* -----------------------------------------------------------------------------
   l-contact
   -------------------------------------------------------------------------- */
.l-contact {
  background: var(--c-sand);
  text-align: center;
}

.l-contact__title {
  color: var(--c-teal-deep);
  font-family: var(--font-en);
  font-weight: 800;
}

.l-contact__desc {
  color: var(--c-ink);
  font-family: var(--font-ja);
  font-weight: 500;
}

@media (min-width: 768px) {
  .l-contact {
    padding: 90px 24px;
  }

  .l-contact__title {
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: 5px;
  }

  .l-contact__desc {
    margin-bottom: 36px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 767px) {
  .l-contact {
    padding: 56px 24px;
  }

  .l-contact__title {
    margin-bottom: 16px;
    font-size: 24px;
    letter-spacing: 3px;
  }

  .l-contact__desc {
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.3px;
  }
}

/* -----------------------------------------------------------------------------
   l-footer
   -------------------------------------------------------------------------- */
.l-footer {
  background: var(--c-paper);
}

.l-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.l-footer__privacy {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  color: var(--c-ink);
  font-family: var(--font-ja);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--c-rule);
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ロゴ・団体名・住所・電話番号を1本の帯として中央に積む */
.l-footer__org {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.l-footer__org-logo {
  flex-shrink: 0;
  display: block;
}

.l-footer__org-logo img {
  display: block;
  width: auto;
}

.l-footer__org-name {
  color: var(--c-ink);
  font-family: var(--font-ja);
  font-weight: 700;
}

.l-footer__org-addr,
.l-footer__org-tel {
  color: var(--c-ink);
  font-family: var(--font-ja);
}

.l-footer__copyright {
  display: block;
  text-align: center;
  color: var(--c-ink);
  font-family: var(--font-en);
  opacity: 0.6;
}

@media (min-width: 768px) {
  .l-footer__inner {
    padding: 40px 40px 32px;
  }

  .l-footer__privacy {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .l-footer__org {
    gap: 12px;
  }

  .l-footer__org-logo img {
    height: 48px;
  }

  .l-footer__org-name {
    margin-bottom: 4px;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .l-footer__org-addr,
  .l-footer__org-tel {
    font-size: 12.5px;
    line-height: 1.7;
  }

  .l-footer__copyright {
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .l-footer__inner {
    padding: 32px 32px 28px;
  }
}

@media (max-width: 767px) {
  .l-footer__inner {
    padding: 32px 20px 28px;
  }

  .l-footer__privacy {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .l-footer__org {
    gap: 10px;
  }

  .l-footer__org-logo img {
    height: 40px;
  }

  .l-footer__org-name {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .l-footer__org-addr,
  .l-footer__org-tel {
    font-size: 11px;
    line-height: 1.6;
  }

  .l-footer__copyright {
    margin-top: 20px;
    font-size: 11px;
  }
}

.js-fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade-section.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .js-fade-section {
    transform: translateY(10px);
  }
}
