/* =========================
  共通
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family:
    "BIZ UDGothic",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
    color: #333;
    font-weight: 500;
    background: #fff;
    line-height: 1.7;
    letter-spacing: 0.05em;
}
.en {
    font-family: "Lora", serif;
}
.maru {
    font-family:
    "Zen Maru Gothic",
    "BIZ UDGothic",
    sans-serif;
}
.biz {
    font-family:
    "BIZ UDGothic",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
ul,ol {
    list-style: none;
}
h2 {
    font-size: 38px;
    font-weight: 400;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 22px;
}
p {
    font-size: 16px;
}

.mb8  { margin-bottom: 8px; }
.mb12 { margin-bottom: 12px; }
.mb16 { margin-bottom: 16px; }
.mb20 { margin-bottom: 20px; }
.mb24 { margin-bottom: 24px; }
.mb28 { margin-bottom: 28px; }
.mb32 { margin-bottom: 32px; }
.mb40 { margin-bottom: 40px; }
.mb48 { margin-bottom: 48px; }
.mb60 { margin-bottom: 60px; }
.mb80 { margin-bottom: 80px; }
.mb100 { margin-bottom: 100px; }
.mt8  { margin-top: 8px; }
.mt12 { margin-top: 12px; }
.mt16 { margin-top: 16px; }
.mt20 { margin-top: 20px; }
.mt24 { margin-top: 24px; }
.mt28 { margin-top: 28px; }
.mt32 { margin-top: 32px; }
.mt40 { margin-top: 40px; }
.mt48 { margin-top: 48px; }
.mt60 { margin-top: 60px; }
img {
    max-width: 100%;
    height: auto;
    display: block;
}
:root {
    --color-primary:   #29a2de;
    --color-primary-light: #d8eff7;
    --color-light:     #eff5f3;
    --color-border:    #8f8f8f;
    --header-height:   64px;
    --topbar-height:   34px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
button {
    border: none;
}
/* =========================
  汎用：都道府県タブ
========================= */
.pref_tabs {
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}
.pref_tabs_inner {
    display: flex;
    gap: 0;
    justify-content: center;
}
.pref_tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    flex: 1;
    justify-content: center;
}
.pref_tab img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.pref_tab:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    opacity: 1;
}
.pref_tab:hover img {
    filter: none;
}
.pref_tab.is_active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.pref_tab.is_active img {
    filter: none;
}

@media screen and (max-width: 768px) {
    .pref_tabs_inner {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .pref_tab {
        flex: 1;
        justify-content: center;
        padding: 12px 8px;
        font-size: 13px;
        gap: 5px;
        white-space: nowrap;
    }
    .pref_tab img {
        width: 18px;
        height: 18px;
    }
}
/* =========================
  ヘッダー
========================= */

.utility_bar {
    border-top: 4px solid var(--color-primary);
    border-bottom: 1px solid #ccc;
    padding: 4px 20px;
    background-color: #fff;
    z-index: 998;
}
.utility_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo_box{
    max-width:240px;
    flex-shrink:0;
    margin-right: 20px;
}

.utility_area,
.utility_contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 10.5px;
}
.utility_area img{
    width: auto;
    height: 40px;
    max-width: 40px;
    margin: auto;
}
.utility_area a {
    text-align: center;
}
.utility_contact a:not(:last-child){
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}
.utility_tel__label,
.utility_yotsuya__label {
    display: block;
}
.utility_inner__right {
    display: flex;
    gap: 40px;
}
.utility_tel__label,
.utility_yotsuya__label {
    font-size: 12px;
}
.utility_tel > div {
    display: inline-flex;
    gap: 8px;
}
.utility_tel__number {
    font-size: 24px;
    font-weight: 700;
}
.utility_tel img{
    object-fit: contain;
}
.utility_invoice svg {
    color: var(--color-primary);
    width: 1.5em;
    height: auto;
}

/* ---- 入塾テスト申込 ドロップダウン (PC) ---- */
.utility_dropdown {
    position: relative;
}
.utility_dropdown__trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}
.utility_dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    list-style: none;
    margin: 0;
    padding: 12px 0 4px;
    min-width: 120px;
    z-index: 1001;
    white-space: nowrap;
}
.utility_dropdown__menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--color-text, #333);
    text-decoration: none;
    transition: background 0.15s;
}
.utility_dropdown__menu li a:hover {
    background: #f5f5f5;
}
.utility_dropdown:hover .utility_dropdown__menu,
.utility_dropdown__trigger[aria-expanded="true"] + .utility_dropdown__menu {
    display: block;
}

/* ---- 入塾テスト申込 ドロワー (SP) ---- */
.utility_drawer__yotsuya {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.utility_drawer__yotsuya_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin: 0;
}
.utility_drawer__yotsuya_links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-left: 4px;
}
.utility_drawer__yotsuya_links a {
    font-size: 13px;
    padding: 4px 12px;
    border: 1px solid var(--color-primary, #333);
    border-radius: 4px;
    color: var(--color-primary, #333);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.utility_drawer__yotsuya_links a:hover {
    background: var(--color-primary, #333);
    color: #fff;
}

.site_header {
    padding: 0;
    width: 100%;
    position:sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}
.site_header__inner {
    display: flex;
    align-items: center;
    height: 68px;
}
.global_nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.global_nav__list {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
    justify-content: space-around;
}
.global_nav__item {
    padding: 0 12px;
    letter-spacing: 0.2em;
    text-align: center;
}
.global_nav__item > a {
    text-align: center;
}
.global_nav__item > a svg {
    display: none;
}
.global_nav__item:hover,
.global_nav__item.active {
    font-weight: 900;
}
.global_nav__item > a > span {
    display: block;
    font-size: 12px;
    color: var(--color-primary);
}
.utility_area__link img {
  filter: grayscale(1) ;
  transition: filter 0.2s;
}

.utility_area__link.is_active img {
  filter: none;
}
.utility_area__link img:hover {
    filter: none;
}
/* =========================
  レスポンシブ
========================= */

/* ── ハンバーガー ── */
.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    cursor: pointer;
    gap: 5px;
    padding: 9px;
    margin-left: auto;
    flex-shrink: 0;
}
.hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── オーバーレイ ── */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.35s;
}
.overlay.is-open { opacity: 1; }

/* ── ドロワー ── */
.drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
}
.drawer.is-open { transform: translateX(0); }

.drawer .utility_area {
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.drawer .global_nav__list {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}
.drawer .global_nav__item {
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.drawer .global_nav__item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    text-align: left;
}
.drawer .global_nav__item > a svg {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}
.drawer .global_nav__item > a > span {
    display: inline;
    font-size: 11px;
    margin-left: 4px;
}
.drawer .utility_contact {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid #eee;
}
.drawer .utility_contact a:not(:last-child) {
    font-size: 14px;
}
.drawer .utility_tel__number {
    font-size: 20px;
}
/* ***************************
ヒーローエリア
*************************** */
.hero_area{
  width:100%;
  overflow:hidden;
}

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

.banner_swiper img{
  width:100%;
  display:block;
  cursor:pointer;
}

.banner_swiper .swiper-slide{
  opacity:0.5;
  transition:0.3s;
}

.banner_swiper .swiper-slide.is-active{
  opacity:1;
}
.swiper-pagination {
  position: relative !important;
  margin-top: 15px;
}
/* =========================
  top: NEWS セクション
========================= */
.top_news__section {
    padding: 80px 0 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.top_news__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0 60px;
    align-items: center;
}

/* ── 左カラム ── */
.top_news__map_wrap {
    position: relative;
}
.top_news__map {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
}
.top_news__left_body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
}
.top_news__heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.top_news__more_btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--color-primary);
    border-radius: 999px;
    padding: 8px 8px 8px 22px;
    font-size: 13px;
    color: var(--color-primary);
    background-color: #fff;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}
