/* ==============================================
   FV（ファーストビュー）
   ============================================== */
.fv {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.fv__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- コピー画像 --- */
.fv__copy {
  text-align: center;
}

.fv__copy img {
  max-width: 820px;
  height: auto;
}

/* --- バッジ --- */
.fv__badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.fv__badge {
  width: 230px;
  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.2);
  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;
}

/* --- タイトルヘッダー --- */
.about__header {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 77px);
}

/* --- H1 テキストタイトル --- */
.about__h1 {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #313131;
}

.about__h1-line1 {
  display: block;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.6;
  letter-spacing: 1.6px;
  white-space: nowrap;
}

.about__h1-ru {
  letter-spacing: 9.6px;
}

.about__h1-tokka {
  display: inline-block;
  background: #4fc3f7;
  color: #fff;
  padding: 0.1em 0.3em;
  letter-spacing: 1.6px;
}

.about__h1-tokka-gata {
  letter-spacing: 0;
}

.about__h1-line2 {
  display: block;
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.4;
  letter-spacing: 2.4px;
  margin-left: -2px;
  white-space: nowrap;
}

/* --- 地域バッジ --- */
.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.2);
  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: 100px;
}

.about__slider-track {
  --marquee-shift: 1480px; /* 5枚 × 280px + 5 × 16px gap（1セット分） */
  display: flex;
  gap: 16px;
  width: max-content;
  animation: about-marquee 50s 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(var(--marquee-shift) * -1));
  }
}

/* ==============================================
   School（スクール紹介）セクション
   ============================================== */
.school {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 0;
}

/* --- SCHOOL ラベル（セクション上端・左寄せ） --- */
.school__label {
  color: #e9edf0;
  font-family: "Jost", sans-serif;
  font-size: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 6.4px;
  text-align: left;
  margin: 0;
  padding-top: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
}

/* --- セクション内部 --- */
.school__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  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-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* --- カード --- */
.school__card {
  width: 300px;
  border-radius: 0 20px 0 20px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* --- カードホバー効果 --- */
.school__card-link:hover .school__card {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.18);
}

/* --- カード本体 --- */
.school__card-body {
  width: 300px;
  height: 200px;
  background: #fff;
  border-radius: 0 20px 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 a {
  display: block;
}

.school__banner img {
  max-width: 688px;
  width: 100%;
  height: auto;
}

.school__banner--second {
  margin-top: 30px;
}

/* ==============================================
   Concept（コンセプト）セクション
   ============================================== */
.concept {
  position: relative;
  overflow: hidden;
  background: #223a5e;
}

/* --- ABOUT テキストラベル --- */
.concept__label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  color: #223a5e;
  font-family: "Jost", sans-serif;
  font-size: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 6.4px;
  text-align: left;
  margin: 0 auto;
  padding-top: 40px;
  max-width: 1280px;
  padding-left: 20px;
}

/* --- セクション上部背景画像 --- */
.concept__copy {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

/* --- 濃紺背景エリア --- */
.concept__body {
  position: relative;
  z-index: 2;
  margin-top: -260px;
  padding: 0 20px 100px;
}

.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;
  margin-top: 0;
}

.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: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 6.4px;
  text-align: left;
  margin: 0;
  padding-top: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
}

/* --- セクション内部 --- */
.problem__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 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;
}

/* --- テキストボックス --- */
.problem__highlight-text {
  display: flex;
  width: 914px;
  max-width: 100%;
  height: 140px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-sizing: border-box;
}

.problem__highlight-copy {
  color: #313131;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 1.2px;
  margin: 0;
}

.problem__highlight-accent {
  color: #4fc3f7;
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 1.6px;
}

/* ==============================================
   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: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 6.4px;
  text-align: left;
  margin: 0;
  padding-top: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
}

/* --- セクション内部 --- */
.feature__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 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 100px;
  overflow: hidden;
}

/* --- VOICE ラベル --- */
.voice__label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  color: #e9edf0;
  font-family: "Jost", sans-serif;
  font-size: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 6.4px;
  text-align: left;
  margin: 0 auto;
  padding-top: 40px;
  max-width: 1280px;
  padding-left: 20px;
}

/* --- 白い三角背景 --- */
.voice__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  line-height: 0;
}

.voice__bg img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- セクション内部 --- */
.voice__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: -260px;
  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 {
  margin: 0 auto;
  position: relative;
}

