/* ==============================================
   FV（ファーストビュー）
   ============================================== */
.fv {
    position: relative;
    overflow: hidden;
}

.fv__bg {
    width: 100%;
}

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

.fv__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- コピー画像 --- */
.fv__copy {
    text-align: center;
}

.fv__copy img {
    max-width: 780px;
    height: auto;
}

/* --- バッジ --- */
.fv__badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.fv__badge {
    width: 180px;
    height: auto;
}

/* --- CTAボタン --- */
.fv__cta {
    display: flex;
    width: 400px;
    height: 80px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 39px;
    background: #4FC3F7;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.20);
    margin-top: 32px;
    transition: opacity 0.3s;
}

.fv__cta:hover {
    opacity: 0.85;
}

.fv__cta-text {
    width: 240px;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
}

.fv__cta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ==============================================
   About（アバウト）セクション
   ============================================== */
.about {
    position: relative;
    overflow: hidden;
    background: #E9EDF0;
}

.about__bg {
    width: 100%;
}

.about__bg img {
    width: 100%;
    height: auto;
    display: block;
}

.about__inner {
    position: relative;
    max-width: 960px;
    margin: -280px auto 0;
    padding: 0 20px 60px;
    text-align: center;
}

/* --- セクションタイトル --- */
.about__title {
    font-family: "Jost", sans-serif;
    font-style: italic;
    font-size: 30px;
    font-weight: 600;
    color: #CEF92E;
    text-align: center;
    letter-spacing: 1.2px;
    line-height: normal;
    padding-bottom: 12px;
    border-bottom: 2px solid #CEF92E;
    display: inline-block;
    margin-bottom: 48px;
}

/* --- タイトルヘッダー（SVG + バッジ横並び） --- */
.about__header {
    display: inline-flex;
    align-items: center;
    gap: clamp(24px, 5vw, 77px);
}

/* --- H1ラッパー --- */
.about__h1 {
    display: inline-flex;
    align-items: center;
    gap: clamp(24px, 5vw, 77px);
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.about__copy {
    height: auto;
    max-width: 100%;
}

/* --- 地域バッジ --- */
.about__locations {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.about__badge {
    display: flex;
    width: 110px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: #223A5E;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 1.04px;
}

/* --- 説明文 --- */
.about__desc {
    margin-top: 40px;
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 1.04px;
    text-align: left;
}

.about__desc-highlight {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 1.2px;
}

/* --- CTAボタン --- */
.about__cta {
    display: inline-flex;
    width: 420px;
    height: 80px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    border-radius: 39px;
    border: 2px solid #CEF92E;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);
    transition: opacity 0.3s;
}

.about__cta:hover {
    opacity: 0.85;
}

.about__cta-text {
    flex-shrink: 0;
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
}

.about__cta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* --- 画像マーキースライダー --- */
.about__slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 16px;
    padding-bottom: 48px;
}

.about__slider-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: about-marquee 30s linear infinite;
}

.about__slider-img {
    width: 280px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes about-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 8px));
    }
}


/* ==============================================
   School（スクール紹介）セクション
   ============================================== */
.school {
    position: relative;
    overflow: hidden;
    background: #FFF;
    padding-top: 0;
}

/* --- SCHOOL ラベル（セクション上端・左寄せ） --- */
.school__label {
    color: #E9EDF0;
    font-family: "Jost", sans-serif;
    font-size: 120px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 6.4px;
    text-align: left;
    margin: 0;
    padding-top: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
}

/* --- セクション内部 --- */
.school__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    text-align: center;
}

/* --- 見出しレイアウト --- */
.school__header {
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4FC3F7;
    margin-bottom: 60px;
}

/* --- 見出しテキスト --- */
.school__title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

/* --- カードグリッド --- */
.school__cards {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 40px;
    justify-content: center;
}

/* --- カード --- */
.school__card {
    width: 300px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

/* --- カード画像部分 --- */
.school__card-img {
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 0 20px 0 0;
    background: #D9D9D9;
}

/* --- 左上の水色三角形アクセント --- */
.school__card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 28px 0 0;
    border-color: #4FC3F7 transparent transparent transparent;
    z-index: 1;
}

/* --- カード下部 --- */
.school__card-body {
    width: 300px;
    height: 180px;
    background: #FFF;
    border-radius: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* --- 校名 --- */
.school__card-name {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.04px;
    margin: 0;
}

/* --- 曜日 --- */
.school__card-day {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
    margin: 0;
}

/* --- バナー --- */
.school__banner {
    margin-top: 60px;
    text-align: center;
}

.school__banner img {
    max-width: 688px;
    width: 100%;
    height: auto;
}


/* ==============================================
   Concept（コンセプト）セクション
   ============================================== */
.concept {
    position: relative;
    overflow: hidden;
    background: #223A5E;
}

/* --- ABOUT テキストラベル（モバイルのみ表示） --- */
.concept__label {
    display: none;
}

/* --- セクション上部SVG --- */
.concept__copy {
    display: block;
    width: 100%;
    height: auto;
}

/* --- 濃紺背景エリア --- */
.concept__body {
    background: #223A5E;
    padding: 0 20px 100px;
    margin-top: -200px;
}

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

/* --- メイン見出し --- */
.concept__heading {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
}

.concept__heading-em {
    font-size: 50px;
    letter-spacing: 2px;
}

/* --- 説明文 --- */
.concept__desc {
    margin-top: 48px;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.04px;
}

.concept__desc-highlight {
    color: #CEF92E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.2px;
}

.concept__list {
    list-style: disc;
    padding-left: 1.5em;
    margin: 8px 0;
}

.concept__list li {
    line-height: 40px;
}

/* --- 2カラムレイアウト --- */
.concept__columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 48px;
}

/* --- 動画（左カラム） --- */
.concept__video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 520px;
    aspect-ratio: 171 / 98;
}

.concept__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.concept__video-iframe {
    position: relative;
    width: 88%;
    height: 88%;
    border: none;
    z-index: 1;
}

/* --- 右テキスト --- */
.concept__detail {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.04px;
}

.concept__detail p + p {
    margin-top: 16px;
}

.concept__detail-highlight {
    color: #CEF92E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.04px;
}

.concept__detail-em {
    color: #CEF92E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.2px;
}


/* ==============================================
   Problems（お悩み）セクション
   ============================================== */
.problem {
    position: relative;
    overflow: hidden;
    background: #E9EDF0;
    padding-top: 0;
}

/* --- PROBLEMS ラベル（セクション上端・左寄せ＝Schoolと同じ配置） --- */
.problem__label {
    color: #FFF;
    font-family: "Jost", sans-serif;
    font-size: 120px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 6.4px;
    text-align: left;
    margin: 0;
    padding-top: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
}

/* --- セクション内部 --- */
.problem__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 0;
    text-align: center;
}

/* --- 見出しレイアウト --- */
.problem__header {
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4FC3F7;
    margin-bottom: 60px;
}

/* --- 見出しテキスト --- */
.problem__title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

/* --- 悩み円グリッド（2行×3列 均等配置） --- */
.problem__circles {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 24px 50px;
    justify-content: center;
    justify-items: center;
    max-width: 760px;
    margin: 0 auto 20px;
}

/* --- 上段3つを若干左にずらす --- */
.problem__circle--1,
.problem__circle--2,
.problem__circle--3 {
    transform: translateX(-45px);
}

/* --- 個別の円 --- */
.problem__circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #FFF;
    border: 2px solid #BFBFBF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* --- 円内テキスト --- */
.problem__circle-text {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.72px;
    text-align: center;
    margin: 0;
}

/* --- 人物画像 --- */
.problem__person {
    margin: -40px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.problem__person img {
    max-width: 700px;
    width: 100%;
    height: auto;
}

/* --- 下矢印ラッパー --- */
.problem__arrows {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 60px;
    margin-bottom: -68px;
}

.problem__arrow {
    text-align: center;
}

.problem__arrow--1 {
    padding-bottom: 16px;
}

.problem__arrow--2 {
    padding-bottom: 0;
}

/* --- 黄緑背景エリア --- */
.problem__highlight {
    background: #CEF92E;
    width: 100%;
    padding: 93px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* --- SVG画像＋テキスト重ね合わせコンテナ --- */
.problem__highlight-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 914px;
    width: 100%;
}

.problem__highlight-img {
    width: 100%;
    max-width: 914px;
    height: auto;
    display: block;
}


/* ==============================================
   Feature（選ばれる理由）セクション
   ============================================== */
.feature {
    position: relative;
    overflow: hidden;
    background: #FFF;
    padding-top: 0;
    padding-bottom: 100px;
}

/* --- 背景SVG --- */
.feature__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* --- FEATURE ラベル（SCHOOL/PROBLEMSと同パターン） --- */
.feature__label {
    position: relative;
    z-index: 1;
    color: #E9EDF0;
    font-family: "Jost", sans-serif;
    font-size: 120px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 6.4px;
    text-align: left;
    margin: 0;
    padding-top: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
}

/* --- セクション内部 --- */
.feature__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 0;
    text-align: center;
}

/* --- 見出しレイアウト（下線色: #CEF92E） --- */
.feature__header {
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #CEF92E;
    margin-bottom: 60px;
}

/* --- 見出しテキスト --- */
.feature__title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

/* --- カード一覧（縦積み） --- */
.feature__cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-end;
}

/* --- 個別カード --- */
.feature__card {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: 0;
    overflow: visible;
}

/* --- カード02,04を左にずらす --- */
.feature__card--offset {
    margin-right: auto;
    margin-left: 0;
}

