@charset "UTF-8";

:root {
    /* メインカラー */
    --color-digital: #36BDEF;
    --color-green: #8DC21F;
    --color-design: #EE835C;
    --color-grey: #7F8C94;
    --color-table: #e3f2fd;

    /* テキストカラー */
    --text-base: #27333A;    /* 基本の本文用 */
    --text-white: #ffffff;   /* 濃い背景の上の文字用 */

    /* インナー幅 */
    --width-inner: 1120px;

    /* セクション間の余白 */
    --space-section: 80px;

    /* フォント */
    --font-main:'Poppins', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    
}

@media(max-width:767px){
    :root{
        --space-section:40px;
    }
}

/* ==========================================================================
   基本レイアウト
   ========================================================================== */
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-base);
    /* overflow-x: hidden; スマホでの横揺れ防止 */
    margin: 0 auto;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    /* padding: 0 20px;   スマホ時の左右の余白 */
    width: 100%;
}
.inner-department{
    max-width: 840px;
    margin: 0 auto;
    /* padding: 0 20px;   スマホ時の左右の余白 */
    width: 100%;
}

section {
    padding: 0px 20px;
}

.top{
    padding: 0 0 50px;
}

/* ボタン */
.back-button-container {
    text-align: center;
    padding: 60px 0;
}

.category-button-container {
    text-align: center;
    padding: 5px 0 0 0;
    display: block;
    transition: all 0.3s;    
}

.category-button-container:hover {
    opacity: 0.5;
}