/* --- スライド --- */
.voice-slide {
  padding: 0 20px 30px;
  max-width: 1000px;
  padding-top: 50px;
  width: 100%;
  overflow: hidden;
}

/* --- Slick overflow対応（上方向のみvisibleにしてアイコン表示、左右はhiddenで隣接スライドを隠す） --- */
.voice-slider {
  overflow: visible;
  max-width: 1000px;
  padding-top: 100px;
}

.voice-slider .slick-list {
  overflow: hidden;
}

/* --- ボイスカード --- */
.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;
  transition: opacity 0.3s ease;
}

.voice-more a:hover {
  opacity: 0.7;
}

.voice-more a svg {
  display: block;
  transition: transform 0.3s ease;
}

.voice-more a:hover svg {
  transform: translateX(5px);
}

/* --- 隣接スライドを非表示（アクティブカードのみ表示） --- */
.voice-slider .slick-slide {
  opacity: 1;
  transition: opacity 0.4s;
}

.voice-slider .slick-slide.slick-active {
  opacity: 1;
}

/* --- slick矢印カスタム --- */
.voice-slider .slick-prev,
.voice-slider .slick-next {
  position: absolute;
  top: 55%;
  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: -60px;
}

.voice-slider .slick-next {
  right: -60px;
}

.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: 50px;
    line-height: 30px;
    letter-spacing: 3px;
    padding-top: 4px;
    padding-left: 16px;
  }

  .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 {
    position: static;
    font-size: 50px;
    line-height: 30px;
    letter-spacing: 3px;
    padding-top: 4px;
    padding-left: 16px;
    color: #fff;
  }

  .voice__bg {
    display: none;
  }

  .voice {
    padding: 0 0 60px;
  }

  .voice__inner {
    margin-top: 0;
  }

  .voice__title {
    font-size: 28px;
  }

  .voice__header {
    padding: 6px 10px;
    margin-bottom: 20px;
  }

  .voice-slider {
    padding: 0 40px;
  }

  .voice-slide {
    padding: 0 0 30px;
  }

  .voice-card {
    padding: 50px 20px 25px;
    border-radius: 12px;
    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: 30px;
    height: 30px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .voice-slider .slick-prev svg,
  .voice-slider .slick-next svg {
    width: 30px;
    height: 30px;
  }

  .voice-slider .slick-prev {
    left: 2px;
  }

  .voice-slider .slick-next {
    right: 2px;
  }
}

/* ==============================================
   Message（代表メッセージ）セクション
   ============================================== */

/* --- 上部エリア（グレー背景） --- */
.message__top {
  background: #e9edf0;
}

/* --- MESSAGE ラベル（feature__labelと同パターン） --- */
.message__label {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 6.4px;
  text-align: left;
  margin: 0;
  padding-top: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
}

/* --- セクション内部 --- */
.message__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 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: 40px 60px;
  box-sizing: border-box;
}

.message__hero-overlay-img {
  max-width: 680px;
  width: 100%;
  height: auto;
  display: block;
}

/* --- テキストエリア（白背景） --- */
.message__body {
  background: #fff;
  padding: 80px 0 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;
}

/* --- 白→グレーのトランジション --- */
.message__transition {
  position: relative;
  width: 100%;
  height: 200px;
  background: #e9edf0;
  overflow: hidden;
}

.message__transition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.message__transition img {
  display: none;
}

/* --- 推薦セクション（グレー背景） --- */
.message__recommend {
  background: #e9edf0;
  padding: 0 0 100px;
  position: relative;
  margin-top: 0;
}

.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;
  background: #e3f4fc;
  padding: 40px;
  box-sizing: border-box;
}

.recommend-card__role {
  align-self: stretch;
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  text-align: left;
  margin: 0 0 8px;
}

.recommend-card__name {
  align-self: stretch;
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  text-align: left;
  margin: 0 0 24px;
}

.recommend-card__text {
  align-self: stretch;
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.72px;
  text-align: left;
  margin: 0 0 16px;
}

.recommend-card__text:last-child {
  margin-bottom: 0;
}

.recommend-card__body {
  margin-top: 24px;
}

/* --- もっとみるリンク --- */
.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;
  transition: opacity 0.3s ease;
}

.message-more a:hover {
  opacity: 0.7;
}

.message-more a svg {
  display: block;
  transition: transform 0.3s ease;
}

.message-more a:hover svg {
  transform: translateX(5px);
}