/* --- SP用要素（PCでは非表示） --- */
.feature__bg-sp {
    display: none;
}

.feature__card-img-sp {
    display: none;
}

.feature__card-bg-sp {
    display: none;
}

/* --- SP用ラッパー（PCでは透過） --- */
.feature__card-sp-photo {
    display: contents;
}

.feature__card-sp-body {
    display: contents;
}

/* --- カード画像（レイヤー上） --- */
.feature__card-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

/* --- 番号（右上・画像からはみ出す） --- */
.feature__card-number {
    position: absolute;
    top: -30px;
    right: 60px;
    z-index: 2;
    color: #4FC3F7;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 100px;
    font-style: italic;
    font-weight: 700;
    line-height: 60px;
}

/* --- カードタイトル（画像の水色部分にオーバーレイ・1行） --- */
.feature__card-title {
    position: absolute;
    top: 44px;
    left: 40px;
    z-index: 2;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.88px;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

/* --- カード説明文（画像の白エリアにオーバーレイ） --- */
.feature__card-desc {
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: 2;
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.64px;
    text-align: left;
    margin: 0;
}

/* PC: <br>を非表示にしてタイトルを1行に / 説明文の幅を制限 */
@media (min-width: 1025px) {
    .feature__card-title br {
        display: none;
    }
    .feature__card-desc {
        max-width: 50%;
    }
}


/* ==============================================
   Voice（生徒さんの声）セクション
   ============================================== */
.voice {
    position: relative;
    background: #E9EDF0;
    padding: 0 0 80px;
    overflow: hidden;
}

/* --- VOICE ラベル（SCHOOL/PROBLEMSと同パターン） --- */
.voice__label {
    display: none;
    color: #FFF;
    font-family: "Jost", sans-serif;
    font-size: 120px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 6.4px;
    text-align: left;
    margin: 0 auto;
    padding-top: 30px;
    max-width: 1280px;
    padding-left: 20px;
}

/* --- 白い三角背景 --- */
.voice__bg {
    position: relative;
    width: 100%;
    line-height: 0;
}

.voice__bg img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- セクション内部 --- */
.voice__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: -120px;
    padding: 0 20px 0;
    text-align: center;
}

/* --- 見出しレイアウト（下線色: #CEF92E = featureと同じ） --- */
.voice__header {
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #CEF92E;
    margin-bottom: 60px;
}

/* --- 見出しテキスト --- */
.voice__title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

/* --- スライダーコンテナ --- */
.voice-slider {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

/* --- スライド --- */
.voice-slide {
    padding: 0 20px 30px;
}

/* --- Slick overflow対応（上方向のみvisibleにしてアイコン表示、左右はhiddenで隣接スライドを隠す） --- */
.voice-slider {
    overflow: hidden;
    padding-top: 100px;
}

.voice-slider .slick-list {
    overflow: visible;
}

/* --- ボイスカード --- */
.voice-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 30px;
    border-top: 20px solid #4FC3F7;
    background: #FFF;
    padding: 30px 50px 40px;
}