.top_news__more_btn:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}
.top_news__more_btn__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    margin-left: 14px;
    flex-shrink: 0;
    transition: background 0.25s;
}
.top_news__more_btn__arrow svg {
    width: 14px;
    height: 14px;
}
.top_news__more_btn:hover .top_news__more_btn__arrow {
    background: #fff;
    color: var(--color-primary);
}

/* ── 右カラム ── */
.top_news__right {
    padding-top: 0;
    min-width: 0;
}
.top_news__deco_title {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 400;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: 16px;
}
/* 右カラムヘッダー行 */
.top_news__right_header {
    display: none;
}
.top_news__title_wrap {
    position: relative;
}
/* ── タブ ── */
.top_news__tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
}
.top_news__tab {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 0;
    font-size: 14px;
    font-family: inherit;
    color: #888;
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}
.top_news__tab.is_active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    font-weight: 700;
}
.top_news__tab:hover {
    color: var(--color-primary);
}

/* ── ニュースリスト ── */
.top_news__list {
    display: block;
    min-height: 330px;
}
.top_news__list.is_hidden {
    display: none;
}
.top_news__item {
    display: flex;
    align-items: baseline;
    gap: 32px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
}
.top_news__item:hover {
    opacity: 0.65;
}
.top_news__date {
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}
.top_news__text {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
/* =========================
  top: COURSE セクション
========================= */
.top_course__section {
    padding: 80px 0 100px;
    background: linear-gradient(to bottom, #fbfbfb, #fff);
    position: relative;
    overflow: hidden;
}

/* ── ヘッド ── */
.top_course__head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}
.top_course__deco_title {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 400;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: 0;
    display: block;
}
.top_course__heading {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-top: -16px;
    position: relative;
}

/* ── グリッド ── */
.top_course__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── カード ── */
.top_course__card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
    border: 1.5px solid #ccc;
    border-radius: 8px;
}
/* ── カード画像エリア ── */
.top_course__card_img {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
}
.top_course__card_img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top_course__card_logo img {
    max-height: 36px;
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* ── カードボディ ── */
.top_course__card_body {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding: 12px 14px 16px;
    background: linear-gradient(to top, #E4E4E4 40%, #e4e4e4b4 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
    border-radius: 0 0 8px 8px;
}
.top_course__card_logo {
    height: 35px;
    align-content: center;
}
/* ── タグ行 ── */
.top_course__card_tags {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 3px;
}
.top_course__tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    padding: 8px;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-align: center;
}
.top_course__tag__grade {
    background: var(--color-primary);
    color: #fff;
    padding: 8px 0;
}
.top_course__tag__grade__small {
    font-size: 12px;
    display: block;
}
.top_course__card_tags .span3,
.top_course__card_pref .span3 {
    grid-column: span 3;
}

.top_course__card_tags .span6 {
    grid-column: span 6;
}
.top_course__card_tags .orange_bg {
    background-color:#eec161;
    color: #fff;
}

/* ── 都道府県行 ── */
.top_course__card_pref {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 3px;
}
.top_course__pref {
    font-size: 14px;
    color: #fff;
    background: #0f1f40;
    border-radius: 3px;
    padding: 3px 7px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

/* 県タグ内アイコン */
.top_course__pref img {
    width: 1em;
    height: 1em;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
    filter: brightness(0) invert(1);
}

.inactive {
    background: #9c9c9c;
    color: #fff;
}
/* ── テキスト ── */
.top_course__card_text {
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: auto;
}
/* =========================
  top: CTA セクション
========================= */
.top_cta__section {
    background: #FBFBFB;
    padding: 48px 0;
    text-align: center;
}
.top_cta__lead {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}
.top_cta__buttons {
    /* display: grid;
    grid-template-columns: auto auto;
    gap: 20px; */
    max-width: 800px;
    margin: 0 auto 32PX;
}

/* ── ボタン共通 ── */
.top_cta__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    border-radius: 0;
    outline: 1px solid #fff;
    outline-offset: -3px;
    overflow: hidden;
    text-align: center;
}

/* 右下 白三角 */
.top_cta__btn::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #fff transparent;
}

/* ── プライマリ（水色） ── */
.top_cta__btn__primary {
    background: var(--color-primary);
    color: #fff;
}

/* ── ダーク（紺） ── */
.top_cta__btn__dark {
    background: #1e2d4a;
    color: #fff;
}

/* ── テキスト ── */
.top_cta__btn__label {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3em;
    line-height: 1.4;
}
.top_cta__btn__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.top_cta__btn__sub {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.top_cta__desc {
    font-size: 13px;
    margin-top: 28px;
    text-align: center;
}

/* ── ABOUT + EXAM 共通グラデーション背景 ── */
.top_about_exam__bg {
    background: linear-gradient(-9deg, #c6e8f5 0%, #d4efea 15%, #ffffff 40%)}
/* =========================
  top: ABOUT セクション
========================= */
.top_about__section {
    padding: 80px 0 100px;
    background: transparent;
}
.top_about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 左カラム */
.top_about__tagline {
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #666;
    margin-bottom: 12px;
}
.top_about__logo {
    margin-bottom: 28px;
}
.top_about__logo img {
    /* max-width: 220px; */
    height: auto;
    margin: auto;
}
.top_about__stats {
    font-size: 26px;
    font-weight: 500;
    margin: auto;
    width: fit-content;
}
.top_about__num {
    font-style: normal;
    color: var(--color-primary);
}
.top_about__text {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 24px 0 32px;
    white-space: nowrap;
}
.top_about__btn_wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.top_about__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--color-primary);
    border-radius: 999px;
    padding: 10px 10px 10px 22px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    background: #fff;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}
.top_about__btn:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}
.top_about__btn__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.25s;
}
.top_about__btn:hover .top_about__btn__arrow {
    background: #fff;
    color: var(--color-primary);
}

/* 右カラム */
.top_about__right {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.top_about__right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* =========================
  top: EXAM（模試一覧）セクション
========================= */

.top_exam__section {
    background: transparent;
    overflow: hidden;
}
.top_exam__visual_inner {
    display: flex;
    /* grid-template-columns: 1fr 340px;
    grid-template-rows: auto auto; */
    gap: 24px 40px;
    align-items: start;
    margin-bottom: 60px;
}

/* ── メイン写真 ── */
.top_exam__main_img {
    grid-column: 1;
    grid-row: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
}
.top_exam__main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ── 模試カードリスト ── */
.top_exam__list {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 6px;
    padding: 8px;
    flex-direction: column;
}
.top_exam__item {
    display: block;
    flex: 1;
}

.top_exam__item img {
    display: block;
    height: 60px;
    width: auto;
}

/* ── 右カラム ── */
.top_exam__visual_right {
    display: flex;
    gap: 28px;
    justify-content: space-around;
    width: 100%;
}

/* ── 見出し ── */
.top_exam__heading_wrap {
    padding-top: 8px;
}
.top_exam__deco_title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary-light);
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    white-space: nowrap;
}
.top_exam__heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    margin: 0;
    text-align: center;
}

/* ── サブ写真 ── */
.top_exam__sub_img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
}
.top_exam__sub_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.top_exam__item {
    display: flex;
    gap: 8px;
    align-items: center;
}
.top_exam__item a {
    display: block;
    font-size: 12px;
    color: #1F74BB;
    text-decoration: underline;
}
.top_exam__item a span{
    font-size: 16px;
    font-weight: 900;
    color: #333;
    text-decoration: none;
    display: block;
}
/* =========================
  教育理念ページ (about)
========================= */

.page_about__section {
    padding: 60px 0 100px;
    background: #fff;
}

.page_about__section_heading {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
}