/* --- ドットページネーション（矢印込み） --- */
.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: 50px;
    line-height: 30px;
    letter-spacing: 3px;
    padding-top: 4px;
    padding-left: 16px;
  }

  .message__inner {
    padding: 30px 20px 0;
  }

  .message__header {
    padding: 6px 10px;
    margin-bottom: 20px;
  }

  .message__title {
    font-size: 28px;
  }

  .message__hero-catch {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.88px;
  }

  .message__hero-overlay {
    bottom: 0;
    left: 0;
    padding: 0 0 6px 6px;
    width: auto;
  }

  .message__hero-overlay-img {
    max-width: none;
    width: 85%;
  }

  .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__transition {
    height: 80px;
  }

  .message__recommend {
    padding: 20px 0 60px;
    margin-top: 0;
  }

  .message__recommend-title {
    font-size: 24px;
  }

  .message__recommend-header {
    padding: 6px 10px;
    margin-bottom: 20px;
  }

  .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;
    padding: 24px;
  }

  .recommend-card__role {
    font-size: 16px;
  }

  .recommend-card__name {
    font-size: 22px;
  }

  .recommend-card__text {
    font-size: 14px;
    line-height: 24px;
  }

  .message-slider .slick-dots {
    gap: 6px;
  }

  .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: 16px;
  }

  .message-more a {
    font-size: 18px;
  }
}

/* ==============================================
   News（お知らせ）セクション
   ============================================== */
.news {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 0;
  padding-bottom: 100px;
}

/* --- セクション内部 --- */
.news__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 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: 60px 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: auto;
    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 100px;
}

/* --- トップページのみFAQ背景をグレーに --- */
body.home .faq {
  background: #e9edf0;
}

.faq__label-area {
  background: #fff;
  overflow: hidden;
  border: none;
}

body.home .faq__label-area {
  background: #e9edf0;
}

.section-label--faq {
  color: #e9edf0;
}

body.home .section-label--faq {
  color: #fff;
}

.faq__label-area .section-label {
  line-height: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.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: 34px;
  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;
  background: #fff;
  overflow: hidden;
}

.school-detail-page .section-label--faq {
  color: #e9edf0;
}

.school-detail-page .faq__label-area .section-label {
  padding-top: 40px;
  padding-bottom: 40px;
}

.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 .section-label {
    transform: none;
    padding-top: 4px;
    padding-bottom: 10px;
  }

  .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__label-area .section-label {
    padding-top: 4px;
    padding-bottom: 10px;
  }

  .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;
    padding-top: 4px;
    padding-bottom: 10px;
  }

  .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 {
    width: 100%;
    height: auto;
    display: block;
  }

  .trial__inner {
    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.2);
  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__inner {
    z-index: 2;
  }

  .fv__bg img {
    min-height: auto;
    object-fit: cover;
    margin-top: 0; /* v2画像はグレー部分なし */
  }

  .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.2);
    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: 12px;
    padding-bottom: 4px;
  }

  .about__header {
    flex-direction: column;
    gap: 16px;
  }

  .about__h1 {
    text-align: center;
  }

  .about__h1-line1 {
    font-size: clamp(18px, 5.3vw, 40px);
    letter-spacing: 0.8px;
  }

  .about__h1-ru {
    letter-spacing: 3px;
  }

  .about__h1-tokka {
    margin-left: -2px;
    letter-spacing: 0.8px;
  }

  .about__h1-tokka-gata {
    margin-right: 3px;
  }

  .about__h1-line2 {
    font-size: clamp(24px, 7.5vw, 60px);
    white-space: normal;
  }

  .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-track {
    --marquee-shift: 648px; /* 3枚 × 200px + 3 × 16px gap（1セット分） */
  }

  .about__slider-img {
    width: 200px;
  }

  /* --- Concept（コンセプト） --- */
  .concept__copy {
    display: block;
    position: relative;
    z-index: 1;
  }

  .concept__label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    color: #223a5e;
    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: 4px 0 10px 16px;
  }

  .concept__body {
    margin-top: -16px;
    padding: 0 10px 40px;
  }

  .concept__heading {
    font-size: 16px;
    text-align: center;
  }

  .concept__heading-em {
    font-size: 20px;
  }

  .concept__desc {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }

  .concept__list {
    margin: 4px 0;
  }

  .concept__list li {
    line-height: 28px;
  }

  .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;
    padding-top: 4px;
    padding-left: 16px;
  }

  .school__inner {
    padding: 16px 16px 60px;
  }

  .school__header {
    padding: 6px 10px;
    margin-bottom: 20px;
  }

  .school__title {
    font-size: 28px;
  }

  .school__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .school__card {
    width: 100%;
  }

  .school__card-body {
    width: 100%;
    height: auto;
    padding: 30px 12px;
    border-radius: 0 20px 0 20px;
  }

  .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;
    padding-top: 4px;
    padding-left: 16px;
  }

  .problem__inner {
    padding: 24px 16px 0;
  }

  .problem__header {
    padding: 6px 10px;
    margin-bottom: 20px;
  }

  .problem__title {
    font-size: 18px;
    white-space: nowrap;
  }

  .problem__circles {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
  }

  .problem__circle--1,
  .problem__circle--2,
  .problem__circle--3 {
    transform: none;
  }

  .problem__circle {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    padding: 12px;
  }

  .problem__circle-text {
    font-size: clamp(12px, 3.5vw, 16px);
    line-height: 1.5;
  }

  .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;
  }

  .problem__highlight-text {
    height: auto;
    padding: 20px 16px;
  }

  .problem__highlight-copy {
    font-size: 20px;
    line-height: 40px;
  }

  .problem__highlight-accent {
    font-size: 26px;
    line-height: 40px;
  }

  /* --- 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;
    padding-top: 4px;
    padding-left: 16px;
  }

  .feature__inner {
    padding: 24px 16px 0;
  }

  .feature__header {
    padding: 6px 10px;
    margin-bottom: 20px;
  }

  .feature__title {
    font-size: 22px;
    white-space: nowrap;
    color: #313131;
  }

  .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: 90%;
    height: auto;
    margin: 0 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: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: normal;
    white-space: normal;
    margin: 0;
    text-align: left;
    text-shadow: none;
  }

  /* 説明文（カード白エリア上にオーバーレイ） */
  .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: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    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;
  }

  .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;
  overflow-x: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.p-breadcrumb .p-breadcrumb__list::-webkit-scrollbar {
  display: none;
}

