@charset "UTF-8";

/* =========================
  CSS カスタムプロパティ（テーマ変数）
  色変更はここのみ編集してください（IE非対応）
========================= */
:root {
    --base-color: #333;
    --link-color: #666;
    --linkhover-color: #d10a0a;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;

    /* ブランドカラー（ここでまとめて管理） */
    --brand-primary: #7c0015;
    --brand-dark: #5a0013;
    --brand-bg: #fef0f2;
    --brand-pink-bg: #fdf8f5;
    --brand-mid: #836f70;
    --brand-logo-bg: #7d001a;

    --default-font:
        'Noto Sans JP', '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'メイリオ',
        sans-serif;
    --sub-font: 'Kozuka Gothic Pr6N', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
    --number-font: 'Zen Maru Gothic', sans-serif;
}

/* =========================
  ベース
========================= */
html {
    scroll-behavior: smooth;
}
body {
    color: var(--base-color);
    font-family: var(--default-font);
    font-size: 1rem; /* ベースフォントサイズ 16px（スマホ上書きは下部に記述） */
    font-weight: 500;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

a {
    display: inline-block;
    color: var(--link-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
a[href^='tel:'] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

/* =========================
  ユーティリティ
========================= */
/* footer内のmt-1〜mt-4（別サイトCSS）と干渉しないよう、sm〜xlで定義 */
.mt-sm {
    margin-top: 0.3125rem;
}
.mt-md {
    margin-top: 0.625rem;
}
.mt-lg {
    margin-top: 1.25rem;
}
.mt-xl {
    margin-top: 3.75rem;

    @media (width <= 1024px) {
        margin-top: 2.5rem;
    }
    @media (width <= 768px) {
        margin-top: 1.75rem;
    }
}

.label {
    font-weight: 700;
}
.label--md {
    font-size: 1rem;
}
.label--xl {
    font-size: 1.25rem;
}

.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}

.grayBg {
    background-color: var(--brand-bg);
}

.pinkBg {
    background-color: var(--brand-pink-bg);
}

.tableScroll {
    overflow-x: auto;
    @media (width <= 930px) {
        padding-bottom: 1rem;
    }
}

/* 商品概要セクション（インラインstyle移行） */
.section-text-left {
    text-align: left;
}
.usage-highlight {
    color: #cc2200;
    font-weight: 700;
}
.usage-note {
    margin-bottom: 0.625rem;
}
.usage-subtitle {
    font-weight: 700;
    margin-top: clamp(1.25rem, 4vw, 2.5rem);
    margin-bottom: 0.3125rem;
}

/* ご利用条件・お使いみち・教育資金の例など、共通の箇条書きリスト */
.content-list {
    margin-top: 0.625rem;
    padding-left: 0.625rem;

    li {
        margin-bottom: 0.3125rem;
        text-indent: -1em;

        &::before {
            content: '・';
        }
    }
    &.content-list--notesTextChild,
    &.content-list--notesTextNext {
        margin-top: 0;
        font-size: 0.75rem;
        text-align: left;
        color: #555555;
        font-weight: 500;

        li {
            margin-bottom: 0;
        }
    }
    &.content-list--notesTextChild {
        padding-left: 2em;
    }
}
.notes-content-list {
    margin-top: 0.625rem;
    padding-left: 0.9375rem;

    .content-list + & {
        margin-top: 0;
    }

    li {
        margin-bottom: 0.3125rem;
        text-indent: -1em;

        &::before {
            content: '*';
            margin-right: 0.25em;
        }
    }
}
.content-dl {
    margin-top: 0.625rem;

    dt {
        margin-top: 0.5em;
        font-weight: 700;
    }
}
.notesText--right {
    text-align: right;
}
.gray-box--notice .calc-label {
    margin-bottom: 0.3125rem;
}
.faq-doc-list {
    margin: 0.625rem 0;
    padding-left: 1.25rem;
}
.faq-doc-list li {
    margin-bottom: 0.1875rem;
}

/* =========================
  レイアウト共通
========================= */
.inner {
    max-width: 1000px;
    margin: 0 auto;
}
.innerM {
    max-width: 800px;
    margin: 0 auto;
}

/* セクションタイトル */
.sectionTitle {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: bold;
    color: var(--brand-primary);
    text-align: center;
    scroll-margin-top: 70px; /* 固定ヘッダー高さ分、アンカースクロール時に見出しが隠れないように */
}

.sectionSubTitle {
    margin-bottom: 0.3em;
    padding-bottom: 0.3em;
    border-bottom: 2px solid;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--brand-primary);
    font-weight: 700;
}

/* =========================
  ヘッダー
========================= */
.header {
    display: flex;
    justify-content: center;
    padding: 0.9375rem 1.25rem;
    width: 100%;
    background-color: var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    width: 100%;
}

/* ロゴ */
.header__logo img {
    display: block;
    width: auto;
    height: 2.5rem;
    object-fit: contain;
}

/* ナビゲーション */
.header__navi .navList {
    display: flex;
    gap: 0 1.5rem;
}
.header__navi a {
    padding-right: 0.8125rem;
    background-image: url(../img/icon-arrow_right.svg);
    background-repeat: no-repeat;
    background-size: 5px auto;
    background-position: center right;
    color: var(--brand-primary);
    font-family: var(--sub-font);
    font-size: 0.875rem;
    font-weight: 600;
}
.header__navi a:hover,
.header__navi a:focus {
    color: color-mix(in srgb, var(--brand-primary) 75%, var(--white-color));
}

/* ハンバーガーボタン */
.humburgerBtn,
.hamburgerBtn {
    display: none;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

/* =========================
  固定ボタン
========================= */
/* .flowtBtn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;

    span {
        display: inline-block;
    }
}

.flowtBtn__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.75rem;
    border-radius: 0;
    text-align: center;
    color: var(--white-color);
    font-weight: bold;
    font-size: 1rem;
    padding: 10px 20px;
    box-sizing: border-box;
    margin-left: auto;

    @media (width <= 768px) {
        width: auto;
        height: auto;
        margin-left: 0;
    }
    @media (width <= 480px) {
        flex-direction: column;
    }
} */

.flowtBtn {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 1rem;
    position: fixed;
    right: 0;
    top: 5.5rem;
    z-index: 99;
    
    @media (width <= 768px) {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }

    span {
        display: inline-block;
    }
}

.flowtBtn__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 11rem;
    border-radius: 1.25rem 0 0 1.25rem;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: var(--white-color);
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px;
    box-sizing: border-box;

    @media (width <= 768px) {
        width: auto;
        height: auto;
        margin-left: 0;
    }
    @media (width <= 480px) {
        flex-direction: column;
    }
}

/* ボタン色（共通クラス） */
.orange {
    background: #ea5512;
    box-shadow: 0px 6px 0px 0px #b7430e;
}
.green {
    background: #2d7a7a;
    box-shadow: 0px 6px 0px 0px #246060;
}
.gray {
    background: #e5ccd1;
    box-shadow: 0px 6px 0px 0px #cc9ca6;
    color: var(--base-color);
}

/* =========================
  メイン画像
========================= */
.mainimg img {
    width: 100%;
    height: auto;
}

/* =========================
  メインコンテンツ
========================= */
.mainCont {
    margin-top: 4.375rem;
}

.mainCont > section {
    /* margin: 0 0 3.125rem; */
    margin: 0 0 clamp(2.625rem, 6vw, 3.75rem);
}

/* =========================
  キャッチコピー
========================= */
.catch {
    margin-bottom: 0.9375rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

/* =========================
  申し込みの流れ
========================= */
.flow.row {
    margin-bottom: 1.875rem;
}

/* =========================
  学費セクション
========================= */
.tuitionSection {
    /* padding: 3.75rem 1.25rem; */
    padding: 3.75rem 0;

    @media (width <= 480px) {
        padding: 2.5rem 0;
    }

    .sectionTitle {
        margin-top: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    }
}

.tuitionSection .features {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.tuition__wrapper {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-bottom: clamp(2.5rem, 6vw, 3.75rem);

    @media (width <= 480px) {
        grid-template-columns: 1fr;
    }
}

/* 学費カード */
.tuitionCard {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    row-gap: 0;
    background: var(--white-color);
    border-radius: 0.9375rem;
    overflow: hidden;
}

.cardTitle {
    background: var(--brand-dark);
    color: var(--white-color);
    text-align: center;
    padding: 0.875rem;
    font-weight: bold;
}
.cardTitle02 {
    background: var(--brand-logo-bg);
    color: var(--white-color);
    text-align: center;
    padding: 0.875rem;
    font-weight: bold;
}

.cardMain {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5625rem;
    padding: 1.5625rem;
    background: var(--white-color);

    @media (width <= 1060px) {
        gap: .5rem;
        align-items: center;
        flex-direction: column;
    }
}

.cardYears {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    line-height: 1;

    @media (width <= 1060px) {
        display: flex;
        align-items: center;
        gap: .5rem;

        br {
            display: none;
        }
    }
}
.cardYears span {
    font-size: 1rem;
}

.cardPrice {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #cc2200;
    letter-spacing: -0.01em;
    line-height: 1;
}
.cardPrice .small,
.cardPrice .yen {
    font-size: 1.5rem;
}
.cardPrice .small {
    margin-right: -0.625rem;
}
.cardPrice .yen {
    margin-left: -0.625rem;
}

.cardList {
    padding: 0.625rem 1.25rem;
}
.cardList__item {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 1.25rem;
    border-bottom: 1px dotted #e8ddd5;
    font-size: 0.875rem;
}
.cardList__item .ttl {
    font-size: 0.875rem;
}
.cardList__item .price {
    font-size: 0.9375rem;
    font-weight: 900;
}

.cardText {
    padding: 1.25rem 1.25rem 3.125rem;
    font-size: 0.8125rem;
    line-height: 1.7;
    letter-spacing: 0.07em;
    color: #000;

    @media (width <= 640px) {
        padding: 1.25rem 1.25rem 2rem;
    }
}

/* 学費要約 */
.tuitionSummary {
    margin-bottom: 2.5rem;
    background-color: var(--brand-bg);
    padding: 1.25rem 1.25rem 1.5625rem;
}
.summaryTitle {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-primary);
    margin-bottom: 1.25rem;
}
.tuitionSummary p {
    font-weight: 600;
}
.tuitionSummary .notesText {
    margin: 0.625rem 0;
}

/* =========================
  費用テーブル
========================= */
.costTableTitle {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.costTable {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    border: none;
    background-color: var(--white-color);
}
.costTable thead {
    background: var(--brand-dark);
    color: var(--white-color);
}
.costTable thead tr {
    border: none;
}
.costTable thead th {
    padding: 0.625rem;
    text-align: left;
}
.costTable thead th:first-child,
.costTable thead th.priceLabel {
    padding-left: 1.25rem;
}

.costTable tr {
    border-bottom: 1px solid #e8ddd5;
}
.costTable th,
.costTable td {
    padding: 0.625rem 1.8rem 0.625rem 0.625rem;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;

    @media (width <= 1024px) {
        padding-right: 1rem;
    }
    @media (width <= 965px) {
        padding-right: 0.625rem;
    }
}
.costTable td:first-child {
    padding-left: 1.25rem;
}
.costTable .price {
    text-align: right;
}

.priceHighlight {
    background: #be808c;
    color: var(--white-color);
    text-align: right;
    font-weight: 600;
}

.notesText {
    font-size: 0.75rem;
    margin-top: 10px;
    text-align: left;
    color: #555555;
    font-weight: 500;
}

/* 進学先比較テーブル */
.costTable02 {
    width: 100%;
    max-width: 760px;
    margin-top: 2.5rem;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1rem;
    table-layout: fixed;
}

.costTable02 th,
.costTable02 td {
    border: 1px solid var(--brand-primary);
    padding: 9px 16px;
}

.costTable02 th {
    background: #fff2f4;
    font-weight: 700;
    color: var(--brand-primary);
    text-align: center;
}

.costTable02 td {
    background: var(--white-color);
    color: #333;
}

.costTable02 td:first-child {
    font-weight: 600;
    color: #143b66;
}

/* =========================
  特徴セクション
========================= */
.featuresSection {
    width: 100%;
    background: var(--white-color);
    margin: 0 auto;
}
.featuresSection .sectionTitle {
    margin-bottom: clamp(2.625rem, 6vw, 3.75rem);
}
.featuresGrid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.featureCard {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    background: #fdf8f5;
    padding: 1.5625rem 0.625rem;
    border-radius: 10px;
    text-align: center;
}
.featureCard h3 {
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--brand-primary);
    font-size: 1.5rem;
    font-weight: 700;
}
.featureMain {
    display: flex;
    flex-direction: column;
}
.featureText {
    padding: 0 0.9375rem;
    text-align: left;
    line-height: 1.6;
    font-size: 0.875rem;
}
.featureImgWrapper {
    flex: 1 0 0%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.featureImg {
    display: block;
    margin: 10px auto;
    height: auto;
}

/* =========================
  大学カード・奨学金
========================= */
.introductionSection {
    padding: clamp(2.625rem, 6vw, 3.75rem) 0;
}
.introductionSection .sectionTitle {
    margin-bottom: clamp(2.625rem, 6vw, 3.75rem);
}
.introductionSection .contTtl {
    margin-bottom: 0.3em;
    color: #143b66;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: bold;
}
.introductionSection .featureText {
    margin-bottom: 0.9375rem;
    padding: 0;
}

.uniCardWrap {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 2.5rem;
}
.uniCard {
    background: var(--white-color);
    border-radius: 12px;
    padding: 1.875rem 1.5625rem;
    text-align: left;
}
.uniType {
    color: #143b66;
    font-size: 1.125rem;
    font-weight: 600;
}
.uniName {
    margin-bottom: 0.3125rem;
    color: #143b66;
    line-height: 1.2;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 600;
}
.uniDept {
    margin-bottom: 0.3125rem;
}
.uniBtn:hover {
    color: var(--brand-primary);
}

.scholarshipBox .contTtl {
    color: #cc2200;
}
.scholarshipBox .featureText {
    margin-bottom: 2.5rem;
}
.scholarshipList {
    margin-bottom: 2.5rem;
}
.schItem {
    background: var(--white-color);
    border-radius: 12px;
    padding: 1.5625rem 1.875rem;
    margin-bottom: 1.25rem;

    hr {
        margin: 1.25rem 0;
    }
}
.schLink {
    font-size: 1rem;
}
.scholarshipBox .notesText {
    margin: 0;
    text-align: right;
}
.scholarshipBox .scholarshipImg {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.gray-box {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.calc-label {
    display: inline-block;
    background: var(--brand-primary);
    color: var(--white-color);
    font-size: 0.8125rem;
    padding: 8px 16px;
    line-height: 1.3;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: default;

    &:hover {
        background: var(--brand-primary);
        color: var(--white-color);
    }
    .gray-box & {
        margin-right: 12px;
    }
}

/* =========================
  ご利用までの流れ
========================= */
.flowSection .sectionTitle {
    margin-bottom: clamp(2.625rem, 6vw, 3.75rem);
}
.flowSection .flowImg {
    margin-bottom: clamp(1.875rem, 6vw, 3.125rem);
}
.flowSection .flowBtn {
    text-align: center;
}
.flowSection .flowBtn a {
    max-width: 100%;
    min-width: 21.625rem;
    padding: 0.625rem 1.5625rem;
    border-radius: 99em;
    border: 1px solid var(--brand-logo-bg);
    background-color: var(--white-color);
    color: var(--brand-logo-bg);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    
    @media (width <= 480px) {
        min-width: 18.75rem;
    }
}
.flowSection .flowBtn a:hover,
.flowSection .flowBtn a:focus {
    background-color: var(--brand-logo-bg);
    color: var(--white-color);
}

/* =========================
  アイコン
========================= */
.title-icon {
    width: 93px;
    margin-left: 10px;
    vertical-align: middle;
}
.title-icon02 {
    width: 350px;
    vertical-align: middle;
}
.title-icon03 {
    width: 60px;
    vertical-align: middle;
}

/* =========================
  よくある質問
========================= */
.faqSection {
    padding: clamp(2.625rem, 6vw, 3.75rem) 0;
}
.faqSection .sectionTitle {
    margin-bottom: clamp(2.625rem, 6vw, 3.75rem);
}
.faqList {
    margin-bottom: clamp(2.625rem, 6vw, 3.75rem);
}
.faqList__item {
    border: 1px solid var(--white-color);
    border-radius: 10px;
    margin-bottom: 0.9375rem;
    overflow: hidden;
}
.faqList__item:last-child {
    margin-bottom: 0;
}

.faqList__item .label {
    display: grid;
    grid-template-columns: auto 1fr;
    font-size: 1rem;
    font-weight: 700;
}
.question {
    font-size: 1rem;
    padding: 0.9375rem 2rem 0.9375rem 1.25rem;
    background-color: var(--white-color);
    cursor: pointer;
    text-align: left;
    position: relative;
}
.question::after {
    display: inline-block;
    content: '';
    width: 0.65em;
    height: 1em;
    background-image: url(../img/icon-question-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%) rotate(0);
    transform-origin: center center;
    transition: all 0.3s ease-out;
}
.question.js-open::after {
    transform: translateY(-50%) rotate(180deg);
}
.answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    background: var(--white-color);
}
.answer .detail {
    margin-top: 0.625rem;
    padding-left: 1.5625rem;
}
.answer .detail.-notes {
    padding-left: 2.4rem;
    text-indent: -1em;
}
.answer .content-list {
    padding-left: 2.1875rem;
}
.question .arrow {
    margin-left: auto;
}

.arrow {
    color: var(--brand-primary);
}

.qIcon {
    color: var(--brand-primary);
    margin-right: 10px;
}

.aIcon {
    color: #003a8f;
    margin-right: 10px;
}

.faqSection .faqBtn {
    text-align: center;
}
.faqSection .faqBtn a {
    max-width: 100%;
    min-width: 21.625rem;
    padding: 0.625rem 1.5625rem;
    border-radius: 99em;
    border: 1px solid var(--brand-logo-bg);
    background-color: var(--brand-pink-bg);
    color: var(--brand-logo-bg);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;

    @media (width <= 480px) {
        min-width: 18.75rem;
    }
    @media (width <= 380px) {
        min-width: 14.75rem;
    }
}
.faqSection .faqBtn a:hover,
.faqSection .faqBtn a:focus {
    background-color: var(--brand-logo-bg);
    color: var(--white-color);
}

/* =========================
  商品概要
========================= */
.outlineSection {
    letter-spacing: 0.08em;
    .sectionTitle {
        margin-bottom: clamp(2.625rem, 6vw, 3.75rem);
    }
    .sectionSubTitle {
        margin-top: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    }
    .calc-box {
        margin-top: clamp(0.75rem, 2vw, 1.25rem);
    }
    .notesText.align-right {
        text-align: right;
    }
}
.calc-box {
    border: 1px solid var(--border-color);
    padding: 20px;
    max-width: 1100px;
    background: var(--white-color);
}

.calc-box-title {
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.desc {
    color: var(--brand-primary);
    font-weight: bold;
    margin: 20px 0 10px;
}

.result-box {
    background: #f1f1f1;
    padding: 14px 18px;
    font-size: 18px;
    margin-bottom: 10px;
}

.note {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.78125rem;
    font-weight: bold;
}

.rate-table td {
    padding: 6px 16px;
    text-align: center;
}

.rate-table tr {
    border-bottom: 2px solid var(--white-color);
}

.rate-table-left {
    background: #7d001a;
    color: var(--white-color);
    font-weight: bold;
    width: 60%;

    @media (width <= 1024px) {
        width: 40%;
    }
}
.rate-table-right {
    background: #f9eef0;
    width: 40%;

    @media (width <= 1024px) {
        width: 60%;
    }
}

.big {
    color: #7d001a;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2;
}

.repayment-row {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.repayment-type {
    font-weight: bold;
    min-width: 120px;
}

.repayment-text {
    line-height: 1.6;
}

.outlineNotesList li:not(:last-child){
    margin-bottom: 0.3em;
}

/* =========================
  必要書類リスト
========================= */
.doc-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.375rem 2.5rem;
    padding-left: 1.25em;
    list-style: disc;
    font-size: 1.25rem;
    
    @media (width <= 748px) {
        grid-template-columns: 1fr;
        font-size: 1rem;
    }
}

.doc-list li {
    line-height: 1.6;
    font-weight: bold;
}

/* =========================
  ボタン
========================= */
.box-btn {
    display: block;
    width: 700px;
    max-width: 100%;
    margin-inline: auto;
    background: var(--brand-primary);
    color: var(--white-color);
    font-size: 24px;
    padding: 24px 16px;
    text-align: center;
}
.box-btn:hover,
.box-btn:focus {
    background: color-mix(in srgb, var(--brand-primary) 75%, var(--white-color));
}

/* =========================
  お問い合わせ
========================= */
.contact-section {
    background: var(--brand-bg);
    padding: 70px 50px;
    max-width: 100%;
    margin-bottom: 0 !important;

    @media (width <= 480px) {
        padding: 50px 5vw;
    }
}

.contact-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 18px;
    padding: 50px 40px;
    text-align: center;
    border: none;
}

.contact-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-sub {
    font-size: 15px;
    font-weight: bold;
}
.contact-sub2 {
    font-size: 15px;
    margin-top: 10px;
    font-weight: bold;
}
.contact-time {
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
}

.contact-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}
.contact-phone a {
    color: inherit;
    text-decoration: none;
}
.contact-phone-small a {
    color: inherit;
    text-decoration: none;
}

.contact-phone-small {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* =========================
  お問い合わせフォーム（table）
========================= */
.table {
    margin: 2.5rem 0;
}

.table th {
    width: 250px;
}

/* =========================
  footer
========================= */
footer {
    a {
        color: inherit;
    }
}

/* =========================
  レスポンシブ：PC（769px〜）
========================= */
@media screen and (min-width: 1201px) {
    nav {
        display: flex !important;
    }
    .sp-buttons {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    /* =========================
    レイアウト共通
    ========================= */
    /* .inner {
        padding: 0 2rem;
        max-width: 100%;
    }
    .innerM {
        padding: 0 2rem;
    } */
    .inner {
        padding: 0 calc(60px + 2rem) 0 2rem;
        max-width: 100%;
    }
    .innerM {
        padding: 0 calc(60px + 2rem) 0 2rem;
    }

    .noScrolled {
        height: 100%;
        overflow: hidden;
    }
    /* ヘッダー */
    .header__navi {
        display: none;
        width: 100%;
        height: calc(100dvh - 70px);
        background: var(--white-color);
        overflow-y: scroll;
        position: absolute;
        top: 4.375rem;
        left: 0;
        z-index: 100;
    }

    /* ナビゲーション */
    .header__navi .navList {
        display: block;
    }
    .header__navi .navList__item:first-child {
        border-top: 1px solid var(--brand-primary);
    }
    .header__navi .navList__item {
        border-bottom: 1px solid var(--brand-primary);
    }
    .header__navi a {
        width: 100%;
        padding: 0.9375rem 2.5rem 0.9375rem 1.25rem;
        background-size: 8px auto;
        background-position: center right 20px;
    }

    /* ハンバーガーボタン */
    .humburgerBtn,
    .hamburgerBtn {
        display: block;
        background-color: var(--white-color);
        cursor: pointer;
    }

    .humburgerLine span {
        display: block;
        width: 1.875rem;
        height: 0.25rem;
        margin: 0.3125rem auto;
        background-color: var(--brand-primary);
        transition: all 0.3s ease;
    }

    .humburgerLine.open .top {
        transform: translateY(9px) rotate(45deg);
    }

    .humburgerLine.open .middle {
        opacity: 0;
    }

    .humburgerLine.open .bottom {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* =========================
  レスポンシブ：タブレット（〜900px）
========================= */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
  レスポンシブ：スマホ（〜768px）
========================= */

@media screen and (min-width: 769px) {
    /* ボタン色（共通クラス） */
    .orange:hover,
    .orange:focus {
        background: #b7430e;
    }
    .green:hover,
    .green:focus {
        background: #246060;
    }
    .gray:hover,
    .gray:focus {
        background: #cc9ca6;
    }
}
@media screen and (max-width: 768px) {
    body {
        padding-bottom: 49px;
        font-size: 0.875rem;
    }

    a[href^='tel:'] {
        cursor: pointer;
        pointer-events: auto;
        letter-spacing: 0.02em;
    }

    /* =========================
    レイアウト共通
    ========================= */
    .inner {
        padding: 0 5vw;
    }
    .innerM {
        padding: 0 7vw;
    }

    /* スマホ固定ボタン（画面下部） */
    .flowtBtn {
        flex-direction: row;
        gap: 0;
        width: 100%;
        height: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }

    .flowtBtn__item {
        flex: 1;
        width: auto;
        min-height: auto;
        padding: 0.9375rem;
        border-radius: 0;
        box-shadow: none;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        text-align: center;
        font-size: 0.8125rem;
    }

    /* features02 幅調整 */
    .features02 {
        width: 92%;
        margin: 0 auto;
    }

    /* featureカード */
    .features-grid {
        gap: 15px;
    }
    .featureCard {
        padding: 18px;
    }

    /* 学費カード */
    .tuition-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .tuitionCard {
        width: 100%;
    }
    .cardPrice {
        font-size: 34px;
    }
    .cardPrice .small {
        margin-right: -.2rem;
    }
    .cardPrice .yen {
        margin-left: -.2rem;
    }
    .row {
        font-size: 13px;
    }

    /* 大学カード */
    .uniCard {
        width: 100%;
        padding: 25px 20px;
    }
    .uniCardWrap {
        gap: 15px;
    }
    .uniName {
        font-size: 20px;
    }
    .uniDept,
    .uniType,
    .uniBtn {
        font-size: 18px;
    }

    /* お問い合わせ */
    .contact-phone {
        font-size: 30px;
    }
    .contact-phone-small {
        font-size: 18px;
    }
    .contact-box {
        padding: 35px 20px;
    }

    /* お問い合わせフォーム */
    .table th,
    .table td {
        display: block;
        width: 100%;
    }

    /* セクション余白 */
    section {
        padding: 1.25rem 0;
    }

    /* キャッチコピー */
    .catch {
        font-size: 16px;
        line-height: 1.8;
    }
}
@media screen and (max-width: 649px) {
    body {
        padding-bottom: 69px;
    }
}

/* =========================
  レスポンシブ：スマホ小（〜600px）
========================= */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .box-btn {
        width: 70%;
    }
}

/* =========================
  レスポンシブ：スマホ小（〜549px）
========================= */
@media (max-width: 549px) {
    .title-icon {
        width: 28px;
    }

    .featureImg {
        width: 60%;
    }

    .featureImg-htu {
        display: block;
        margin: 40px auto;
        width: 100%;
        height: auto;
    }
}

/* =========================
  レスポンシブ：スマホ小（〜480px）
========================= */
@media (max-width: 480px) {
    .uniCard {
        width: 100%;
        padding: 25px 20px;
    }
    .uniName {
        font-size: 20px;
    }
    .uniDept,
    .uniType,
    .uniBtn {
        font-size: 18px;
    }
}