.page_about__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 52px;
    align-items: start;
}

.page_about__rep_img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.page_about__rep_caption {
    margin-top: 14px;
    text-align: center;
}
.page_about__rep_org {
    display: block;
    font-size: 12px;
}
.page_about__rep_role {
    font-size: 13px;
    margin-right: 4px;
}
.page_about__rep_name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 2px;
}

.page_about__body {
    padding-top: 4px;
}

.page_about__catch {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 20px;
}

.page_about__quote {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 2;
    margin-bottom: 24px;
}

.page_about__text {
    font-size: 14px;
    line-height: 2.1;
    margin-bottom: 24px;
}
.page_about__text:last-child {
    margin-bottom: 0;
}

.page_about__subheading {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

/* =========================
  新着情報ページ共通
========================= */

/* ── メインセクション ── */
.page_news__section {
    padding: 48px 0 80px;
    background: #fff;
}

/* ── 都道府県タブ ── */
.page_news__pref_tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.page_news__pref_tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 2px solid #ccc;
    background: #f5f5f5;
    color: #888;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    cursor: pointer;
}
.page_news__pref_tab img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.page_news__pref_tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
}
.page_news__pref_tab:hover img {
    filter: none;
}
.page_news__pref_tab.is_active {
    background: #1e2d4a;
    border-color: #1e2d4a;
    color: #fff;
}
.page_news__pref_tab.is_active img {
    filter: brightness(10);
}

/* ── ニュースリスト ── */
.page_news__list {
    max-width: 860px;
    margin: 0 auto;
}
.page_news__item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: opacity 0.2s;
}
.page_news__item:first-child {
    border-top: 1px solid #e8e8e8;
}
.page_news__item:hover {
    opacity: 0.65;
}
.page_news__date {
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    color: #666;
    min-width: 90px;
}
.page_news__title {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    flex: 1;
    min-width: 0;
}
.page_news__empty {
    padding: 40px 0;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* ── ニュースラベル（汎用） ── */
.news_label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.5;
}
/* 受付中 */
/* .news_label--open {
    background: #1e2d4a;
    color: #fff;
} */
/* 受付終了 */
/* .news_label--closed {
    background: #9c9c9c;
    color: #fff;
} */
/* その他・任意ラベル */
/* .news_label--other {
    background: var(--color-primary);
    color: #fff;
} */

/* ── ページネーション ── */
.page_news__pager {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.page_news__pager_list {
    display: flex;
    align-items: center;
    gap: 6px;
}
.page_news__pager_item {
    display: flex;
    align-items: center;
}
.page_news__pager_item--ellipsis {
    font-size: 14px;
    color: #bbb;
    padding: 0 4px;
}
.page_news__pager_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    color: #555;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}
.page_news__pager_btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    opacity: 1;
}
.page_news__pager_btn.is_active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    font-weight: 700;
    cursor: default;
}
.page_news__pager_btn--arrow {
    background: #fff;
    color: #888;
}

/* =========================
  下層ページ共通ヒーロー
========================= */
.page_hero {
    background: #fbfbfb;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page_hero__inner {
    position: relative;
    display: inline-block;
}
.page_hero__deco {
    font-size: clamp(72px, 12vw, 120px);
    font-weight: 400;
    color: var(--color-primary);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 0;
    display: block;
}
.page_hero__title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    margin-top: -20px;
    position: relative;
}
.page_section__heading {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
}
/* =========================
  教室詳細ページ
========================= */


/* ── パンくずリスト ── */
.page_breadcrumb {
    padding: 12px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.page_breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 12px;
    color: #999;
}
.page_breadcrumb__list li {
    display: flex;
    align-items: center;
}
.page_breadcrumb__list li + li::before {
    content: '›';
    margin: 0 8px;
    color: #ccc;
}
.page_breadcrumb__list a {
    color: var(--color-primary);
    transition: opacity 0.2s;
}
.page_breadcrumb__list a:hover {
    opacity: 0.7;
}

/* ── メインセクション ── */
.page_classroom__section {
    padding: 64px 0 80px;
}
.page_classroom__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 52px;
    align-items: start;
}

/* ── ヘッダー（教室名 + コース）── */
.page_classroom__head {
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--color-primary-light);
}
.page_classroom__name_row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    justify-content: space-between;
}
.page_classroom__name {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}
.page_classroom__grade_tags {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
}
.page_classroom__grade {
    font-size: 24px;
}
.page_classroom__grade_range {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
}

/* ── コース別タグ + 対応学年 ── */
.page_classroom__courses {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}
.page_classroom__course_item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.page_classroom__course_item > .top_course__tag {
    width: 100%;
    text-align: center;
}
.toppa {
    background-color: #F8F2B9;
}
.puzzle {
    background-color: #F9CCC7;
}
.yotsuya {
    background-color: #C4CCF5;
}
.kidsduo {
    background-color: #FFDAA2;
}
.kobetsu {
    background-color: #BCE5FA;
}
.toshin-net {
    background-color: #BBF7E0;
}
.toshin {
    background-color: #E0EFA2;
}
.sutton {
    background-color: #FBB17F;
}
.atama{
    background-color: #F1EA0A;
}
.lepton {
    background-color: #FBDBEB;
}
.sendai_plaza {
    background-color: #C4F5C4;
}
.shin_pla {
    background-color: #C4F5C4;
}
/* ── キャッチコピー ── */
.page_classroom__catch {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    padding-left: 16px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 22px;
    line-height: 1.55;
}

/* ── 本文 ── */
.page_classroom__text {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin-bottom: 14px;
}
.page_classroom__text:last-of-type {
    margin-bottom: 0;
}

/* ── 住所 ── */
.page_classroom__address_wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 28px;
    padding: 16px 20px;
    background: var(--color-light);
    border-radius: 6px;
}
.page_classroom__address_wrap svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}
.page_classroom__address_body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #555;
}
.page_classroom__map_link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    padding: 2px 12px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.page_classroom__map_link:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}

/* ── CTAボタン ── */
.page_classroom__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.page_classroom__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    background: #fff;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}
.page_classroom__btn:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}
.page_classroom__btn__primary {
    background: var(--color-primary);
    color: #fff;
}
.page_classroom__btn__primary:hover {
    background: #4aafc9;
    color: #fff;
    opacity: 1;
}

/* ── 右カラム（教室画像）── */
.page_classroom__img_wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.11);
    position: sticky;
    top: 84px;
}
.page_classroom__img_wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── 近くの教室セクション ── */
.page_classroom__nearby {
    padding: 64px 0 80px;
    background: #f6f6f6;
}
.page_classroom__nearby_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}
.page_classroom__nearby_title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.08em;
}
.page_classroom__nearby_more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    padding: 7px 18px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.page_classroom__nearby_more:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}

/* ── 近くの教室リスト ── */
.page_classroom__nearby_list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.page_classroom__nearby_item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    padding: 18px 22px;
    transition: background 0.2s;
}
.page_classroom__nearby_item:hover {
    background: #f8fdff;
    opacity: 1;
}
.page_classroom__nearby_img {
    width: 104px;
    height: 74px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
}
.page_classroom__nearby_body {
    flex: 1;
    min-width: 0;
}
.page_classroom__nearby_name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 7px;
    line-height: 1.3;
}
.page_classroom__nearby_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 7px;
}
.page_classroom__nearby_address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #888;
}
.page_classroom__nearby_address svg {
    flex-shrink: 0;
    color: var(--color-primary);
}
.page_classroom__nearby_arrow {
    margin-left: auto;
    color: var(--color-primary);
    flex-shrink: 0;
}
/* =========================
  会社概要ページ
========================= */
.page_company__inner table {
    width: 100%;
    border-collapse: collapse;
    border-top: 3px solid var(--color-primary);
    margin-bottom: 60px;
}
.page_company__inner table tr th {
    font-weight: bold;
    /* color: var(--color-primary); */
    vertical-align: top;
    text-align: left;
}
.page_company__inner table th, .page_company__inner table td {
    border: 1px solid #b5b5b5;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.8;
}
.page_company__inner table tr td {
    color: #1a1a1a;
}
.page_company__inner table td a {
    color: var(--color-primary);
}