.p-breadcrumb .p-breadcrumb__item {
  flex-shrink: 0;
}

.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;
  }
  .fv__inner {
    padding-bottom: 30px;
  }
}

/* ==============================================
   料金ページ
   ============================================== */

/* --- 全幅ラッパー（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.1);
  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__coach-role-text {
  font-size: 18px;
  letter-spacing: 0.72px;
}

/* --- 詳細ボタン --- */
.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.2);
  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: 48px;
  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;
  white-space: nowrap;
}

.school-detail__info-content {
  flex: 1;
}

.school-detail__info-item + .school-detail__info-item {
  margin-top: 5px;
}

.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;
}

/* --- スケジュール 2曜日目 --- */
.school-detail__schedule-day--second {
  margin-top: 16px;
}

/* --- 担当コーチ表示（スケジュール内） --- */
.school-detail__schedule-coach {
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin: 8px 0 0;
}

/* --- 注記テキスト --- */
.school-detail__info-note {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin: 16px 0 0;
}

/* --- 地図なしレイアウト --- */
.school-detail__body--no-map .school-detail__body-left {
  width: 100%;
}

/* --- 担当コーチカード --- */
.school-detail__coach-section {
  padding: 0 0 80px;
}

.school-detail__coach-card + .school-detail__coach-card {
  margin-top: 30px;
}

.school-detail__coach-note {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin: 12px 0 0;
}

.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: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  margin: 0 0 16px;
}

.school-detail__coach-role-text {
  font-size: 18px;
  letter-spacing: 0.72px;
}

.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: 0 20px clamp(40px, 5vw, 60px);
}

.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: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 6.4px;
  margin: 0 auto;
  padding-top: 40px;
  padding-left: 20px;
  text-align: left;
}

.school-detail__about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px) 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.2);
  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.2);
  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: 50px;
    line-height: 30px;
    letter-spacing: 3px;
    padding-top: 4px;
    padding-left: 16px;
  }

  .school-detail__about-title {
    font-size: 28px;
    letter-spacing: 1.12px;
  }

  .school-detail__about-inner {
    padding-top: 20px;
  }

  .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: 50px;
    line-height: 30px;
    letter-spacing: 3px;
    width: 100%;
    padding-top: 4px;
    padding-left: 16px;
  }

  .school-detail__about-inner {
    padding: 16px 16px 0;
  }

  .school-detail__about-header {
    margin: 0;
    transform: translateY(-8px);
  }

  .school-detail__about-label-area {
    padding: 0 16px 30px;
  }

  .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;
  }
}