.btn-digital{
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    /* background-color: var(--color-digital); */
    background: linear-gradient(to top, rgb(37, 125, 156), #36BDEF);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    color: var(--text-white);
}

.btn-green{
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    /* background-color: var(--color-green); */
    background: linear-gradient(to top, rgb(36, 143, 42), #8DC21F);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    color: var(--text-white);
}

.btn-design{
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    /* background-color: var(--color-design); */
    background: linear-gradient(to top, rgb(194, 62, 62), #EE835C);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    color: var(--text-white);
}

.card-link{
    display: block;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.card-link.js-fade:hover {
    opacity: 0.8;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.btn-back {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid var(--color-grey);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

/* マウスを乗せた時の動き */
.btn-back:hover {
    background-color: var(--color-grey);
    color: var(--text-white);
    border-color: var(--color-grey);
}

/* PCのみ表示（スマホでは消す）用の共通クラス */
@media (max-width: 768px) {
    .u-pc-only {
        display: none !important;
    }
}

/* SPのみ表示 */
.u-sp-only {
    display: none;
}
@media (max-width: 767px) {
    .u-sp-only {
        display: block;
    }
}

.bg-area{
    background-image: url(../images/fv_back_img.webp);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1940px;
}
@media (max-width: 767px) {
    .bg-area{
        background-size: 100% auto;
    }
}

.design{
    background-color: var(--color-design) !important;
}
.design-text{
    color: var(--color-design) !important;
}
.design-border{
    border: 1px solid var(--color-design) !important;
}
.design-back{
    background-image: url(../images/design_back_lg.png) !important;
}
.digital{
    background-color: var(--color-digital) !important;
}
.digital-text{
    color: var(--color-digital) !important;
}
.digital-border{
    border: 1px solid var(--color-digital) !important;
}
.digital-back{
    background-image: url(../images/digital_back_lg.png) !important;
}
.green{
    background-color: var(--color-green) !important;
}
.green-text{
    color: var(--color-green) !important;
}
.green-border{
    border: 1px solid var(--color-green) !important;
}
.green-back{
    background-image: url(../images/green_back_lg.png) !important;
}

/* ==========================================================================
   jQueryアニメーション用（ふわっと浮き上がる）
   ========================================================================== */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s, box-shadow 0.3s;
}

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

/* ==========================================================================
   スマホ表示の調整
   ========================================================================== */
@media (max-width: 767px) {
    section {
        padding: 0px 20px;
    }
    
    /* h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    } */

    /* スマホで画像が小さすぎる場合の個別調整用クラス */
    .sp-full-width {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }
}
.u-sp-br {
    display: none;
}
@media (max-width: 767px) {
    .u-sp-br {
        display: block;
    }
}

/*============================
#fv.fv
============================*/
.fv{
    max-width: 840px;
    margin: 0 auto;
    padding-top: 130px;
}
@media (max-width: 767px) {
    .fv{
    padding-top: 300px;
}
}
.fv__inner{
    display: flex;
    gap: 30px;
}
@media (max-width: 767px) {
    .fv__inner{
        flex-direction: column;
    }
}
.fv__logo{
    flex-shrink: 0;
    width: 330px;
}
.fv__update{
    flex-grow: 1;
}
.fv__update__sub{
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px;
}
@media (max-width: 767px) {
    .fv__update__sub{
        font-size: 15px;
    }
    }
.fv__update__text{
    font-size: 12px;
font-weight: 400;
line-height: 19px; 
}
.fv__purpose{
    margin-top: 15px;
}
.fv__purpose__inner{
    background-color: #ffffff;
    padding: 20px;
}
@media (max-width: 767px) {
    .fv__purpose__inner{
    padding: 0px;
    background-color: unset;
}
}
.fv__purpose__title{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}
@media (max-width: 767px) {
    .fv__purpose__title{
        flex-direction: column;
        align-items: center;
        border-bottom: none;
        padding-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .fv__purpose__title__left{
font-size: 16px;
}
}
@media (max-width: 767px) {
.fv__purpose__title__right{
    font-size: 12px;
}
}
.fv__purpose__wrapper{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 15px;
}
.fv__purpose__sub{
    width: 100px;
    height: 100px;
    background-color: var(--color-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 20px;
    flex-shrink: 0;
        line-height: 1.3;
}
.fv__purpose__text{
    font-size: 14px;
    line-height: 19px;
}
.fv__copy{
    font-size: 68px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin: 50px 0;
}
.fv__copy span{
    font-size: 54px;
}

/*============================
#department.department
============================*/
.department{
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.department__digital {
    background-color: #fff;
    display: flex;
    max-width: 840px;
    margin: 0 auto;
    gap: 20px;
    align-items: center;
    /* max-height: 275px; */
    border: 1px solid var(--color-digital);
}
@media(max-width:767px){
    .department__digital {
        flex-direction: column;
    }
    .department__left__digital{order: 1;}
    .department__right{order: 2;}
    .department__center{order: 3;}
}
.department__left__digital{
    background-image: url(../images/digital_back.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 283px;
    color: var(--text-white);
    flex-shrink: 0;
    /* height: 275px; */
    padding: 24px;
}
@media(max-width:767px){
    .department__left__digital{
        width: 100%;
        padding: 25px 25px;
    }
}
.department__left__green{
    background-image: url(../images/green_back.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 283px;
    color: var(--text-white);
    flex-shrink: 0;
    /* height: 275px; */
    padding: 24px;
}
@media(max-width:767px){
    .department__left__green{
        width: 100%;
        padding: 25px 25px;
    }
}
.department__left__design{
    background-image: url(../images/design_back.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 283px;
    color: var(--text-white);
    flex-shrink: 0;
    /* height: 275px; */
    padding: 24px;
}
@media(max-width:767px){
    .department__left__design{
        width: 100%;
        padding: 25px 25px;
    }
}
.department__left__sub{
    font-size: 16px;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 400;
}
.department__left__title{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
}
.department__left__text{
    font-size: 12px;
    line-height: 19px;
}
.department__center{
    flex-grow: 1.5;
    flex-basis: 0;
}
@media(max-width:767px){
    .department__center{
        padding: 0 30px 20px 30px;
    }
}
.department__center__title{
    font-size: 22px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}
.department__center__title span{
    font-size: 10px;
    background-color: var(--color-grey);
    align-items: center;
    justify-content: center;
    display: inline-flex;
    color: var(--text-white);
    padding: 5px;
}
.department__center__text{
    font-size: 13px;
    line-height: 22px;
    margin-top: 10px;
}
.department__right{
    flex-grow: 1;
    flex-basis: 0;
    text-align: left;
}
@media(max-width:767px){
    .department__right{
    text-align: center;
}
}
.department__img{
    width: 90%;
}
.department__green{
    background-color: #fff;
    display: flex;
    max-width: 840px;
    margin: 0 auto;
    gap: 20px;
    align-items: center;
    /* max-height: 275px; */
    border: 1px solid var(--color-green);
}
@media(max-width:767px){
    .department__green {
        flex-direction: column;
    }
    .department__left__green{order: 1;}
    .department__right{order: 2;}
    .department__center{order: 3;}
}
.department__design{
    background-color: #fff;
    display: flex;
    max-width: 840px;
    margin: 0 auto;
    gap: 20px;
    align-items: center;
    /* max-height: 275px; */
    border: 1px solid var(--color-design);
}
@media(max-width:767px){
    .department__design {
        flex-direction: column;
    }
    .department__left___design{order: 1;}
    .department__right{order: 2;}
    .department__center{order: 3;}
}

/*============================
#benefit.benefit
============================*/
.benefit__wrapper{
    display: flex;
    align-items: flex-start;
    margin: 80px 0 90px;
}
@media(max-width:767px){
    .benefit__wrapper{
        flex-direction: column;
        margin: 55px 0 45px;
    }
}
.benefit__left{
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    align-items: center;
}
@media(max-width:767px){
    .benefit__left{
    padding: 25px 0;
    }
}
.benefit__title{
    color: #004097;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
}
.benefit__sub{
    display: block;
    padding: 20px 0px;
    width: fit-content;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
}
.benefit__text{
        font-size: 13px;
    line-height: 24px;
}
.benefit__center{
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    align-items: center;
}
@media(max-width:767px){
    .benefit__center{
    padding: 25px 0;
    }
}
.benefit__right{
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    align-items: center;
}
@media(max-width:767px){
    .benefit__right{
    padding: 25px 0;
    }
}
.benefit__contents:not(:last-child){
border-right: 1px solid var(--text-base);
}
@media(max-width:767px){
    .benefit__contents:not(:last-child){
        border-bottom: 1px solid var(--text-base);
        border-right: none;
    }
}

/*============================
#features.features
============================*/
.features{
    display: flex;
    gap: 50px;
    max-width: 1120px; 
    align-items: flex-end;
}
@media(max-width:767px){
    .features{
        flex-direction: column;
    }
}
.features__heading{
    flex-grow: 1;
}
.features__title{
    font-size: 29px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}
@media(max-width:767px){
    .features__title{
    font-size: 25px;
    }
}
.features__text{
    font-size: 17px;
    line-height: 30px;
}
.features__wrapper02{
    margin-top: 50px;
}
.features__content{
    max-width: 510px;
    flex-shrink: 0;
}
.features__content__title{
    background-color: var(--color-grey);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 22px;
    padding: 10px 0;
}
.features__content__title span{
    font-size: 18px;
}
.features__content__wrapper{
        display: flex;
        margin-top: 23px;
        gap: 10px;
}
@media(max-width:767px){
    .features__content__wrapper{
        flex-direction: column;
}
}
.features__content__sub{
    display: block;
    width: 240px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid var(--text-base);
}
@media(max-width:767px){
    .features__content__sub{
        width: 100%;
    }
}
.features__content__lead{
    margin: 15px 0;
}
@media(max-width:767px){
.features__content__lead{
    margin: 20px 0;
}
}
.features__content02{
    margin-top: 40px;
}
.features__content__department{
    display: flex;
    gap: 13px;
}
@media(max-width:767px){
    .features__content__department{
    display: flex;
    gap: 13px;
            flex-direction: column;
}
}
.features__content__department_digital{
        flex: 1;
}
.features__content__department_digital_title{
    background-image: url(../images/digital_back_sm.png);
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    color: var(--text-white);
    padding: 2px 0;
    background-size: cover;
}
.features__content__text{
        font-size: 12px;
}
.features__content__text span{
    color: var(--color-digital);
}
.features__content__department_green{
        flex: 1;
}
.features__content__department_green .title{
        background-image: url(../images/green_back_sm.png);
        font-size: 15px;
    text-align: center;
    font-weight: 700;
    color: var(--text-white);
    padding: 2px 0;
    background-size: cover;
}
.features__content__department_green .text{
    font-size: 12px;
}
.features__content__department_green .text span{
    color: var(--color-green);
}
.features__content__department_design{
        flex: 1;
}
.features__content__department_design .title{
    background-image: url(../images/design_back_sm.png);
        font-size: 15px;
    text-align: center;
    font-weight: 700;
    color: var(--text-white);
    padding: 2px 0;
    background-size: cover;
}
.features__content__department_design .text{
    font-size: 12px;
}
.features__content__department_design .text span{
    color: var(--color-design);
}

/*============================
#education.education
============================*/
.education__wrapper{
    gap: 60px;
    display: flex;
    margin: 80px 0 60px;
}
@media(max-width:767px){
    .education__wrapper{
            flex-direction: column;
            gap: 30px;
    }
}
.education__title{
    max-width: 385px;
    flex-shrink: 0;
}
.education__text{
        font-size: 20px;
    line-height: 31px;
}
@media(max-width:767px){
    .education__text{
        font-size: 16px;
    line-height: 34px;
}
}

/*============================
#pillar.pillar
============================*/
.pillar__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
@media(max-width:767px){
    .pillar__grid{
        grid-template-columns:1fr;
    }
}
.pillar__title{
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width:767px){
    .pillar__title{
    grid-column: span 1;
    }
}
.pillar__item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pillar__item__no{
    height: 44px;
}
.pillar__item__title{
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
}

/*============================
#you-go.you-go
============================*/
.you-go{
    margin: 80px auto 0;
    text-align: center;
}
.you-go .title{
    width: 100%;
    max-width: 720px;
    margin-bottom: 30px;
}
/* 画像のモーダル */
@media (max-width: 767px) {
.zoom-trigger {
    cursor: pointer;
    max-width: 100%; /* 親要素からはみ出さない */
    height: auto;
    transition: opacity 0.3s;
}
/* .zoom-trigger:hover {
    opacity: 0.8;
} */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.modal-close {
    position: absolute;
    top: 20px; right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
}

/*============================
学納金
============================*/
.fee__title{
        font-size: 23px;
    font-weight: 700;
    margin: 50px 0 0;
}
@media (max-width: 767px) {
    .fee__title{
        font-size: 16px;
}
}

/* --- 料金表セクション共通設定 --- */

/* 1. 横スクロール用の親要素（スマホ対策） */
.table-wrapper {
    max-width: 1080px;
    margin: 10px auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 2. テーブル本体の設定 */
.fee-table {
    width: 100%;
    min-width: 728px;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #333;
}

.fee-table th,
.fee-table td {
    border: 1px solid #333;
    padding: 0 5px;
    height: 30px;
    text-align: left;
    vertical-align: middle;
    /* width指定を削除し、ブラウザの自動計算に任せる */
}
.fee-table thead tr:nth-child(2) th:first-child {
    width: 60px;
}

.table-title {
    text-align: left;
    font-weight: bold;
    padding-left: 15px !important;
}
.table-bgcolor{
    background-color: var(--color-table);
}
.fee-table thead tr:nth-child(2) th {
    font-weight: bold;
    text-align: center;
}
.row-cat {
    /* background-color: #fff; */
    text-align: center;
    font-weight: bold;
}
.num {
    text-align: right !important;
}

.total-row td {
    /* background-color: #e3f2fd; */
    font-weight: bold;
}
.fee-table td:last-child {
    text-align: center;
}
.fee-table tbody td:nth-child(2) {
    text-align: center;
}
.fee-table tbody td {
    text-align: center;
}

/*============================
#support.support
============================*/
.support{
    max-width: 840px;
}
.support__title{
    font-size: 46px;
    font-weight: 700;
    margin: 240px 0 50px;
}
@media (max-width: 767px) {
    .support__title{
    font-size: 30px;
    line-height: 40px;
    margin: 50px 0 20px;
}
}
.support__sub{
        font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .support__sub{
        font-size: 24px;
}
}
.support__wrapper{
    background-color: #004DA0;
    color: var(--text-white);
    padding: 20px;
    font-size: 26px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .support__wrapper{
        font-size: 17px;
    }
}
.support__text{
    font-size: 24px;
    line-height: 42px;
    margin: 30px 0;
}
@media (max-width: 767px) {
    .support__text{
    font-size: 16px;
    line-height: 30px;
}
}
.support__caption{
    font-size: 20px;
    text-align: right;
}
@media (max-width: 767px) {
    .support__caption{
    font-size: 14px;
    margin-bottom: 35px;
}
}
.support__circle{
        font-size: 28px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .support__circle{
        font-size: 20px;
    }
}
.support__circle__wrapper{
    max-height: 127px;
    display: flex;
    align-items: center;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .support__circle__wrapper{
        max-height: 100%;
    }
}
.support__circle__title{
    padding-right: 40px;
}
@media (max-width: 767px) {
    .support__circle__title{
    padding-right: 30px;
}
}
.support__circle__text{
    column-count: 2;
    overflow: hidden;
    column-width: 280px;
    border-left: 1px solid var(--text-base);
    padding-left: 40px;
}
@media (max-width: 767px) {
    .support__circle__text{
        column-count: 1;
        column-width: 0px;
        font-size: 14px;
        padding-left: 30px;
    }
}
.footer{
    margin: 120px auto 0;
    text-align: center;
}
.footer p{
    line-height: 1;
    margin-top: 10px;
}




/* 下層ページ */
.program{
    padding: 120px 0 50px;
    background: linear-gradient(135deg, #fce4ec 0%, #ffffff 50%, #e3f2fd 100%);
    
    /* 画面全体に広げる場合 */
    width: 100%;
    /* height: 100vh; */
}
@media (max-width: 767px) {
    .program{
        background: linear-gradient(90deg, #fce4ec 0%, #ffffff 50%, #e3f2fd 100%);
    }
}
.program__fv__title{
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .program__fv__title{
        font-size: 27px;
    }
}
.program__features{
        display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .program__features{
        flex-direction: column;
    }
}
.program__features h3{
    font-size: 35px;
    font-weight: 700;
        width: 35%;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .program__features h3{
        width: 100%;
        font-size: 18px;
        text-align: center;
        margin-bottom: 35px;
    }
}
.program__features img{
    max-width: 656px;
    width: 100%;
    min-width: 0;
}
.program__introduction{
    margin: 60px 0 30px;
}
@media (max-width: 767px) {
    .program__introduction{
    margin: 60px 0 50px;
}
}
.program__introduction__inner{
    display: flex;
    align-items: center;
    gap: 45px;
}
@media (max-width: 767px) {
    .program__introduction__inner{
            flex-direction: column;
            gap: 0;
    }
}
.program__introduction__wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}
@media (max-width: 767px) {
    .program__introduction__wrapper{
        order: 2;
        margin-top: -40px;
        align-items: center;
    }
}
.program__introduction__comment{
    line-height: 26px;
    border: 1px solid;
    padding: 30px 40px;
    border-radius: 45px;
    background-color: #fff;
}
@media (max-width: 767px) {
    .program__introduction__comment{
        order: 2;
    }
}
.program__introduction__personal{
    background-color: var(--color-grey);
    padding: 15px;
    color: var(--text-white);
}
@media (max-width: 767px) {
    .program__introduction__personal{
        order: 1;
    }
}
@media (max-width: 767px) {
    .program__introduction__student{
        order: 1;
        padding: 0 25px;
    }
}
.program__department__wrapper{
    padding: 15px;
}
.program__department__title{
    display: flex;
    align-items: center;
    gap: 7px;
}
@media (max-width: 767px) {
    .program__department__title{
        flex-direction: column;
            align-items: flex-start;
        margin-bottom: 15px;
    }
}
.program__department__title h2{
    font-size: 44px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .program__department__title h2{
        line-height: 1;
    }
}
.program__department__title img{
    width: 129px;
}
.program__department__introduction__wrapper{
    display: flex;
    gap: 17px;
        flex-wrap: wrap;
}
.program__department__introduction{
    max-width: 530px;
    background-color: #fff;
}
@media (max-width: 767px) {
    .program__department__introduction{
    max-width: 100%;
}
}
.program__department__main{
    background-size: cover;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
}
.program__department__sub{
    font-size: 15px;
    display: flex;
    height: 36px;
    align-items: center;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .program__department__sub{
        height: auto;
    }
}
.program__department__text{
        font-size: 11px;
    line-height: 18px;
    margin: 12px 0;
}
.program__department__future__wrapper{
    display: flex;
    align-items: center;
    gap: 6px;
}
.program__department__future__title{
    width: 38px;
    height: 30px;
    flex-shrink: 0;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}
.program__department__future__text{
        font-size: 11px;
    line-height: 15px;
}