/* =========================
  教室ページ
========================= */

/* =========================
  教室一覧ページ
========================= */

/* ── 都道府県タブ ── */
.page_classroom_list__pref_tabs {
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    padding: 0;
}
.page_classroom_list__pref_tab_inner {
    display: flex;
    gap: 0;
    justify-content: center;
}
.page_classroom_list__pref_tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    flex: 1;
    justify-content: center;
}
.page_classroom_list__pref_tab img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.page_classroom_list__pref_tab:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    opacity: 1;
}
.page_classroom_list__pref_tab:hover img {
    filter: none;
}
.page_classroom_list__pref_tab.is_active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.page_classroom_list__pref_tab.is_active img {
    filter: none;
}

/* ── メインセクション ── */
.page_classroom_list__section {
    padding: 56px 0 80px;
    background: #f6f6f6;
}

/* ── エリアブロック ── */
.page_classroom_list__area {
    margin-bottom: 40px;
}
.page_classroom_list__area:last-child {
    margin-bottom: 0;
}

/* ── エリアヘッダー ── */
.page_classroom_list__area_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e2d4a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
}
.page_classroom_list__area_name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
}
.page_classroom_list__area_arrow {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.6);
}

/* ── 教室アイテム（一覧用上書き） ── */
.page_classroom_list__item {
    padding: 20px 24px;
}
.page_classroom_list__item .page_classroom__nearby_img {
    width: 120px;
    height: 80px;
}

/* ── MAPバッジ ── */
.page_classroom_list__map_badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
    border-radius: 3px;
    padding: 4px 7px;
    margin-left: 6px;
    vertical-align: middle;
    flex-shrink: 0;
    cursor: pointer;
}

/* =========================
  フッター
========================= */

/* ── フッターメイン ── */
.footer_main {
    background: #f6f6f6;
    padding: 50px 0 10px;
}
.footer_main__inner {
    display: grid;
    grid-template-columns: 220px 160px 200px 1fr;
    gap: 0 40px;
    align-items: start;
}

/* ── ロゴカラム ── */
.footer_col__logo {
    padding-top: 4px;
}
.footer_logo {
    display: block;
    max-width: 200px;
}
.footer_logo img {
    width: 100%;
}

/* ── ナビリスト ── */
.footer_nav__list {
    display: flex;
    flex-direction: column;
}
.footer_nav__heading {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: 14px;
    line-height: 1.5;
}
.footer_nav__heading:first-child {
    margin-top: 0;
}
.footer_nav__heading a {
    color: #333;
    transition: color 0.2s;
}
.footer_nav__heading a:hover {
    color: var(--color-primary);
    opacity: 1;
}
.footer_nav__heading--small {
    font-size: 13px;
}
.footer_nav__child {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
    padding-left: 12px;
}

.footer_nav__child a {
    transition: color 0.2s;
}
.footer_nav__child a:hover {
    color: var(--color-primary);
    opacity: 1;
}

/* ── パートナーロゴ帯: Col 2〜4 ── */
.footer_partner {
    grid-column: 2 / 5;
    border-bottom: 1px solid #ccc;
    padding-bottom: 28px;
    margin-top: 28px;
}
.footer_partner__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.footer_partner__item {
    display: block;
    transition: opacity 0.2s;
}
.footer_partner__item:hover {
    opacity: 0.75;
}
.footer_partner__item img {
    height: 52px;
    width: auto;
    display: block;
}
.footer_partner__item--btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e2d4a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 4px;
    line-height: 1.35;
    margin-left: auto;
    flex-shrink: 0;
}
.footer_partner__item--btn small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}
.footer_partner__item--btn svg {
    flex-shrink: 0;
}

/* ── ユーティリティバー ── */
.footer_util {
    background: #f6f6f6;
    /* border-top: 1px solid #ccc; */
    /* border-bottom: 1px solid #ccc; */
    padding: 14px 0;
}
.footer_util__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* 左: ポリシー */
.footer_util__policy {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}
.footer_util__policy li a {
    font-size: 13px;
    color: #555;
    transition: color 0.2s;
}
.footer_util__policy li a:hover {
    color: var(--color-primary);
    opacity: 1;
}

/* 中: クイックリンク */
.footer_util__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer_util__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #444;
    transition: color 0.2s;
    white-space: nowrap;
}
.footer_util__link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #888;
}
.footer_util__link span {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer_util__link span small {
    font-size: 10px;
    color: #888;
}
.footer_util__link:hover {
    color: var(--color-primary);
    opacity: 1;
}
.footer_util__link:hover svg {
    color: var(--color-primary);
}

/* 右: 電話 */
.footer_util__tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.footer_util__tel img {
    height: 18px;
    width: auto;
}
.footer_util__tel span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer_util__tel_number {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.02em;
}
.footer_util__tel small {
    font-size: 11px;
    color: #777;
}
.footer_util__tel:hover {
    opacity: 0.75;
}

/* ── コピーライト ── */
.footer_copy {
    background: #fff;
    border-top: 4px solid var(--color-primary);
    padding: 16px 0;
    text-align: center;
}
.footer_copy small {
    font-size: 12px;
    color: #888;
}


@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
/* =========================
  ヘッダー
========================= */
    .utility_bar {
        padding: 6px 12px;
        position: fixed;
        top: 0;
        width: 100%;
    }
    .utility_contact,
    .utility_area {
        display: none;
    }
    .site_header {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        position: fixed;
        top: 10px;
        right: 20px;
        border: none;
    }
    .overlay {
        display: block;
        pointer-events: none;
    }
    .overlay.is-open {
        pointer-events: auto;
    }
    .drawer {
        display: block;
        padding-top: 60px;
    }
    .drawer .utility_area {
        display: flex;
        padding: 14px 20px;
        justify-content: space-around;
    }
    .drawer .utility_contact {
        display: flex;
    }

    .drawer .global_nav__item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    }

    .drawer .global_nav__item > a svg {
        display: block;
        width: 20px;
        height: 20px;
        color: var(--color-primary);
        flex-shrink: 0;
    }

    .drawer .global_nav__item > a .nav_text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        color: #333;
        font-size: 14px;
        line-height: 1.2;
    }

    .drawer .global_nav__item > a > span {
        display: block;
        font-size: 11px;
    }
    .nav_text > span {
        font-size: 10px;
        color: var(--color-primary);
    }