/* --- カード上部（アイコン＋見出し横並び） --- */
.voice-card__top {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* --- カード左上アイコン --- */
.voice-card__icon {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    margin-top: -90px;
}

.voice-card__icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* --- カード内コンテンツ --- */
.voice-card__content {
    padding-top: 20px;
}

/* --- カード見出し --- */
.voice-card__heading {
    color: #313131;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.04px;
    margin: 0;
}

/* --- カード本文 --- */
.voice-card__text {
    align-self: stretch;
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
    text-align: left;
}

/* --- 破線ボーダー --- */
.voice-card__border {
    border-top: 1px dashed #BFBFBF;
    margin: 20px 0;
}

/* --- 名前 --- */
.voice-card__name {
    color: #313131;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
}

/* --- もっとみるリンク --- */
.voice-more {
    margin-top: 40px;
    text-align: center;
}

.voice-more a {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.voice-more a svg {
    display: block;
}

/* --- slick矢印カスタム --- */
.voice-slider .slick-prev,
.voice-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.voice-slider .slick-prev {
    left: 20px;
}

.voice-slider .slick-next {
    right: 20px;
}

.voice-slider .slick-prev:hover,
.voice-slider .slick-next:hover {
    opacity: 0.7;
}

.voice-slider .slick-dots {
    display: none !important;
}

/* --- Slickデフォルトの矢印テキスト/アイコンを非表示 --- */
.voice-slider .slick-prev:before,
.voice-slider .slick-next:before {
    display: none;
}

/* --- Voice レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .voice__label {
        display: block;
        font-size: 90px;
    }

    .voice-slider {
        padding: 0 70px;
    }

    .voice-card {
        padding: 50px 30px 30px;
    }

    .voice-card__icon {
        width: 130px;
        height: 130px;
        margin-top: -70px;
    }

    .voice-card__heading {
        font-size: 22px;
    }

    .voice-card__text {
        font-size: 16px;
        line-height: 28px;
    }
}

/* --- Voice レスポンシブ（スマートフォン） --- */
@media (max-width: 1024px) {
    .voice__label {
        font-size: 50px;
        line-height: 30px;
        letter-spacing: 3px;
    }

    .voice__bg {
        display: none;
    }

    .voice {
        padding: 0 0 60px;
    }

    .voice__inner {
        margin-top: 0;
    }

    .voice__title {
        font-size: 28px;
    }

    .voice__header {
        margin-bottom: 30px;
    }

    .voice-slider {
        padding: 0 50px;
    }

    .voice-slide {
        padding: 0 10px 30px;
    }

    .voice-card {
        padding: 50px 20px 25px;
        border-radius: 20px;
        border-top-width: 14px;
    }

    .voice-card__top {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .voice-card__icon {
        width: 100px;
        height: 100px;
        margin-top: -60px;
    }

    .voice-card__heading {
        font-size: 18px;
        letter-spacing: 0.72px;
        text-align: center;
    }

    .voice-card__text {
        font-size: 14px;
        line-height: 24px;
    }

    .voice-card__name {
        font-size: 14px;
    }

    .voice-more a {
        font-size: 18px;
    }

    .voice-slider .slick-prev,
    .voice-slider .slick-next {
        width: 40px;
        height: 40px;
    }

    .voice-slider .slick-prev svg,
    .voice-slider .slick-next svg {
        width: 40px;
        height: 40px;
    }
}


/* ==============================================
   Message（代表メッセージ）セクション
   ============================================== */

/* --- 上部エリア（グレー背景） --- */
.message__top {
    background: #E9EDF0;
}

/* --- MESSAGE ラベル（feature__labelと同パターン） --- */
.message__label {
    color: #FFF;
    font-family: "Jost", sans-serif;
    font-size: 120px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 6.4px;
    text-align: left;
    margin: 0;
    padding-top: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
}

/* --- セクション内部 --- */
.message__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 0;
    text-align: center;
}

/* --- 見出しレイアウト（feature__headerと同仕様） --- */
.message__header {
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #CEF92E;
    margin-bottom: 60px;
}

/* --- 見出しテキスト --- */
.message__title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

/* --- ヒーロー画像エリア --- */
.message__hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

/* --- ヒーロー画像オーバーレイ --- */
.message__hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* --- キャッチコピー --- */
.message__hero-catch {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: 2.4px;
    margin: 0 0 20px;
}

/* --- 代表情報 --- */
.message__hero-info {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.message__hero-role {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.8px;
}

.message__hero-name {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.2px;
}

/* --- テキストエリア（白背景） --- */
.message__body {
    background: #FFF;
    padding: 80px 0;
}

.message__body-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- メッセージ本文 --- */
.message__text {
    margin-bottom: 60px;
}

.message__text p {
    align-self: stretch;
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.88px;
    margin: 0 0 24px;
}

.message__text p:last-child {
    margin-bottom: 0;
}

/* --- 来歴・プロフィール --- */
.message__career {
    margin-bottom: 40px;
}

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

.message__career-title {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.88px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed #BFBFBF;
    margin-bottom: 16px;
}

.message__career-text {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.72px;
    margin: 0 0 8px;
}

.message__career-text:last-child {
    margin-bottom: 0;
}

/* --- 白→グレーのトランジションSVG --- */
.message__transition {
    position: relative;
    width: 100%;
    line-height: 0;
    background: #E9EDF0;
}

.message__transition img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 推薦セクション（グレー背景） --- */
.message__recommend {
    background: #E9EDF0;
    padding: 0 0 80px;
}

.message__recommend-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* --- 推薦タイトル（problem__headerと同仕様） --- */
.message__recommend-header {
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4FC3F7;
    margin-bottom: 60px;
}

.message__recommend-title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

/* --- 推薦スライダーコンテナ --- */
.message-slider {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

/* --- 推薦スライド --- */
.message-slide {
    padding: 0 20px 30px;
}

/* --- 推薦カード（重なりレイアウト） --- */
.message-recommend-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- 選手画像 --- */
.message-recommend-card__img {
    width: 400px;
    position: relative;
    z-index: 0;
}

.message-recommend-card__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 選手情報カード（画像） --- */
.message-recommend-card__info {
    width: 600px;
    margin-left: auto;
    margin-top: -160px;
    position: relative;
    z-index: 1;
}

.message-recommend-card__info img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- もっとみるリンク --- */
.message-more {
    margin-top: 40px;
    text-align: center;
}

.message-more a {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.message-more a svg {
    display: block;
}

/* --- ドットページネーション（矢印込み） --- */
.message-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
    position: relative;
    bottom: auto;
    width: 100%;
}

/* --- ページネーション内の矢印 --- */
.message-pagination__prev,
.message-pagination__next {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.message-pagination__prev:hover,
.message-pagination__next:hover {
    opacity: 0.7;
}

.message-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.message-slider .slick-dots li button {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: color 0.3s;
}

.message-slider .slick-dots li button:before {
    display: block;
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    content: "・";
    color: #313131;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
}

.message-slider .slick-dots li.slick-active button:before {
    color: #4FC3F7;
    opacity: 1;
}

/* --- Message レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .message__label {
        font-size: 120px;
    }

    .message__hero-catch {
        font-size: 44px;
        line-height: 66px;
    }

    .message__hero-overlay {
        padding: 40px 50px;
    }

    .message__hero-role {
        font-size: 18px;
    }

    .message__hero-name {
        font-size: 26px;
    }

    .message__body {
        padding: 60px 0;
    }

    .message__text p {
        font-size: 20px;
        line-height: 36px;
    }

    .message-slider {
        padding: 0 70px;
    }

    .message-recommend-card__img {
        width: 300px;
    }

    .message-recommend-card__info {
        width: auto;
        margin-left: 200px;
        margin-top: -120px;
    }

    .message__recommend-title {
        font-size: 32px;
    }
}

/* --- Message レスポンシブ（スマートフォン） --- */
@media (max-width: 1024px) {
    .message__label {
        font-size: 60px;
        line-height: 30px;
        letter-spacing: 3px;
    }

    .message__inner {
        padding: 30px 20px 0;
    }

    .message__header {
        margin-bottom: 30px;
    }

    .message__title {
        font-size: 28px;
    }

    .message__hero-catch {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.88px;
    }

    .message__hero-overlay {
        padding: 12px 16px;
    }

    .message__hero-info {
        flex-direction: column;
        gap: 2px;
    }

    .message__hero-role {
        font-size: 14px;
        line-height: 18px;
    }

    .message__hero-name {
        font-size: 16px;
        line-height: 22px;
    }

    .message__body {
        padding: 40px 0;
    }

    .message__text p {
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0.64px;
    }

    .message__career-title {
        font-size: 18px;
    }

    .message__career-text {
        font-size: 14px;
        line-height: 28px;
    }

    .message__recommend {
        padding: 0 0 60px;
    }

    .message__recommend-title {
        font-size: 24px;
    }

    .message__recommend-header {
        margin-bottom: 30px;
    }

    .message-slider {
        padding: 0;
    }

    .message-slide {
        padding: 0 0 30px;
    }

    .message-recommend-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .message-recommend-card__img {
        width: 100%;
        margin: 0 auto;
        position: static;
        z-index: auto;
    }

    .message-recommend-card__info {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        z-index: auto;
    }

    .message-slider .slick-dots {
        gap: 15px;
    }

    .message-pagination__prev,
    .message-pagination__next {
        width: 40px;
        height: 40px;
    }

    .message-pagination__prev svg,
    .message-pagination__next svg {
        width: 40px;
        height: 40px;
    }

    .message-slider .slick-dots li button:before {
        font-size: 20px;
    }

    .message-more a {
        font-size: 18px;
    }
}


/* ==============================================
   News（お知らせ）セクション
   ============================================== */
.news {
    position: relative;
    overflow: hidden;
    background: #FFF;
    padding-top: 0;
    padding-bottom: 80px;
}

/* --- セクション内部 --- */
.news__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 0;
    text-align: center;
}

/* --- ニュースアイテム一覧 --- */
.news__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 個別ニュースアイテム --- */
.news__item {
    width: 100%;
    max-width: 1200px;
    height: 110px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-radius: 10px;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.news__item:hover {
    opacity: 0.7;
}

.news__item--gray {
    background: #E9EDF0;
}

.news__item--white {
    background: #FFF;
}

/* --- 日付とタグの行 --- */
.news__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- 日付 --- */
.news__date {
    color: #313131;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.72px;
    margin: 0;
}

/* --- タグ --- */
.news__tag {
    display: inline-flex;
    width: auto;
    min-width: 100px;
    height: 32px;
    padding: 2px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #313131;
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.64px;
    box-sizing: border-box;
    white-space: nowrap;
}

/* --- ニュースタイトル --- */
.news__item-title {
    align-self: stretch;
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin: 0;
    text-align: left;
}


/* ==============================================
   Flow（入会までの流れ）セクション
   ============================================== */
.flow {
    position: relative;
    overflow: hidden;
    background: #FFF;
    padding-top: 0;
    padding-bottom: 100px;
}

/* --- 背景SVG --- */
.flow__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* --- ラベルのz-index --- */
.flow .section-label {
    position: relative;
    z-index: 1;
}

/* --- セクション内部 --- */
.flow__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 0;
    text-align: center;
}

/* --- フロー図 --- */
.flow__image {
    text-align: center;
}

.flow__image img {
    max-width: 100%;
    height: auto;
}

/* --- SP向け白カード背景 --- */
@media (max-width: 767px) {
    .flow__card {
        display: inline-block;
        width: 350px;
        max-width: 90%;
        min-height: 622px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
        padding: 20px;
        margin: 0 auto;
    }

    .flow__card img {
        max-width: 100%;
        height: auto;
    }
}


/* ==============================================
   News / Flow レスポンシブ（タブレット）
   ============================================== */
@media (max-width: 1024px) {
    .news__item {
        padding: 16px 24px;
        height: auto;
    }

    .news__item-title {
        font-size: 18px;
    }
}

/* ==============================================
   News / Flow レスポンシブ（スマートフォン）
   ============================================== */
@media (max-width: 1024px) {
    .news {
        padding-bottom: 60px;
    }

    .news__inner {
        padding: 30px 20px 0;
    }

    .news__item {
        padding: 16px 20px;
        height: auto;
    }

    .news__date {
        font-size: 14px;
    }

    .news__tag {
        font-size: 14px;
        width: auto;
        min-width: 70px;
        height: 24px;
        padding: 2px 10px;
        white-space: nowrap;
        line-height: normal;
    }

    .news__item-title {
        font-size: 16px;
        line-height: 26px;
    }

    .flow {
        padding-bottom: 60px;
    }

    .flow__inner {
        padding: 30px 20px 0;
    }
}


/* ==============================================
   FAQ（よくある質問）セクション
   ============================================== */
.faq {
    background: #FFF;
    padding: 0 0 80px;
}

.faq__label-area {
    background: #FFF;
    overflow: hidden;
    border: none;
}

.section-label--faq {
    color: #E9EDF0;
}

.faq__label-area .section-label {
    line-height: 0.82;
    padding-top: 22px;
    padding-bottom: 12px;
}

.faq__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 0;
    text-align: center;
}

.faq__cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq__card {
    display: flex;
    height: 280px;
    padding: 0 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.faq__question,
.faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq__icon {
    font-family: "Jost", sans-serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.68px;
    flex-shrink: 0;
}

.faq__icon--q {
    width: 34px;
    height: 40px;
    color: #4FC3F7;
}

.faq__icon--a {
    width: 29px;
    height: 40px;
    color: #CEF92E;
}

.faq__question-text {
    color: #313131;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    margin: 0;
}

.faq__answer-text {
    color: #313131;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.88px;
    margin: 0;
}

/* --- 北越谷校ページ FAQ オーバーライド --- */
.school-detail-page .faq__label-area {
    position: relative;
    height: 132px;
    background: #FFF;
    overflow: hidden;
}

.school-detail-page .section-label--faq {
    color: #E9EDF0;
}

.school-detail-page .faq__label-area .section-label {
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-10px);
}

.school-detail-page .faq__inner {
    padding: 48px 20px 0;
}

.school-detail-page .faq .section-header {
    position: static;
    padding: 14px 10px;
    margin-bottom: 60px;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    background: #FFF;
    transform: none;
}

/* --- FAQ レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .faq__card {
        height: auto;
        padding: 30px 24px;
    }

    .faq__question-text {
        font-size: 24px;
    }

    .faq__answer-text {
        font-size: 18px;
        line-height: 28px;
    }

    .school-detail-page .faq__label-area {
        height: 72px;
    }

    .school-detail-page .faq__label-area .section-label {
        transform: translateY(-8px);
    }

    .school-detail-page .faq__inner {
        padding-top: 40px;
    }

    .school-detail-page .faq .section-header {
        margin-bottom: 40px;
    }
}

/* --- FAQ レスポンシブ（スマートフォン） --- */
@media (max-width: 1024px) {
    .faq {
        padding-bottom: 60px;
    }

    .faq__inner {
        padding: 30px 20px 0;
    }

    .faq__cards {
        gap: 24px;
    }

    .faq__card {
        height: auto;
        padding: 24px 20px;
        gap: 16px;
    }

    .faq__icon {
        font-size: 32px;
        line-height: 32px;
    }

    .faq__question-text {
        font-size: 20px;
        letter-spacing: 0.8px;
    }

    .faq__answer-text {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.64px;
    }

    .school-detail-page .faq__inner {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .school-detail-page .faq__label-area {
        height: auto;
    }

    .school-detail-page .faq__label-area .section-label {
        transform: none;
        padding-left: 0;
    }

    .school-detail-page .faq__inner {
        padding: 30px 20px 0;
    }

    .school-detail-page .faq .section-header {
        padding: 14px 10px;
        margin-bottom: 30px;
    }
}


/* ==============================================
   無料体験CTAセクション
   ============================================== */
.trial {
    position: relative;
    overflow: hidden;
}

.trial__bg {
    width: 100%;
}

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

.trial__inner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 60px 80px;
    box-sizing: border-box;
}

.trial__text {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.88px;
    margin: 0 0 16px;
}

.trial__bold {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 1.2px;
}

.trial__lead {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.2px;
    align-self: stretch;
    margin: 16px 0 0;
}

/* --- 無料体験 レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .trial__inner {
        width: 60%;
        padding: 30px 40px;
    }

    .trial__title {
        font-size: 44px;
        line-height: 54px;
    }

    .trial__text {
        font-size: 18px;
        line-height: 28px;
    }

    .trial__bold {
        font-size: 24px;
    }

    .trial__lead {
        font-size: 24px;
        line-height: 34px;
    }
}

/* --- 無料体験 レスポンシブ（スマートフォン） --- */
@media (max-width: 1024px) {
    .trial__bg img {
        min-height: 400px;
        object-position: left center;
    }

    .trial__inner {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        right: auto;
        height: 100%;
        background: rgba(79, 195, 247, 0.85);
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .trial__title {
        font-size: 36px;
        line-height: 46px;
        letter-spacing: 1.4px;
    }

    .trial__text {
        font-size: 14px;
        line-height: 22px;
    }

    .trial__text br {
        display: none;
    }

    .trial__bold {
        font-size: 16px;
    }

    .trial__lead {
        font-size: 16px;
        line-height: 24px;
    }

    .trial__lead br {
        display: none;
    }
}


/* ==============================================
   Contact（お問合せ）セクション
   ============================================== */
.contact {
    background: #E9EDF0;
    padding: 0 0 80px;
}

.contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 0;
    text-align: center;
}

.contact__card {
    display: flex;
    width: 1200px;
    max-width: 100%;
    padding: 60px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-radius: 30px;
    background: #FFF;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --- フォーム全体 --- */
.contact__card .wpcf7 {
    width: 100%;
}

.contact__card .wpcf7-form {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* --- フォームグループ --- */
.contact-form__group {
    width: 900px;
    max-width: 100%;
    text-align: left;
}

.contact-form__label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form__label {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.8px;
}

/* --- 必須・任意タグ --- */
.contact-form__tag {
    display: flex;
    width: 60px;
    height: 32px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.64px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.contact-form__tag--required {
    background: #4FC3F7;
    color: #FFF;
}

.contact-form__tag--optional {
    background: #D9D9D9;
    color: #FFF;
}

/* --- テキスト入力・メール・電話 --- */
.contact-form__group input[type="text"],
.contact-form__group input[type="email"],
.contact-form__group input[type="tel"] {
    display: flex;
    width: 900px;
    max-width: 100%;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 2px solid #D9D9D9;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
    color: #313131;
    background: #FFF;
}

.contact-form__group input[type="text"]:focus,
.contact-form__group input[type="email"]:focus,
.contact-form__group input[type="tel"]:focus {
    border-color: #4FC3F7;
}

.contact-form__group input[type="text"]::placeholder,
.contact-form__group input[type="email"]::placeholder,
.contact-form__group input[type="tel"]::placeholder {
    color: #D9D9D9;
}

/* --- セレクトボックス --- */
.contact-form__group select,
.contact-form__group .wpcf7-select {
    display: flex;
    width: auto;
    padding: 10px 40px 10px 20px;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #D9D9D9;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    box-sizing: border-box;
    outline: none;
    color: #313131;
    background: #FFF;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M1 1l5 5 5-5" stroke="%23313131" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

/* --- テキストエリア --- */
.contact-form__group textarea {
    display: flex;
    width: 900px;
    max-width: 100%;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 2px solid #D9D9D9;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
    color: #313131;
    background: #FFF;
    min-height: 150px;
    resize: vertical;
}

.contact-form__group textarea:focus {
    border-color: #4FC3F7;
}

.contact-form__group textarea::placeholder {
    color: #D9D9D9;
}

/* --- ラジオボタン カスタムスタイル --- */
.contact-form__radios {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__radios .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__radios .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.contact-form__radios .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-form__radios .wpcf7-list-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
    background: #FFF;
}

.contact-form__radios .wpcf7-list-item input[type="radio"]:checked {
    background: #4FC3F7;
    border-color: #D9D9D9;
}

.contact-form__radios .wpcf7-list-item-label {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.72px;
    cursor: pointer;
}

/* --- メール配信チェックボックス --- */
.contact-form__mail-opt-in {
    display: flex;
    padding: 0 10px;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.contact-form__mail-opt-in .wpcf7-acceptance {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form__mail-opt-in .wpcf7-list-item {
    margin: 0;
}

.contact-form__mail-opt-in .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.contact-form__mail-opt-in .wpcf7-list-item-label {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.64px;
}

/* --- チェックボックス共通スタイル --- */
.contact-form__checks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 900px;
    max-width: 100%;
    text-align: left;
}

.contact-form__check-item {
    text-align: left;
}

.contact-form__check-item .wpcf7-acceptance {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form__check-item .wpcf7-list-item {
    margin: 0;
}

.contact-form__check-item .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.contact-form__check-item .wpcf7-list-item-label {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.8px;
}

/* チェックボックス カスタム外観 */
.contact-form__checks input[type="checkbox"],
.contact-form__mail-opt-in input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #D9D9D9;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
    background: #FFF;
}

.contact-form__checks input[type="checkbox"]:checked,
.contact-form__mail-opt-in input[type="checkbox"]:checked {
    background: #4FC3F7;
    border-color: #4FC3F7;
}

.contact-form__checks input[type="checkbox"]:checked::after,
.contact-form__mail-opt-in input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* --- プライバシーポリシーリンク --- */
.contact-form__privacy-link {
    color: #4FC3F7;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.8px;
    text-decoration: none;
    background-image: linear-gradient(#4FC3F7, #4FC3F7);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 1px;
}

.contact-form__privacy-link:hover {
    opacity: 0.7;
}

/* --- 送信ボタン --- */
.contact-form__submit {
    text-align: center;
}

.contact-form__submit-wrapper {
    display: inline-flex;
    width: 300px;
    height: 80px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 39px;
    border: 2px solid #CEF92E;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);
    box-sizing: border-box;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
}

.contact-form__submit-wrapper:hover {
    opacity: 0.8;
}

.contact-form__submit-wrapper input[type="submit"],
.contact-form__submit-wrapper .wpcf7-submit {
    border: none !important;
    background: none !important;
    color: #313131 !important;
    text-align: center !important;
    font-family: "Noto Sans JP", sans-serif !important;
    font-size: 30px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
    letter-spacing: 1.2px !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 39px;
    box-shadow: none !important;
}

.contact-form__submit-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- バリデーションエラー --- */
.contact-form__group .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    margin-top: 4px;
}

.contact__card .wpcf7-response-output {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    margin-top: 20px;
}

.contact__card .wpcf7 form.sent .wpcf7-response-output {
    border-color: #4FC3F7;
}

/* --- Contact レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .contact__card {
        width: 100%;
        padding: 40px 24px;
    }

    .contact-form__group {
        width: 100%;
    }

    .contact-form__group input[type="text"],
    .contact-form__group input[type="email"],
    .contact-form__group input[type="tel"],
    .contact-form__group textarea {
        width: 100%;
    }

    .contact-form__checks {
        width: 100%;
    }
}

/* --- Contact レスポンシブ（スマートフォン） --- */
@media (max-width: 1024px) {
    .contact {
        padding-bottom: 60px;
    }

    .contact__inner {
        padding: 30px 20px 0;
    }

    .contact__card {
        padding: 30px 16px;
        gap: 24px;
        border-radius: 20px;
    }

    .contact-form__label {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-form__tag {
        width: 50px;
        height: 26px;
        font-size: 14px;
        line-height: normal;
        padding: 4px 8px;
    }

    .contact-form__radios .wpcf7-list-item-label {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-form__check-item .wpcf7-list-item-label {
        font-size: 16px;
    }

    .contact-form__mail-opt-in .wpcf7-list-item-label {
        font-size: 14px;
    }

    .contact-form__privacy-link {
        font-size: 16px;
    }

    .contact-form__submit-wrapper {
        width: 240px;
        height: 64px;
    }

    .contact-form__submit-wrapper input[type="submit"] {
        font-size: 24px;
    }
}


/* ==============================================
   FV / About / Concept / School / Problem / Feature
   レスポンシブ（スマートフォン: 1024px以下）
   ============================================== */
@media (max-width: 1024px) {

    /* --- FV（ファーストビュー） --- */
    .fv__bg img {
        min-height: auto;
        object-fit: cover;
        margin-top: -80px;  /* FV画像上部のグレー部分をヘッダー裏に詰める */
    }

    .fv__copy img {
        max-width: 90%;
    }

    .fv__badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 12px;
    }

    .fv__badge {
        width: min(280px, 72vw);
    }

    .fv__cta {
        display: flex;
        width: min(350px, 90vw);
        height: 70px;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        border-radius: 39px;
        background: #4FC3F7;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.20);
        margin-top: 14px;
    }

    .fv__cta-text {
        width: 240px;
        flex-shrink: 0;
        color: #FFF;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 22px;
        font-weight: 700;
        line-height: normal;
    }

    .fv__cta-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }


    /* --- About（アバウト） --- */
    .about__inner {
        margin-top: -60px;
        padding: 0 16px 40px;
    }

    .about__title {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 6px;
    }

    .about__header {
        flex-direction: column;
        gap: 16px;
    }

    .about__h1 {
        flex-direction: column;
        gap: 16px;
    }

    .about__locations {
        gap: 10px;
    }

    .about__badge {
        width: 80px;
        font-size: 18px;
        line-height: 30px;
        padding: 6px;
    }

    .about__desc {
        font-size: 14px;
        line-height: 26px;
        margin-top: 20px;
    }

    .about__desc-highlight {
        font-size: 16px;
        line-height: 26px;
    }

    .about__cta {
        width: 280px;
        height: 56px;
        margin-top: 30px;
        gap: 12px;
    }

    .about__cta-text {
        font-size: 16px;
    }

    .about__slider-img {
        width: 200px;
    }


    /* --- Concept（コンセプト） --- */
    .concept__copy {
        display: none;
    }

    .concept__label {
        display: block;
        color: #2A4978;
        font-family: "Jost", sans-serif;
        font-size: 50px;
        font-style: italic;
        font-weight: 700;
        line-height: 30px;
        letter-spacing: 3px;
        text-align: left;
        margin: 0;
        padding: 20px 0 10px 16px;
    }

    .concept__body {
        margin-top: 0;
        padding: 0 16px 40px;
    }

    .concept__heading {
        font-size: 18px;
    }

    .concept__heading-em {
        font-size: 22px;
    }

    .concept__desc {
        font-size: 14px;
        line-height: 24px;
        margin-top: 24px;
    }

    .concept__desc-highlight {
        font-size: 16px;
        line-height: 24px;
    }

    .concept__columns {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }

    .concept__video {
        width: 100%;
    }

    .concept__detail {
        font-size: 14px;
        line-height: 24px;
    }

    .concept__detail-highlight {
        font-size: 14px;
        line-height: 24px;
    }

    .concept__detail-em {
        font-size: 16px;
        line-height: 24px;
    }


    /* --- School（スクール紹介） --- */
    .school__label {
        font-size: 50px;
        line-height: 30px;
        letter-spacing: 3px;
    }

    .school__inner {
        padding: 24px 16px 60px;
    }

    .school__header {
        margin-bottom: 30px;
    }

    .school__title {
        font-size: 28px;
    }

    .school__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .school__card {
        width: 100%;
    }

    .school__card-img {
        width: 100%;
        height: 140px;
    }

    .school__card-body {
        width: 100%;
        height: auto;
        padding: 20px 12px;
    }

    .school__card-name {
        font-size: 18px;
    }

    .school__card-day {
        font-size: 16px;
    }

    .school__banner {
        margin-top: 40px;
    }


    /* --- Problem（お悩み） --- */
    .problem__label {
        font-size: 50px;
        line-height: 30px;
        letter-spacing: 3px;
    }

    .problem__inner {
        padding: 24px 16px 0;
    }

    .problem__header {
        margin-bottom: 30px;
    }

    .problem__title {
        font-size: 18px;
        white-space: nowrap;
    }

    .problem__circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
    }

    .problem__circle--1,
    .problem__circle--2,
    .problem__circle--3 {
        transform: none;
    }

    .problem__circle {
        width: 120px;
        height: 120px;
        padding: 10px;
    }

    .problem__circle-text {
        font-size: 14px;
        line-height: 18px;
    }

    .problem__person img {
        max-width: 100%;
    }

    .problem__arrows {
        padding-top: 40px;
        margin-bottom: -50px;
    }

    .problem__arrow--1 {
        padding-bottom: 4px;
    }

    .problem__arrow svg {
        width: 80px;
        height: auto;
    }

    .problem__highlight {
        padding: 60px 16px;
    }


    /* --- Feature（選ばれる理由） --- */
    .feature {
        padding-bottom: 60px;
    }

    /* PC背景を非表示、SP背景を表示 */
    .feature__bg {
        display: none;
    }

    .feature__bg-sp {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

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

    .feature__label {
        font-size: 50px;
        line-height: 30px;
        letter-spacing: 3px;
    }

    .feature__inner {
        padding: 24px 16px 0;
    }

    .feature__header {
        margin-bottom: 30px;
    }

    .feature__title {
        font-size: 22px;
        white-space: nowrap;
        color: #FFF;
    }

    .feature__cards {
        gap: 24px;
        align-items: stretch;
    }

    .feature__card,
    .feature__card--offset {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* PC画像を非表示 */
    .feature__card-img {
        display: none;
    }

    /* SP用写真ラッパー */
    .feature__card-sp-photo {
        display: block;
        position: relative;
    }

    .feature__card-img-sp {
        display: block;
        width: 100%;
        height: auto;
    }

    /* 番号（01〜04）— 写真左上にはみ出す */
    .feature__card-number {
        display: block;
        position: absolute;
        top: -20px;
        left: 0;
        right: auto;
        width: 57px;
        height: 39px;
        color: #4FC3F7;
        text-align: center;
        font-family: "Jost", sans-serif;
        font-size: 50px;
        font-style: italic;
        font-weight: 700;
        line-height: 40px;
        white-space: nowrap;
    }

    /* SP用カード本体ラッパー */
    .feature__card-sp-body {
        display: block;
        position: relative;
    }

    .feature__card-bg-sp {
        display: block;
        width: 100%;
        height: auto;
    }

    /* タイトル（白文字・水色帯上にオーバーレイ） */
    .feature__card-title {
        display: block;
        position: absolute;
        top: 16px;
        left: 20px;
        z-index: 2;
        color: #FFF;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
        letter-spacing: normal;
        white-space: normal;
        margin: 0;
        text-align: left;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }

    /* 説明文（カード白エリア上にオーバーレイ） */
    .feature__card-desc {
        display: block;
        position: absolute;
        bottom: auto;
        left: 16px;
        right: 16px;
        top: 52%;
        z-index: 2;
        color: #313131;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 34px;
        letter-spacing: normal;
        text-align: left;
        margin: 0;
    }
}


/* ==============================================
   Tablet overrides (768px - 1024px)
   FV / Feature セクション タブレット表示修正
   ============================================== */
@media (min-width: 768px) and (max-width: 1024px) {

    /* --- FV: コンテンツ溢れ修正 --- */
    .fv__bg img {
        min-height: 70vh;
        object-fit: cover;
        object-position: center center;
        margin-top: -60px;
    }

    .fv__copy img {
        max-width: 60%;
    }

    .fv__badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
    }

    .fv__badge {
        width: 160px;
    }

    .fv__cta {
        margin-top: 20px;
    }

    /* --- Feature: セクション背景・タイトル修正 --- */
    .feature {
        background: #FFF;
    }

    .feature__title {
        color: #313131;
    }

    /* --- Feature Cards: CSSベースのカードデザイン --- */

    /* カード背景画像を非表示にし、CSSで構築 */
    .feature__card-bg-sp {
        display: none !important;
    }

    /* カード本体 */
    .feature__card-sp-body {
        display: block;
        position: relative;
        background: #FFF;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        transform: rotate(-1deg);
        border-radius: 2px;
        text-align: left;
    }

    /* タイトル - 水色帯をCSSで再現 */
    .feature__card-title {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        background: #4FC3F7;
        color: #FFF;
        padding: 14px 48px 14px 24px;
        margin: 0;
        clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.8px;
        text-shadow: none;
        white-space: normal;
        z-index: 1;
    }

    /* 説明文 - カード白エリア内 */
    .feature__card-desc {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: block;
        padding: 20px 24px 28px;
        font-size: 15px;
        line-height: 28px;
        z-index: 1;
    }
}


/* ==============================================
   コンテンツヘッダー（SWELLタイトルエリア）
   ============================================== */
.l-topTitleArea {
    position: relative;
    background-image: url('../../img/common/content-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.l-topTitleArea .l-topTitleArea__img {
    display: none;
}

.l-topTitleArea .l-topTitleArea__body .c-pageTitle {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.92px;
}

@media (max-width: 1024px) {
    .l-topTitleArea .l-topTitleArea__body .c-pageTitle {
        font-size: 28px;
        letter-spacing: 1.12px;
    }
}


/* ==============================================
   パンくずリスト（SWELL標準オーバーライド）
   ============================================== */
.p-breadcrumb {
    background: #4FC3F7;
}

.l-topTitleArea + .p-breadcrumb {
    background: #4FC3F7 !important;
}

.p-breadcrumb .p-breadcrumb__list {
    justify-content: flex-start;
}

.p-breadcrumb .p-breadcrumb__item,
.p-breadcrumb .p-breadcrumb__text,
.p-breadcrumb .p-breadcrumb__text span,
.p-breadcrumb a.p-breadcrumb__text,
.p-breadcrumb a.p-breadcrumb__text span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
}

.p-breadcrumb a.p-breadcrumb__text:hover {
    opacity: 0.7;
}


/* ==============================================
   FAQページ全幅ラッパー
   ============================================== */
.faq-page__article {
    margin: 0;
}

.faq-page__fullwide {
    margin-inline: calc(50% - 50vw);
}


/* ==============================================
   FAQ サブページ
   ============================================== */
.faq--subpage {
    background: #FFF;
    padding: 80px 0;
}

.faq--subpage .faq__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq--subpage .faq__card {
    background: #FFF;
}

@media (max-width: 1024px) {
    .faq--subpage {
        padding: 40px 0;
    }
}


/* ==============================================
   Voice（スクール生の声）ページ
   ============================================== */

/* --- 全幅ラッパー（FAQページと同じパターン） --- */
.voice-page__article {
    margin: 0;
}

.voice-page__fullwide {
    margin-inline: calc(50% - 50vw);
}

/* --- サブページ用voiceセクション --- */
.voice--subpage {
    background: linear-gradient(to bottom, #FFFFFF, #E9EDF0);
    padding: 80px 0;
}

.voice--subpage .voice__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- カード縦並びコンテナ --- */
.voice--subpage .voice-cards {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding-top: 90px;
}

/* --- レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .voice--subpage {
        padding: 40px 0;
    }

    .voice--subpage .voice-cards {
        gap: 100px;
        padding-top: 70px;
    }
}

/* --- レスポンシブ（スマートフォン） --- */
@media (max-width: 768px) {
    .voice--subpage .voice-cards {
        gap: 80px;
        padding-top: 60px;
    }
}


/* ==============================================
   料金ページ
   ============================================== */

/* --- 全幅ラッパー（FAQページと同じパターン） --- */
.pricing-page__article {
    margin: 0;
}

.pricing-page__fullwide {
    margin-inline: calc(50% - 50vw);
}

/* --- サブページ用pricingセクション --- */
.pricing--subpage {
    background: #FFF;
    padding: 80px 0;
}

.pricing--subpage .pricing__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* --- 見出しレイアウト（共通クラス） --- */
.content-header,
.pricing__header {
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #CEF92E;
    margin-bottom: 60px;
}

/* --- 見出しテキスト（共通クラス） --- */
.content-title,
.pricing__title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

/* --- テーブル --- */
.pricing__table {
    margin-bottom: 40px;
}

/* --- 水色ヘッダー --- */
.pricing__table-header {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #4FC3F7;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
}

/* --- テーブル行 --- */
.pricing__table-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    border-bottom: 1px solid #D9D9D9;
    gap: 24px;
}

/* --- 年会費行（注意書き付き） --- */
.pricing__table-row--with-note {
    align-items: center;
}

.pricing__table-row--with-note .pricing__label {
    min-width: 100px;
    text-align: right;
    flex-shrink: 0;
}

.pricing__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 500px;
    text-align: left;
}

/* --- ラベル（小学1～3年生等） --- */
.pricing__label {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
    flex-shrink: 0;
}

/* --- 金額テキスト --- */
.pricing__price {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
}

/* --- 金額の大きい数字 --- */
.pricing__price strong {
    font-size: 38px;
    letter-spacing: 1.52px;
}

/* --- 行内注意書き --- */
.pricing__row-note {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
}

/* --- 注意書きセクション --- */
.pricing__notes {
    text-align: left;
    margin-top: 24px;
}

.pricing__notes p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin: 0;
}

/* --- 料金ページ レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .pricing--subpage {
        padding: 40px 0;
    }

    .content-header,
    .pricing__header {
        margin-bottom: 40px;
    }

    .content-title,
    .pricing__title {
        font-size: 28px;
        letter-spacing: 1.12px;
    }

    .pricing__table-header {
        font-size: 22px;
    }

    .pricing__label {
        font-size: 22px;
    }

    .pricing__price {
        font-size: 22px;
    }

    .pricing__price strong {
        font-size: 30px;
    }

    .pricing__row-note {
        font-size: 16px;
    }

    .pricing__notes p {
        font-size: 16px;
        line-height: 26px;
    }
}

/* --- 料金ページ レスポンシブ（スマートフォン） --- */
@media (max-width: 768px) {
    .content-header,
    .pricing__header {
        margin-bottom: 30px;
    }

    .content-title,
    .pricing__title {
        font-size: 24px;
    }

    .pricing__table {
        margin-bottom: 30px;
    }

    .pricing__table-header {
        font-size: 20px;
        padding: 8px 10px;
    }

    .pricing__table-row {
        flex-direction: column;
        gap: 8px;
        padding: 20px 16px;
        text-align: center;
    }

    .pricing__label {
        font-size: 18px;
    }

    .pricing__price {
        font-size: 18px;
    }

    .pricing__price strong {
        font-size: 26px;
    }

    .pricing__price-wrap {
        align-items: center;
        min-width: 0;
        text-align: center;
    }

    .pricing__table-row--with-note .pricing__label {
        min-width: 0;
        text-align: center;
    }

    .pricing__row-note {
        font-size: 14px;
        text-align: center;
    }

    .pricing__notes p {
        font-size: 14px;
        line-height: 24px;
    }
}


/* ==============================================
   保護者様へページ
   ============================================== */

/* --- 全幅ラッパー --- */
.guardian-page__article {
    margin: 0;
}

.guardian-page__fullwide {
    margin-inline: calc(50% - 50vw);
}

/* --- サブページ用guardianセクション --- */
.guardian--subpage {
    background: #FFF;
    padding: 80px 0;
}

.guardian--subpage .guardian__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- セクション共通 --- */
.guardian__section {
    margin-bottom: 80px;
}

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

/* --- コンテンツタイトルラッパー --- */
.guardian__title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

/* --- リードテキスト（26px） --- */
.guardian__lead {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 1.04px;
    margin-bottom: 40px;
}

/* --- 本文テキスト（22px） --- */
.guardian__text {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.88px;
    margin-bottom: 40px;
}

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

/* --- 強調テキスト（本文中の26px部分） --- */
.guardian__text--large {
    font-size: 26px;
    letter-spacing: 1.04px;
}

/* --- 画像2枚横並び --- */
.guardian__images {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.guardian__images img {
    width: calc(50% - 15px);
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* --- 保護者ページ レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .guardian--subpage {
        padding: 40px 0;
    }

    .guardian__section {
        margin-bottom: 60px;
    }

    .guardian__title-wrap {
        margin-bottom: 40px;
    }

    .guardian__lead {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0.88px;
        margin-bottom: 30px;
    }

    .guardian__text {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.72px;
        margin-bottom: 30px;
    }

    .guardian__text--large {
        font-size: 22px;
        letter-spacing: 0.88px;
    }

    .guardian__images {
        gap: 20px;
    }

    .guardian__images img {
        width: calc(50% - 10px);
    }
}

/* --- 保護者ページ レスポンシブ（スマートフォン） --- */
@media (max-width: 768px) {
    .guardian__section {
        margin-bottom: 40px;
    }

    .guardian__title-wrap {
        margin-bottom: 30px;
    }

    .guardian__lead {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .guardian__text {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .guardian__text--large {
        font-size: 20px;
    }

    .guardian__images {
        flex-direction: column;
        gap: 16px;
    }

    .guardian__images img {
        width: 100%;
    }
}


/* ==============================================
   入会までの流れページ
   ============================================== */

/* --- 全幅ラッパー --- */
.flow-page__article {
    margin: 0;
}

.flow-page__fullwide {
    margin-inline: calc(50% - 50vw);
}

/* --- サブページ用flowセクション --- */
.flow--subpage {
    background: #FFF;
    padding: 80px 0;
}

.flow--subpage .flow__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* --- テキストブロック --- */
.flow__text-block {
    text-align: center;
    margin-top: 60px;
}

.flow__text-main {
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.88px;
    margin: 0 0 20px;
}

.flow__text-note {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0.72px;
    margin: 0;
}

/* --- レスポンシブ（タブレット・スマートフォン） --- */
@media (max-width: 1024px) {
    .flow--subpage {
        padding: 40px 0;
    }

    .flow__text-block {
        margin-top: 40px;
    }

    .flow__text-main {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.72px;
    }

    .flow__text-note {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.64px;
    }
}

@media (max-width: 768px) {
    .flow__text-main {
        font-size: 16px;
        line-height: 26px;
    }

    .flow__text-note {
        font-size: 14px;
        line-height: 24px;
    }
}


/* ==============================================
   ケケイッソドリブル塾とはページ
   ============================================== */

/* --- 全幅ラッパー --- */
.about-page__article {
    margin: 0;
}

.about-page__fullwide {
    margin-inline: calc(50% - 50vw);
}

/* --- サブページ用aboutpageセクション --- */
.aboutpage--subpage {
    background: linear-gradient(to bottom, #FFFFFF, #E9EDF0);
    padding: 80px 0;
}

.aboutpage--subpage .aboutpage__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- セクション共通 --- */
.aboutpage__section {
    margin-bottom: 80px;
}

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

/* --- コンテンツタイトルラッパー --- */
.aboutpage__title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

/* --- リードテキスト（26px bold - 箇条書き・強調） --- */
.aboutpage__lead {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.04px;
    margin-bottom: 40px;
}

/* --- 本文テキスト（22px） --- */
.aboutpage__text {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.88px;
    margin-bottom: 40px;
}

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

/* --- 強調テキスト（本文中の26px部分） --- */
.aboutpage__text--large {
    font-size: 26px;
    letter-spacing: 1.04px;
}

/* --- 画像2枚横並び --- */
.aboutpage__images {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.aboutpage__images img {
    width: calc(50% - 15px);
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* --- 単体画像（幅いっぱい） --- */
.aboutpage__image-single {
    margin-bottom: 40px;
}

.aboutpage__image-single img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* --- 動画ラッパー（中央寄せ） --- */
.aboutpage__video-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* --- Aboutページ レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .aboutpage--subpage {
        padding: 40px 0;
    }

    .aboutpage__section {
        margin-bottom: 60px;
    }

    .aboutpage__title-wrap {
        margin-bottom: 40px;
    }

    .aboutpage__lead {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0.88px;
        margin-bottom: 30px;
    }

    .aboutpage__text {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.72px;
        margin-bottom: 30px;
    }

    .aboutpage__text--large {
        font-size: 22px;
        letter-spacing: 0.88px;
    }

    .aboutpage__images {
        gap: 20px;
    }

    .aboutpage__images img {
        width: calc(50% - 10px);
    }
}

/* --- Aboutページ レスポンシブ（スマートフォン） --- */
@media (max-width: 768px) {
    .aboutpage__section {
        margin-bottom: 40px;
    }

    .aboutpage__title-wrap {
        margin-bottom: 30px;
    }

    .aboutpage__lead {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .aboutpage__text {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .aboutpage__text--large {
        font-size: 20px;
    }

    .aboutpage__images {
        flex-direction: column;
        gap: 16px;
    }

    .aboutpage__images img {
        width: 100%;
    }
}


/* ==============================================
   スクール紹介ページ
   ============================================== */

/* --- 全幅ラッパー（他サブページと同パターン） --- */
.school-page__article {
    margin: 0;
}

.school-page__fullwide {
    margin-inline: calc(50% - 50vw);
}

/* --- サブページ用セクション --- */
.schoolpage--subpage {
    background: #FFF;
    padding: 80px 0;
}

.schoolpage--subpage .schoolpage__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}


/* --- マップ --- */
.schoolpage__map {
    text-align: center;
    margin-bottom: 60px;
}

.schoolpage__map img {
    max-width: 100%;
    height: auto;
}


/* --- 県別ナビゲーション --- */
.schoolpage__nav {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    justify-content: center;
}

.schoolpage__nav-group {
    text-align: center;
}

.schoolpage__pref-label {
    align-self: stretch;
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
    margin: 0 0 20px;
}

.schoolpage__nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.schoolpage__nav-btn {
    display: flex;
    width: 240px;
    height: 48px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.3s;
}

.schoolpage__nav-btn:hover {
    opacity: 0.7;
}

.schoolpage__nav-btn--blue {
    border: 2px solid #4FC3F7;
}

.schoolpage__nav-btn--green {
    border: 2px solid #CEF92E;
}


/* --- スクールカード --- */
.schoolpage__card {
    margin-bottom: 80px;
}

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

/* --- カードタイトルバー --- */
.schoolpage__card-title {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
}

.schoolpage__card-title--blue {
    background: #4FC3F7;
}

.schoolpage__card-title--green {
    background: #CEF92E;
}

/* --- ボールタッチ教室 特殊タイトル --- */
.schoolpage__card-title--special {
    flex-direction: column;
    gap: 0;
    padding: 16px 10px;
}

.schoolpage__card-subtitle {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.88px;
    color: #FFF;
}

.schoolpage__card-maintitle {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #FFF;
}

/* --- カード本体（2カラム） --- */
.schoolpage__card-body {
    display: flex;
    gap: 40px;
    padding: 40px 30px;
}

.schoolpage__card-info {
    flex: 1 0 auto;
    overflow: visible;
}

.schoolpage__card-coach {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- 情報行（会場 / スケジュール） --- */
.schoolpage__info-row {
    display: flex;
    gap: 48px;
    padding: 24px 0;
}

.schoolpage__info-label {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
    flex-shrink: 0;
    width: 160px;
    white-space: nowrap;
}

.schoolpage__info-content {
    flex: 1 0 auto;
    overflow: visible;
}

/* --- 施設名 --- */
.schoolpage__venue-name {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
    margin: 0 0 8px;
}

.schoolpage__venue-sub {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.72px;
}

/* --- 住所 --- */
.schoolpage__venue-address {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.72px;
    margin: 0;
}

/* --- 罫線 --- */
.schoolpage__divider {
    border-bottom: 1px solid #D9D9D9;
}

/* --- スケジュール --- */
.schoolpage__schedule-day {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
    margin: 0 0 8px;
}

.schoolpage__schedule-day--second {
    margin-top: 16px;
}

.schoolpage__schedule-detail {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.72px;
    margin: 0;
    white-space: nowrap;
    overflow-wrap: normal;
}

/* --- コーチ --- */
.schoolpage__coach-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.schoolpage__coach-title {
    align-self: stretch;
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
    margin: 0 0 8px;
}

.schoolpage__coach-role {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.72px;
    margin: 0 0 4px;
    text-align: center;
}

.schoolpage__coach-name {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.12px;
    margin: 0;
    text-align: center;
}

/* --- 詳細ボタン --- */
.schoolpage__card-action {
    text-align: center;
    padding: 0 30px 40px;
}

.schoolpage__detail-btn {
    display: inline-flex;
    width: 540px;
    max-width: 100%;
    height: 80px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 39px;
    border: 2px solid #CEF92E;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.04px;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.3s;
}

.schoolpage__detail-btn:hover {
    opacity: 0.85;
}

.schoolpage__detail-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.schoolpage__detail-btn-sp {
    display: none;
}


/* --- スクールページ レスポンシブ（タブレット） --- */
@media (max-width: 1024px) {
    .schoolpage--subpage {
        padding: 40px 0;
    }

    .schoolpage__map {
        margin-bottom: 40px;
    }

    .schoolpage__nav {
        gap: 40px;
        margin-bottom: 60px;
    }

    .schoolpage__pref-label {
        font-size: 24px;
        letter-spacing: 0.96px;
    }

    .schoolpage__nav-btn {
        width: 200px;
        height: 44px;
        font-size: 18px;
    }

    .schoolpage__card {
        margin-bottom: 60px;
    }

    .schoolpage__card-title {
        font-size: 28px;
        letter-spacing: 1.12px;
    }

    .schoolpage__card-maintitle {
        font-size: 28px;
    }

    .schoolpage__card-body {
        gap: 30px;
        padding: 30px 20px;
    }

    .schoolpage__info-label {
        font-size: 22px;
        width: 120px;
    }

    .schoolpage__venue-name {
        font-size: 22px;
    }

    .schoolpage__coach-photo {
        width: 160px;
        height: 160px;
    }

    .schoolpage__coach-name {
        font-size: 24px;
    }

    .schoolpage__detail-btn {
        width: 440px;
        height: 70px;
        font-size: 22px;
    }

    .schoolpage__card-action {
        padding: 0 20px 30px;
    }
}

/* --- スクールページ レスポンシブ（スマートフォン） --- */
@media (max-width: 768px) {
    .schoolpage__nav {
        flex-direction: column;
        gap: 30px;
    }

    .schoolpage__nav-buttons {
        gap: 12px;
    }

    .schoolpage__nav-btn {
        width: calc(50% - 6px);
        height: 42px;
        font-size: 16px;
    }

    .schoolpage__card-title {
        font-size: 24px;
        letter-spacing: 0.96px;
    }

    .schoolpage__card-maintitle {
        font-size: 24px;
    }

    .schoolpage__card-subtitle {
        font-size: 16px;
    }

    .schoolpage__card-body {
        flex-direction: column;
        gap: 30px;
        padding: 24px 16px;
    }

    .schoolpage__card-coach {
        order: -1;
    }

    .schoolpage__info-row {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }

    .schoolpage__info-label {
        font-size: 20px;
        width: auto;
    }

    .schoolpage__venue-name {
        font-size: 20px;
    }

    .schoolpage__venue-address,
    .schoolpage__schedule-detail {
        font-size: 16px;
    }

    .schoolpage__schedule-day {
        font-size: 18px;
    }

    .schoolpage__coach-photo {
        width: 140px;
        height: 140px;
    }

    .schoolpage__coach-title {
        font-size: 18px;
    }

    .schoolpage__coach-name {
        font-size: 22px;
    }

    .schoolpage__detail-btn {
        width: 100%;
        height: 60px;
        font-size: 20px;
        border-radius: 30px;
    }

    .schoolpage__detail-btn-pc {
        display: none;
    }

    .schoolpage__detail-btn-sp {
        display: inline;
    }

    .schoolpage__schedule-detail {
        white-space: normal;
    }

    .schoolpage__card-action {
        padding: 0 16px 30px;
    }
}


/* ==============================================
   スクール詳細ページ（北越谷校）
   ============================================== */

/* --- ページレイアウト --- */
.school-detail-page__article {
    margin: 0;
}

.school-detail-page__fullwide {
    margin-inline: calc(50% - 50vw);
}

/* --- セクション共通 --- */
.school-detail--subpage {
    padding: 60px 0 0;
}

.school-detail__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ヒーロー画像 --- */
.school-detail__hero {
    text-align: center;
    margin-bottom: 60px;
}

.school-detail__hero img {
    max-width: 780px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* --- スクール情報セクション --- */
.school-detail__info {
    max-width: 1280px;
    margin: 0 auto 80px;
}

.school-detail__title {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    background: #4FC3F7;
}

.school-detail__body {
    display: flex;
    gap: 40px;
    padding: 40px 30px;
}

.school-detail__body-left {
    flex: 1;
}

.school-detail__body-right {
    flex-shrink: 0;
}

.school-detail__body-right iframe {
    display: block;
}

.school-detail__info-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.school-detail__info-label {
    flex-shrink: 0;
    width: 120px;
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.88px;
}

.school-detail__info-content {
    flex: 1;
}

.school-detail__venue-name {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin: 0 0 8px;
}

.school-detail__venue-sub {
    font-size: 16px;
    font-weight: 500;
}

.school-detail__venue-address {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.school-detail__divider {
    border-top: 1px solid #D9D9D9;
    margin: 20px 0;
}

.school-detail__schedule-day {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.88px;
    margin: 0 0 8px;
}

.school-detail__schedule-detail {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.72px;
    margin: 0;
    white-space: nowrap;
}

/* --- 担当コーチカード --- */
.school-detail__coach-section {
    padding: 0 0 80px;
}

.school-detail__coach-card {
    display: flex;
    height: 397px;
    align-items: center;
    justify-content: center;
    gap: 100px;
    align-self: stretch;
    background: #E9EDF0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.school-detail__coach-left {
    flex-shrink: 0;
    text-align: center;
}

.school-detail__coach-label {
    align-self: stretch;
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
    margin: 0 0 8px;
}

.school-detail__coach-role {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.72px;
    margin: 0;
}

.school-detail__coach-name {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.72px;
    margin: 0 0 16px;
}

.school-detail__coach-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.school-detail__coach-right {
    flex-shrink: 0;
}

.school-detail__coach-block {
    margin-bottom: 16px;
}

.school-detail__coach-heading {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.88px;
    margin: 0 0 8px;
}

.school-detail__coach-text {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.72px;
    margin: 0;
}

.school-detail__coach-achievement {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.88px;
    margin: 0;
}

/* --- ABOUTセクション --- */
.school-detail__about {
    position: relative;
    overflow: hidden;
    background: #E9EDF0;
    padding: 0 0 80px;
}

.school-detail__about-label-area {
    position: relative;
    overflow: visible;
    background: #E9EDF0;
    text-align: center;
    padding: clamp(24px, 3vw, 40px) 20px clamp(120px, 13vw, 200px);
}

.school-detail__about-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-width: none;
    transform: none;
    z-index: 0;
}

.school-detail__about-label {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 1280px);
    color: #E9EDF0;
    font-family: "Jost", sans-serif;
    font-size: 120px;
    font-style: italic;
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: 6.4px;
    margin: 0 auto;
    padding-left: 20px;
    text-align: left;
    transform: translateY(-10px);
}

.school-detail__about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(104px, 11vw, 140px) 20px 0;
    text-align: center;
}

.school-detail__about-header {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #CEF92E;
    margin-top: clamp(16px, 3vw, 48px);
    margin-bottom: 0;
}

.school-detail__about-title {
    color: #313131;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 0;
}

.school-detail__about-text-block {
    margin-bottom: 60px;
}

.school-detail__about-text {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.88px;
    margin: 0 0 24px;
}

.school-detail__about-text:last-child {
    margin-bottom: 0;
}

.school-detail__about-highlight {
    background: #4FC3F7;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 1.2px;
    padding: 2px 4px;
}

.school-detail__about-highlight-last {
    letter-spacing: 1.2px;
}

.school-detail__about-highlight-gu {
    letter-spacing: 6px;
}

/* --- ABOUT 画像3枚 --- */
.school-detail__about-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.school-detail__about-images img {
    flex: 1;
    max-width: calc((100% - 40px) / 3);
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* --- もっと詳しくみるボタン --- */
.school-detail__about-cta {
    text-align: center;
    margin-bottom: 60px;
}

.school-detail__about-btn {
    display: inline-flex;
    width: 420px;
    max-width: 100%;
    height: 80px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 39px;
    background: #4FC3F7;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);
    text-decoration: none;
    transition: opacity 0.3s;
}

.school-detail__about-btn:hover {
    opacity: 0.85;
}

.school-detail__about-btn-text {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.88px;
}

.school-detail__about-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* --- 声セクションリンクボックス --- */
.school-detail__voice-box {
    display: flex;
    width: 1170px;
    max-width: 100%;
    height: 240px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    background: #FFF;
    margin: 0 auto;
    box-sizing: border-box;
}

.school-detail__voice-box-text {
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.04px;
    margin: 0;
}

.school-detail__voice-box-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

/* --- 共通ボタン（詳細を見る系） --- */
.detail-btn {
    display: inline-flex;
    width: 540px;
    max-width: 100%;
    height: 80px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 39px;
    border: 2px solid #CEF92E;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);
    color: #313131;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.04px;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.3s;
}

.detail-btn:hover {
    opacity: 0.85;
}

.detail-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ==============================================
   スクール詳細ページ レスポンシブ（タブレット）
   ============================================== */
@media (max-width: 1024px) {
    .school-detail__hero img {
        max-width: 600px;
    }

    .school-detail__title {
        font-size: 28px;
        letter-spacing: 1.12px;
    }

    .school-detail__body {
        gap: 30px;
        padding: 30px 20px;
    }

    .school-detail__body-right iframe {
        width: 360px;
        max-width: 100%;
        height: 270px;
    }

    .school-detail__info-label {
        width: 120px;
        font-size: 18px;
        white-space: nowrap;
    }

    .school-detail__venue-name {
        font-size: 18px;
    }

    .school-detail__schedule-day {
        font-size: 18px;
    }

    .school-detail__schedule-detail {
        font-size: 16px;
        white-space: normal;
    }

    .school-detail__coach-card {
        gap: 40px;
        padding: 0 30px;
    }

    .school-detail__coach-photo {
        width: 160px;
        height: 160px;
    }

    .school-detail__coach-heading {
        font-size: 20px;
    }

    .school-detail__coach-text {
        font-size: 16px;
    }

    .school-detail__coach-achievement {
        font-size: 20px;
    }

    .school-detail__coach-right {
        flex-shrink: 1;
        min-width: 0;
    }

    .school-detail__about-images {
        gap: 16px;
    }

    .school-detail__about-bg-img {
        left: 50%;
        width: 140%;
        transform: translateX(-50%);
    }

    .school-detail__about-label {
        color: #E9EDF0;
        font-size: 120px;
        padding-left: 16px;
        transform: translateY(-8px);
    }

    .school-detail__about-title {
        font-size: 28px;
        letter-spacing: 1.12px;
    }

    .school-detail__about-inner {
        padding-top: 104px;
    }

    .school-detail__about-header {
        margin-top: 28px;
    }

    .school-detail__about-text {
        font-size: 18px;
        line-height: 34px;
    }

    .school-detail__about-highlight {
        font-size: 24px;
        line-height: 40px;
    }

    .school-detail__voice-box {
        height: auto;
        padding: 30px 20px;
    }

    .school-detail__voice-box-text {
        font-size: 22px;
    }

    .school-detail__voice-box-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .detail-btn {
        width: 440px;
        height: 70px;
        font-size: 22px;
    }
}


/* ==============================================
   スクール詳細ページ レスポンシブ（スマートフォン）
   ============================================== */
@media (max-width: 768px) {
    .school-detail--subpage {
        padding: 40px 0 0;
    }

    .school-detail__hero {
        margin-bottom: 40px;
    }

    .school-detail__hero img {
        max-width: 100%;
        border-radius: 0;
    }

    .school-detail__info {
        margin-bottom: 40px;
    }

    .school-detail__title {
        font-size: 24px;
        letter-spacing: 0.96px;
    }

    .school-detail__body {
        flex-direction: column;
        gap: 20px;
        padding: 20px 16px;
    }

    .school-detail__body-right {
        width: 100%;
    }

    .school-detail__body-right iframe {
        width: 100%;
        height: 280px;
    }

    .school-detail__info-label {
        width: 90px;
        font-size: 16px;
    }

    .school-detail__venue-name {
        font-size: 16px;
        line-height: 24px;
    }

    .school-detail__venue-address {
        font-size: 14px;
    }

    .school-detail__schedule-day {
        font-size: 16px;
    }

    .school-detail__schedule-detail {
        font-size: 14px;
        line-height: 24px;
        white-space: normal;
    }

    .school-detail__coach-section {
        padding: 0 0 40px;
    }

    .school-detail__coach-card {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding: 30px 20px;
    }

    .school-detail__coach-photo {
        width: 140px;
        height: 140px;
    }

    .school-detail__coach-label {
        font-size: 18px;
    }

    .school-detail__coach-heading {
        font-size: 18px;
    }

    .school-detail__coach-text {
        font-size: 14px;
        line-height: 24px;
    }

    .school-detail__coach-achievement {
        font-size: 18px;
        line-height: 26px;
    }

    .school-detail__about {
        padding: 0 0 40px;
    }

    .school-detail__about-bg-img {
        left: 50%;
        width: 235%;
        max-width: none;
        transform: translateX(-50%);
    }

    .school-detail__about-label {
        color: #E9EDF0;
        font-size: 60px;
        line-height: 0.84;
        letter-spacing: 3px;
        width: 100%;
        padding-left: 0;
        transform: translateY(-4px);
    }

    .school-detail__about-inner {
        padding: 88px 16px 0;
    }

    .school-detail__about-header {
        margin: 0;
        transform: translateY(-8px);
    }

    .school-detail__about-label-area {
        padding: 20px 16px 88px;
    }

    .school-detail__about-title {
        font-size: 24px;
    }

    .school-detail__about-text-block {
        margin-bottom: 30px;
    }

    .school-detail__about-text {
        font-size: 16px;
        line-height: 30px;
    }

    .school-detail__about-highlight {
        font-size: 20px;
        line-height: 36px;
    }

    .school-detail__about-images {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
    }

    .school-detail__about-images img {
        max-width: 100%;
    }

    .school-detail__about-cta {
        margin-bottom: 30px;
    }

    .school-detail__about-btn {
        width: 100%;
        max-width: 340px;
        height: 56px;
    }

    .school-detail__about-btn-text {
        font-size: 18px;
    }

    .school-detail__voice-box {
        height: auto;
        padding: 24px 16px;
        gap: 20px;
    }

    .school-detail__voice-box-text {
        font-size: 18px;
        text-align: center;
        line-height: 28px;
    }

    .school-detail__voice-box-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .detail-btn {
        width: 100%;
        max-width: 340px;
        height: 56px;
        font-size: 18px;
        border-radius: 30px;
    }
}
