@charset "utf-8";

/*-------------------------------------------
共通
-------------------------------------------*/
.inner-wrapper {
    width: 1200px;
    margin: 0 auto;
}
.section-title {
    position: relative;
    text-align: center;
}
.section-title::after {
    content: "";
    width: 130px;
    height: 5px;
    background-color: #FFDB20;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
/*-------------------------------------------
タイトル
-------------------------------------------*/
.school-title-area {
    background-image: url(../images/back_rectangle.png);
    padding: 45px 0 60px;
}
.school-information {
    text-align: center;
    font-size: 36px;
}
/*-------------------------------------------
アクセス
-------------------------------------------*/
.school-name-title {
    font-size: 48px;
    font-weight: bold;
}
.school-access-sec {
    margin-top: 50px;
}
.school-img {
    margin-top: 72px;
    width: 100%;
}
table,td,th {
    border: 1px solid #bbb6b6;
    border-collapse: collapse;
    vertical-align:middle;
}
table td > p {
    margin-top: 10px;
}
th {
    font-weight: 400;
}
.access-table {
    width: 100%;
    margin-top: 30px;
}
.access-table th {
    width: 30%;
    background: #fffed8;
    padding-left: 30px;
    font-size: 20px;
}
.access-table td {
    padding: 20px;
    width: 70%;
    font-size: 20px;
}
.sp-br {
    display: none;
}
.small-memo {
    font-size: 16px;
}
/*-------------------------------------------
講師紹介
-------------------------------------------*/
.teacher-introduce-sec {
    margin-top: 97px;
}
.teacher-introduce-title {
    font-size: 48px;
}
.teacher-list {
    margin-top: 40px;
}
.teacher-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.teacher-item div {
    width: 48%;
    margin-top: 40px;
}
.teacher-img-wrapper {
    height: 400px;
    text-align: center;
}
.teacher-img-wrapper img {
    object-fit: contain;
    min-width: 100%;
    height: 100%;
}
.teacher-text-title {
    color: #2CB3FF;
    font-size: 36px;
    line-height: 1.5;
}
.teacher-text-detail {
    font-size: 20px;
    padding-top: 16px;
    line-height: 1.5;
}
.teacher-item:nth-child(n + 2) {
    margin-top: 90px;
}
.teacher-item:nth-child(n + 2)::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 0;
}
/*-------------------------------------------
Today's shot
-------------------------------------------*/
.todays-shot-sec {
    margin-top: 180px;
    text-align: center;
}
.todays-shot-title {
    font-size: 48px;
}
.todays-shot-img {
    margin-top: 60px;
    width: 50%;
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media screen and (max-width: 768px) {
    .none {
        display: none;
    }
    /*-------------------------------------------
    共通
    -------------------------------------------*/
    .inner-wrapper {
        width: 100%;
        padding: 0 20px;
    }
    .section-title::after {
        width: 90px;
        bottom: -13px;
    }
    /*-------------------------------------------
    タイトル
    -------------------------------------------*/
    .school-title-area {
        padding: 10px 0 15px;
    }
    .school-information {
        font-size: 24px;
    }
    /*-------------------------------------------
    アクセス
    -------------------------------------------*/
    .school-name-title {
        font-size: 32px;
    }
    .school-access-sec {
        margin-top: 50px;
    }
    .school-img {
        margin-top: 72px;
    }
    table, th, td {
        display: block;
    }
    .iframe-map iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .access-table th {
        width: 100%;
        padding: 10px 25px;
    }
    .access-table td {
        padding: 20px 25px;
        width: 100%;
        line-height: 1.5;
    }
    .sp-br {
        display: block;
    }
    .sp-none {
        display: none;
    }
    /*-------------------------------------------
    講師紹介
    -------------------------------------------*/
    .teacher-introduce-title {
        font-size: 36px;
    }
    .teacher-item {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .teacher-item div {
        width: 100%;
        margin-top: 40px;
    }
    .teacher-img-wrapper {
        height: 250px;
        text-align: center;
    }
    .teacher-text-title {
        font-size: 24px;
    }
    .teacher-item div:nth-child(3) {
        order: 1;
    }
    .teacher-item:nth-child(n + 2) {
        margin-top: 90px;
    }
    .teacher-item:nth-child(n + 2)::after {
        content: "";
        width: 100%;
        height: 1px;
        background-color: #333;
        position: absolute;
        top: 0;
        left: 0;
    }
    /*-------------------------------------------
    Today's shot
    -------------------------------------------*/
    .todays-shot-sec {
        margin-top: 90px;
    }
    .todays-shot-title {
        font-size: 36px;
    }
    .todays-shot-img {
        margin-top: 60px;
        width: 100%;
    }
}