/* =========================
  TOP_newsセクション
========================= */
    .top_news__section {
        padding: 60px 0;
    }
    .top_news__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .top_news__map_wrap {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 32px;
    }
    .top_news__map {
        width: 80px;
        max-width: 80px;
        flex-shrink: 0;
    }
    .top_news__left_body {
        position: static;
        transform: none;
        text-align: left;
        width: auto;
    }
    .top_news__heading {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .top_news__deco_title {
        font-size: 48px;
        margin-bottom: 12px;
    }
    .top_news__item {
        gap: 16px;
    }
    .top_news__text {
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
    .top_news__date {
        font-size: 13px;
    }
    /* 左カラム非表示 */
    .top_news__left {
        display: none;
    }

    .top_news__left {
        display: none;
    }
    .top_news__right_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 16px;
    }
    .top_news__title_wrap {
        position: relative;
        line-height: 1;
    }
    .top_news__deco_title {
        font-size: 48px;
        margin-bottom: 0;
        line-height: 1;
    }
    .top_news__right_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: -20px; /* NEWSデコ文字に重ねる */
        margin-bottom: 16px;
    }
    .top_news__heading {
        font-size: 16px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    .top_news__deco_title {
        margin-bottom: 0;
    }
/* =========================
  top: COURSE セクション
========================= */
    .top_course__section {
        padding: 60px 0 70px;
    }
    .top_course__head {
        margin-bottom: 32px;
    }
    .top_course__deco_title {
        font-size: 48px;
    }
    .top_course__heading {
        font-size: 15px;
        margin-top: -10px;
    }
    .top_course__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .top_course__card_body {
        padding: 10px 10px 12px;
    }
    .top_course__card_text {
        font-size: 11px;
    }
/* =========================
  top: CTA セクション
========================= */
    .top_cta__section {
        padding: 40px 0;
    }
    .top_cta__buttons {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .top_cta__btn {
        padding: 24px 32px;
    }
    .top_cta__btn__label {
        font-size: 15px;
    }
    .top_cta__btn__sub {
        font-size: 13px;
    }
    .top_cta__btn::after {
        border-width: 0 0 28px 28px;
    }
    .top_cta__desc {
        font-size: 12px;
        text-align: left;
    }
/* =========================
  top: ABOUT セクション
========================= */
    .top_about__section {
        padding: 60px 0 70px;
    }
    .top_about__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .top_about__right {
        order: -1;
    }
    .top_about__stats {
        font-size: 20px;
    }
    .top_about__num {
        font-size: 28px;
    }
    .top_about__btn_wrap {
        gap: 12px;
    }
    .top_about__text {
        white-space: normal;
    }
/* =========================
  top: exam セクション
========================= */
    .top_exam__visual_wrap {
        padding: 48px 0 40px;
    }
    .top_exam__visual_inner {
        flex-direction: column-reverse;
        /* grid-template-columns: 1fr; */
        gap: 28px;
        align-items: center;
    }
    .top_exam__main_img {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
    .top_exam__visual_right {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: flex-start;
    }
    .top_exam__deco_title {
        font-size: 36px;
    }
    .top_exam__heading {
        font-size: 18px;
    }
    .top_exam__sub_img {
        aspect-ratio: 16 / 9;
    }
    .top_exam__list_wrap {
        padding: 28px 0 40px;
    }
    .top_exam__list {
        /* flex-direction: column; */
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }
    .top_exam__heading_wrap {
        margin: auto;
    }
/* =========================
  下層ページ共通ヒーロー
========================= */
    .page_hero {
        padding: 40px 0 32px;
    }
    .page_hero__deco {
        font-size: 72px;
    }
    .page_hero__title {
        font-size: 18px;
        margin-top: -14px;
    }

/* =========================
  教育理念ページ
========================= */
    .page_about__section {
        padding: 40px 0 64px;
    }
    .page_about__section_heading {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .page_about__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .page_about__rep {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .page_about__rep_img {
        width: 120px;
        flex-shrink: 0;
    }
    .page_about__rep_caption {
        text-align: left;
        margin-top: 0;
    }
    .page_about__catch {
        font-size: 20px;
    }
    .page_about__quote {
        font-size: 13px;
    }
    .page_about__text {
        font-size: 13px;
    }
    .page_about__subheading {
        font-size: 16px;
    }
/* =========================
  教室詳細ページ
========================= */

    /* メインセクション */
    .page_classroom__section {
        padding: 40px 0 60px;
    }
    .page_classroom__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* 画像をSPでは上に表示 */
    .page_classroom__right {
        order: -1;
        margin-bottom: 28px;
    }
    .page_classroom__img_wrap {
        position: static;
        border-radius: 6px;
    }

    /* 教室名 */
    .page_classroom__name {
        font-size: 22px;
    }
    .page_classroom__name_row {
        gap: 10px;
    }

    /* コース */
    .page_classroom__courses {
        gap: 12px 16px;
    }

    /* キャッチ */
    .page_classroom__catch {
        font-size: 16px;
    }

    /* ボタン */
    .page_classroom__btns {
        flex-direction: column;
    }
    .page_classroom__btn {
        justify-content: center;
    }

    /* 近くの教室 */
    .page_classroom__nearby {
        padding: 44px 0 60px;
    }
    .page_classroom__nearby_item {
        gap: 14px;
        padding: 14px 16px;
    }
    .page_classroom__nearby_img {
        width: 80px;
        height: 60px;
    }
    .page_classroom__nearby_name {
        font-size: 14px;
    }
/* =========================
  教室一覧ページ
========================= */

    .page_classroom_list__pref_tab {
        flex: 1;
        justify-content: center;
        padding: 12px 8px;
        font-size: 13px;
        gap: 5px;
    }
    .page_classroom_list__pref_tab img {
        width: 18px;
        height: 18px;
    }
    .page_classroom_list__section {
        padding: 32px 0 60px;
    }
    .page_classroom_list__area {
        margin-bottom: 28px;
    }
    .page_classroom_list__area_head {
        padding: 10px 14px;
    }
    .page_classroom_list__area_name {
        font-size: 13px;
    }
    .page_classroom_list__item {
        padding: 14px 14px;
        gap: 12px;
    }
    .page_classroom_list__item .page_classroom__nearby_img {
        width: 80px;
        height: 60px;
    }

/* =========================
  新着情報ページ
========================= */

    .page_news__hero {
        padding: 40px 0 32px;
    }
    .page_news__hero_deco {
        font-size: 72px;
    }
    .page_news__hero_title {
        font-size: 18px;
        margin-top: -14px;
    }
    .page_news__section {
        padding: 32px 0 60px;
    }
    .page_news__pref_tabs {
        gap: 8px;
        margin-bottom: 28px;
    }
    .page_news__pref_tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    .page_news__item {
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px 0;
        align-items: flex-start;
    }
    .page_news__date {
        font-size: 13px;
        min-width: auto;
    }
    .page_news__title {
        width: 100%;
        flex: none;
    }
    .page_news__pager_btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
/* =========================
  フッター
========================= */

    .footer_main {
        padding: 32px 0 28px;
    }
    .footer_main__inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }
    .footer_col__logo {
        grid-column: 1 / -1;
    }
    .footer_logo {
        max-width: 160px;
    }
    .footer_partner {
        grid-column: 1 / -1;
    }
    .footer_partner__inner {
        gap: 20px;
    }
    .footer_partner__item img {
        height: 40px;
    }
    .footer_partner__item--btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    .footer_util__inner {
        gap: 14px;
    }
    .footer_util__nav {
        gap: 14px;
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
    .footer_util__tel_number {
        font-size: 18px;
    }
}



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

/* ── リード文 ── */
.page_flow__lead_section {
    padding: 48px 0 0;
    background: #fff;
    text-align: center;
}
.page_flow__lead_text {
    font-size: 15px;
    line-height: 2;
    color: #555;
}

/* ── フローセクション全体 ── */
.page_flow__section {
    padding: 48px 0 100px;
    background: #fff;
}
.page_flow__inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── 矢印コネクター ── */
.page_flow__arrow {
    color: var(--color-primary);
    opacity: 0.6;
    flex-shrink: 0;
    margin: 4px 0;
}

/* ── 入口カード（WEB申し込み） ── */
.page_flow__entry_card {
    width: 100%;
    border-radius: 10px;
    padding: 36px 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    box-shadow: 0 6px 28px rgba(30, 45, 74, 0.22);
}

.page_flow__entry_body {
    flex: 1;
    min-width: 0;
}
.page_flow__entry_label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}
.page_flow__entry_title {
    font-size: 22px;
    font-weight: 700;
    /* color: #fff; */
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    line-height: 1.4;
}
.page_flow__entry_text {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 22px;
}
.page_flow__entry_btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.page_flow__entry_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity 0.25s, background 0.25s;
}
.page_flow__entry_btn:hover {
    opacity: 0.82;
}
.page_flow__entry_btn__primary {
    background: var(--color-primary);
    color: #fff;
}
.page_flow__entry_btn__dark {
    background: #fff;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

/* ── ステップカード ── */
.page_flow__step {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--color-primary-light);
    border-radius: 8px;
    padding: 28px 32px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s;
}

/* ステップ番号 */
.page_flow__step_num {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    min-width: 56px;
    padding-top: 2px;
}
.page_flow__step_label {
    font-size: 10px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.18em;
    line-height: 1;
}
.page_flow__step_digit {
    font-size: 38px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    opacity: 0.55;
}

/* ステップ本文 */
.page_flow__step_body {
    flex: 1;
    min-width: 0;
}
.page_flow__step_title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}
.page_flow__step_text {
    font-size: 14px;
    line-height: 2;
}

/* ── 分岐エリア ── */
.page_flow__branch_wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 0 16px;
    align-items: center;
}

/* 左: 直接経路の▼群 */
.page_flow__branch_direct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: stretch;
    padding: 16px 0;
}
.page_flow__branch_tri {
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--color-primary);
    opacity: 0.55;
    flex-shrink: 0;
}

/* 右: 任意ステップ（体験授業） */
.page_flow__step__optional {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    border-width: 1.5px;
}
.page_flow__step__optional .page_flow__step_digit {
    opacity: 0.8;
}

/* ── ゴールカード ── */
.page_flow__goal {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #4aafc9 100%);
    border-radius: 10px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 6px 28px rgba(92, 193, 223, 0.3);
}
.page_flow__goal_icon {
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}
.page_flow__goal_title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    line-height: 1.4;
}
.page_flow__goal_text {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    line-height: 2;
}

/* ── レスポンシブ ── */
@media screen and (max-width: 768px) {
    .page_flow__lead_section {
        padding: 32px 0 0;
    }
    .page_flow__lead_text {
        font-size: 13px;
        text-align: left;
    }
    .page_flow__section {
        padding: 36px 0 70px;
    }
    .page_flow__entry_card {
        flex-direction: column;
        gap: 18px;
        padding: 24px 20px;
    }
    .page_flow__entry_icon {
        width: 52px;
        height: 52px;
    }
    .page_flow__entry_title {
        font-size: 18px;
    }
    .page_flow__entry_btns {
        flex-direction: column;
    }
    .page_flow__entry_btn {
        justify-content: center;
    }
    .page_flow__step {
        gap: 16px;
        padding: 20px 16px;
    }
    .page_flow__step_num {
        min-width: 44px;
    }
    .page_flow__step_digit {
        font-size: 30px;
    }
    .page_flow__step_title {
        font-size: 15px;
    }
    .page_flow__step_text {
        font-size: 13px;
    }
    .page_flow__branch_tri {
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 10px;
    }
    .page_flow__goal {
        padding: 28px 20px;
    }
    .page_flow__goal_title {
        font-size: 20px;
    }
    .page_flow__goal_text {
        font-size: 13px;
        text-align: left;
    }
}





/* =========================
  お問い合わせ・申し込みフォーム共通
========================= */

/* ── 進捗ステップバー ── */
.page_contact__progress {
    background: #f6f6f6;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
}
.page_contact__progress_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
}
.page_contact__progress_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}
.page_contact__progress_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    color: #ccc;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.page_contact__progress_label {
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.08em;
    transition: color 0.25s;
}
.page_contact__progress_arrow {
    display: flex;
    align-items: center;
    color: #ccc;
    padding: 0 8px;
    padding-bottom: 18px;
}
/* アクティブ */
.page_contact__progress_item.is_active .page_contact__progress_num {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.page_contact__progress_item.is_active .page_contact__progress_label {
    color: var(--color-primary);
    font-weight: 700;
}
/* 完了済み */
.page_contact__progress_item.is_done .page_contact__progress_num {
    background: #1e2d4a;
    border-color: #1e2d4a;
    color: #fff;
}
.page_contact__progress_item.is_done .page_contact__progress_label {
    color: #1e2d4a;
}

/* ── フォームセクション ── */
.page_contact__section {
    padding: 56px 0 80px;
    background: #fafafa;
}

/* ── エラーサマリー ── */
.page_contact__error_summary {
    background: #fff3f3;
    border: 1.5px solid #e05555;
    border-radius: 6px;
    padding: 16px 22px;
    margin-bottom: 28px;
    color: #c0392b;
    font-size: 14px;
    font-weight: 700;
}

/* ── ブロック（STEP 1/2/3） ── */
.page_contact__block {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    overflow: hidden;
    margin-bottom: 28px;
}
.page_contact__block:last-of-type {
    margin-bottom: 0;
}
.page_contact__block_head {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1e2d4a;
    padding: 14px 24px;
}
.page_contact__block_num {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    white-space: nowrap;
}
.page_contact__block_title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}

/* ── フォーム行 ── */
.page_contact__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
    gap: 0;
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
}
.page_contact__row:last-child {
    border-bottom: none;
}
.page_contact__row.has_error .page_contact__input,
.page_contact__row.has_error .page_contact__select,
.page_contact__row.has_error .page_contact__textarea {
    border-color: #e05555;
    background: #fff8f8;
}

/* ── ラベル列 ── */
.page_contact__label_col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px 24px;
    background: #f7f9fc;
    border-right: 1px solid #f0f0f0;
    height: 100%;
}
.page_contact__label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}
.page_contact__required {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    line-height: 1.4;
}
.page_contact__optional {
    display: inline-block;
    background: #aaa;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    line-height: 1.4;
}
.page_contact__label_note {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

/* ── 入力列 ── */
.page_contact__input_col {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── 入力要素 ── */
.page_contact__input,
.page_contact__select,
.page_contact__textarea {
    font-family: inherit;
    font-size: 15px;
    color: #333;
    border: 1.5px solid #d4d4d4;
    border-radius: 4px;
    padding: 10px 14px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
}
.page_contact__input:focus,
.page_contact__select:focus,
.page_contact__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(92, 193, 223, 0.15);
}
.page_contact__input--small  { max-width: 180px; }
.page_contact__input--medium { max-width: 300px; }
.page_contact__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}
.page_contact__select--small { max-width: 220px; }
.page_contact__textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.8;
}

/* ── ラジオ・チェックボックスグループ ── */
.page_contact__radio_group,
.page_contact__checkbox_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page_contact__radio_group--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.page_contact__radio_item,
.page_contact__checkbox_item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.page_contact__radio_item input,
.page_contact__checkbox_item input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
    cursor: pointer;
}
.page_contact__radio_label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.page_contact__radio_type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── プレースホルダーノート ── */
.page_contact__placeholder_note {
    font-size: 13px;
    color: #aaa;
    font-style: italic;
}
.page_contact__field_note {
    font-size: 12px;
    color: #888;
    margin-top: -4px;
}

/* ── 連絡時間帯インライン ── */
.page_contact__contact_time {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.page_contact__inline_label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
}

/* ── プライバシーボックス ── */
.page_contact__privacy_box {
    max-height: 200px;
    overflow-y: auto;
    border: 1.5px solid #d4d4d4;
    border-radius: 4px;
    padding: 16px 18px;
    background: #fafafa;
    font-size: 13px;
    line-height: 1.85;
    color: #555;
    scroll-behavior: smooth;
}
.page_contact__privacy_box:focus {
    outline: none;
    border-color: var(--color-primary);
}
.page_contact__privacy_heading {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.page_contact__privacy_box p {
    font-size: 13px;
    margin-bottom: 10px;
}
.page_contact__privacy_box p:last-child { margin-bottom: 0; }

.page_contact__privacy_agree {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.page_contact__privacy_agree input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
    cursor: pointer;
}

/* ── エラーメッセージ ── */
.page_contact__error_msg {
    font-size: 12px;
    color: #c0392b;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.page_contact__error_msg::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #c0392b;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── 送信ボタンエリア ── */
.page_contact__btn_wrap {
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
}
.page_contact__btn_wrap--confirm {
    gap: 20px;
    flex-wrap: wrap;
}
.page_contact__submit_btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 18px 24px 18px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    outline: 1.5px solid #fff;
    outline-offset: -4px;
    position: relative;
    transition: background 0.25s, opacity 0.25s;
    min-width: 240px;
    justify-content: space-around;
}

.page_contact__submit_btn:hover {
    background: #4aafc9;
}
.page_contact__btn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 16px;
    flex-shrink: 0;
}
.page_contact__btn_icon svg { width: 1.2em; height: 1.2em; }
.page_contact__back_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #555;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 0;
    transition: border-color 0.2s, color 0.2s;
}
.page_contact__back_btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* =========================
  確認画面
========================= */
.page_confirm__section {
    padding: 56px 0 80px;
    background: #fafafa;
}
.page_confirm__lead {
    font-size: 15px;
    color: #555;
    text-align: center;
    margin-bottom: 36px;
}
.page_confirm__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 3px solid var(--color-primary);
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.page_confirm__table th,
.page_confirm__table td {
    border: 1px solid #e8e8e8;
    padding: 14px 20px;
    font-size: 14px;
    text-align: left;
    vertical-align: top;
}
.page_confirm__table th {
    background: #f7f9fc;
    color: #555;
    font-weight: 700;
    width: 220px;
    white-space: nowrap;
}
.page_confirm__table td {
    color: #333;
}
.page_confirm__section_head {
    background: #1e2d4a !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 10px 20px !important;
}

/* =========================
  完了画面
========================= */
.page_complete__section {
    padding: 80px 0 100px;
    background: linear-gradient(160deg, #f0fafd 0%, #fff 60%);
}
.page_complete__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.page_complete__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(92, 193, 223, 0.35);
}
.page_complete__icon svg {
    width: 42px;
    height: 42px;
}
.page_complete__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #1e2d4a;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.page_complete__text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 16px;
}
.page_complete__sub_text {
    font-size: 13px;
    color: #888;
    line-height: 1.9;
    margin-bottom: 40px;
}
.page_complete__tel_block {
    background: #f7f9fc;
    border: 1px solid #e4e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
}
.page_complete__tel_label {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.page_complete__tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    transition: opacity 0.2s;
}
.page_complete__tel:hover { opacity: 0.75; }
.page_complete__tel img { height: 18px; width: auto; }
.page_complete__tel_num {
    font-size: 28px;
    font-weight: 700;
    color: #1e2d4a;
    letter-spacing: 0.02em;
}
.page_complete__tel_time {
    font-size: 12px;
    color: #888;
}
.page_complete__home_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e2d4a;
    color: #fff;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: background 0.25s, opacity 0.25s;
}
.page_complete__home_btn:hover {
    background: #2a3d60;
    opacity: 1;
}

/* =========================
  レスポンシブ（max-width: 768px）
========================= */
@media screen and (max-width: 768px) {

    /* 進捗バー */
    .page_contact__progress {
        padding: 14px 0;
    }
    .page_contact__progress_item {
        min-width: 60px;
    }
    .page_contact__progress_num {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .page_contact__progress_label {
        font-size: 11px;
    }

    /* フォームセクション */
    .page_contact__section {
        padding: 32px 0 60px;
    }

    /* ブロックヘッド */
    .page_contact__block_head {
        padding: 12px 16px;
        gap: 12px;
    }
    .page_contact__block_title {
        font-size: 14px;
    }

    /* 行レイアウト: 縦積み */
    .page_contact__row {
        grid-template-columns: 1fr;
    }
    .page_contact__label_col {
        padding: 14px 16px 10px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        background: #f7f9fc;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    .page_contact__label {
        font-size: 13px;
    }
    .page_contact__label_note {
        font-size: 11px;
    }
    .page_contact__input_col {
        padding: 14px 16px;
    }

    /* 入力フィールド */
    .page_contact__input,
    .page_contact__select,
    .page_contact__textarea {
        font-size: 14px;
    }
    .page_contact__input--small  { max-width: 100%; }
    .page_contact__input--medium { max-width: 100%; }
    .page_contact__select--small { max-width: 100%; }

    /* ラジオ/チェック */
    .page_contact__radio_group--inline {
        gap: 10px 16px;
    }
    .page_contact__radio_item,
    .page_contact__checkbox_item {
        font-size: 13px;
    }

    /* 連絡時間帯 */
    .page_contact__contact_time {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* ボタン */
    .page_contact__btn_wrap {
        padding: 28px 0 0;
    }
    .page_contact__btn_wrap--confirm {
        flex-direction: column-reverse;
        align-items: center;
    }
    .page_contact__submit_btn {
        min-width: 0;
        width: 100%;
        font-size: 15px;
        padding: 16px 20px 16px 32px;
    }
    .page_contact__back_btn {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 14px 20px;
    }

    /* 確認テーブル */
    .page_confirm__section {
        padding: 32px 0 60px;
    }
    .page_confirm__table th,
    .page_confirm__table td {
        display: block;
        width: 100%;
        padding: 10px 14px;
    }
    .page_confirm__table th {
        border-bottom: none;
        padding-bottom: 4px;
        background: #f7f9fc;
        white-space: normal;
    }
    .page_confirm__section_head {
        padding: 10px 14px !important;
    }

    /* 完了画面 */
    .page_complete__section {
        padding: 56px 0 70px;
    }
    .page_complete__icon {
        width: 64px;
        height: 64px;
    }
    .page_complete__icon svg {
        width: 34px;
        height: 34px;
    }
    .page_complete__tel_num {
        font-size: 22px;
    }
    .page_complete__home_btn {
        padding: 14px 28px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}




/* =========================
  よくある質問ページ
========================= */
.page_faq__section {
  padding: 64px 0 80px;
}

.page_faq__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page_faq__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ── 質問行 ── */
.page_faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  transition: background 0.2s;
}

.page_faq__question:hover {
  background: #f7f7f7;
}

/* ── Q ラベル ── */
.page_faq__q_label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_faq__q_text {
  flex: 1;
  line-height: 1.5;
}

/* ── トグルアイコン ── */
.page_faq__toggle_icon {
  flex-shrink: 0;
  color: #999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.page_faq__question[aria-expanded="true"] .page_faq__toggle_icon {
  transform: rotate(180deg);
}

/* ── 回答行 ── */
.page_faq__answer {
  border-top: 1px solid #eee;
  padding: 16px 20px 16px calc(20px + 28px + 14px);
  background: #fafafa;
}

.page_faq__answer.is_closed {
  display: none;
}

.page_faq__a_text {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin: 0;
}

/* =========================
  よくある質問 レスポンシブ（max-width: 768px）
========================= */
@media screen and (max-width: 768px) {

  .page_faq__section {
    padding: 40px 0 60px;
  }

  .page_faq__list {
    margin-top: 28px;
  }

  .page_faq__question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .page_faq__answer {
    padding: 14px 16px;
  }

}






/* =========================
  合格速報・合格体験記ページ
========================= */

/* ── メインセクション ── */
.page_goukaku__section {
  padding: 56px 0 100px;
  background: #fff;
}

/* ── 入試種別見出し ── */
.page_goukaku__exam_title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
  color: #1e2d4a;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.page_goukaku__exam_title_bar {
  display: inline-block;
  width: 6px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 3px;
  flex-shrink: 0;
}

/* ── 合格者バナーパネル（JS切り替え） ── */
.page_goukaku__banner_panel {
  display: none;
}
.page_goukaku__banner_panel.is_active {
  display: block;
}

/* ── 合格者バナー 3枚 ── */
.page_goukaku__banners {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}
.page_goukaku__banner_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page_goukaku__banner_label {
  font-size: 15px;
  font-weight: 700;
  color: #1e2d4a;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
}
.page_goukaku__banner_label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 3px;
  flex-shrink: 0;
}
.page_goukaku__banner_img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ── 検索ボックス ── */
.page_goukaku__search_box {
  /* background: var(--color-primary-light); */
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 28px 32px 32px;
  margin-bottom: 20px;
}
.page_goukaku__search_title {
  font-size: 17px;
  font-weight: 700;
  color: #1e2d4a;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.page_goukaku__search_title svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.page_goukaku__search_form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page_goukaku__search_row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
}
.page_goukaku__search_row:first-of-type {
  border-top: 1px solid #ccc;
}
.page_goukaku__search_label {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  flex-shrink: 0;
}
.page_goukaku__search_controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
}
.page_goukaku__radio_item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
}
.page_goukaku__radio_item input[type="radio"] {
  accent-color: var(--color-primary);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.page_goukaku__text_input {
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fff;
  width: 280px;
  max-width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.page_goukaku__text_input:focus {
  border-color: var(--color-primary);
}
.page_goukaku__select_input {
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 28px 0 12px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='4 6 8 10 12 6' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 8px center / 16px no-repeat;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s;
  min-width: 200px;
}
.page_goukaku__select_input:focus {
  border-color: var(--color-primary);
}
.page_goukaku__search_btn_wrap {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.page_goukaku__search_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.25s;
}
.page_goukaku__search_btn:hover {
  background: #089e9a;
}

/* ── 注記・件数 ── */
.page_goukaku__note {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}
.page_goukaku__count {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}
.page_goukaku__count strong {
  color: var(--color-primary);
  font-size: 16px;
}

/* ── 体験記リスト ── */
.page_goukaku__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

/* ── 体験記カード ── */
.page_goukaku__card {
  display: flex;
  gap: 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.2s;
}
.page_goukaku__card:hover {
  box-shadow: 0 6px 24px rgba(10,186,181,0.14);
  transform: translateY(-2px);
}
.page_goukaku__card_avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  flex-shrink: 0;
}
.page_goukaku__card_avatar svg {
  color: rgba(255,255,255,0.9);
}
.page_goukaku__card_body {
  flex: 1;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.page_goukaku__card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.page_goukaku__card_tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.5;
}
.page_goukaku__card_tag_exam {
  background: var(--color-primary);
  color: #fff;
}
.page_goukaku__card_tag_plan {
  background: #1e2d4a;
  color: #fff;
}
.page_goukaku__card_tag_school {
  background: #f0f4ff;
  color: #1e2d4a;
  border: 1px solid #c8d4f0;
}
.page_goukaku__card_tag_target {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}
.page_goukaku__card_tag_year {
  background: #fff8e8;
  color: #a07000;
  border: 1px solid #eec161;
}
.page_goukaku__card_title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.55;
  margin: 0;
}
.page_goukaku__card_title a {
  color: inherit;
  transition: color 0.2s;
}
.page_goukaku__card_title a:hover {
  color: var(--color-primary);
  opacity: 1;
}
.page_goukaku__card_text {
  font-size: 13px;
  color: #666;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.page_goukaku__card_graduate {
  font-size: 12px;
  color: #999;
  margin: 0;
  margin-top: auto;
}
.page_goukaku__empty {
  padding: 48px 0;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* ── ページネーション ── */
.page_goukaku__pager {
  display: flex;
  justify-content: center;
}
.page_goukaku__pager_list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.page_goukaku__pager_item {
  display: flex;
  align-items: center;
}
.page_goukaku__pager_ellipsis {
  font-size: 14px;
  color: #bbb;
  padding: 0 4px;
}
.page_goukaku__pager_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  color: #555;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.page_goukaku__pager_btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  opacity: 1;
}
.page_goukaku__pager_btn.is_active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  font-weight: 700;
  cursor: default;
}
.page_goukaku__pager_btn_arrow {
  background: #fff;
  color: #888;
}

/* =========================
  レスポンシブ（max-width: 768px）
========================= */
@media screen and (max-width: 768px) {

  .page_goukaku__section {
    padding: 36px 0 72px;
  }
  .page_goukaku__banners {
    gap: 24px;
    margin-bottom: 36px;
  }
  .page_goukaku__search_box {
    padding: 20px 16px 24px;
  }
  .page_goukaku__search_row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page_goukaku__radio_item {
    font-size: 13px;
  }
  .page_goukaku__text_input,
  .page_goukaku__select_input {
    width: 100%;
    min-width: 0;
    font-size: 13px;
  }
  .page_goukaku__card_avatar {
    width: 72px;
  }
  .page_goukaku__card_avatar svg {
    width: 26px;
    height: 26px;
  }
  .page_goukaku__card_body {
    padding: 12px 14px;
    gap: 8px;
  }
  .page_goukaku__card_title {
    font-size: 14px;
  }
  .page_goukaku__card_text {
    font-size: 12px;
  }
}


/* --------------------------------------
   NEWS セクション: view_status タグ
-------------------------------------- */
.top_news__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

/* --------------------------------------
   新着情報: view_status ラベル共通
   ※ トップページ・一覧ページ共用
-------------------------------------- */
.news_label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  line-height: 1.6;
  flex-shrink: 0;
}

/* 受付中 */
.news_label--accepting {
  background: var(--color-primary);
  color: #fff;
}

/* 受付終了 */
.news_label--stopped {
  background: #888;
  color: #fff;
}

/* 開催終了 */
.news_label--finished {
  background: #ccc;
  color: #555;
}

/* その他 */
.news_label--other {
  background: var(--color-primary-light);
  color: #555;
}

@media screen and (max-width: 768px) {
  .news_label {
    font-size: 10px;
    padding: 2px 6px;
  }
}

/* =========================
  プライバシーポリシーページ
========================= */
.page_privacy__section {
    padding: 80px 0;
}
.page_privacy__section--alt {
    background: #fbfbfb;
}
.page_privacy__heading {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 32px;
}
.page_privacy__logo_row {
    margin-bottom: 32px;
}
.page_privacy__mark {
    width: 80px;
    height: auto;
}
.page_privacy__subheading {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    padding-left: 12px;
    margin-bottom: 20px;
}
.page_privacy__lead {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}
.page_privacy__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}
.page_privacy__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.page_privacy__num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 2px;
}
.page_privacy__item_title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}
.page_privacy__item_text {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}
.page_privacy__box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px 24px;
}
.page_privacy__contact {
    background: var(--color-primary-light);
    border-radius: 6px;
    padding: 24px 28px;
    font-size: 14px;
    line-height: 2;
    color: #444;
}
.page_privacy__contact_heading {
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}
.page_privacy__mail_link {
    color: var(--color-primary);
    text-decoration: underline;
}
.page_privacy__mail_link:hover {
    opacity: 0.7;
}
.page_privacy__note {
    font-size: 13px;
    line-height: 1.9;
    color: #666;
    border-left: 3px solid #ccc;
    padding-left: 16px;
}
.page_privacy__sign {
    font-size: 13px;
    line-height: 2;
    color: #666;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .page_privacy__section {
        padding: 48px 0;
    }
    .page_privacy__heading {
        font-size: 20px;
    }
    .page_privacy__num {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .page_privacy__contact {
        padding: 16px 20px;
    }
    .page_privacy__box {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .top_course__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}