@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/



/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/*  home-hero-slider .swiper-slide
------------------------------------------------------------------*/
.home-hero-slider{
    overflow: hidden;
}
.home-hero-slider .swiper-slide{
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: #fff;
    overflow: hidden;
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: brightness(.6);
    opacity: 0;
    animation: homeHero 1s ease-out forwards;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        min-height: 700px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-slider .swiper-slide{
        min-height: 900px;
        filter: brightness(0.7);
    }
    .home-hero-slider .swiper-slide::after{
        display: none;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider .swiper-slide{
        height: 100vh;
        height: 100svh;
        min-height: 600px;
    }
}
@media print{
    .home-hero-slider .swiper-slide{
        height: 600px;
        min-height: initial;
    }
}
/* アニメーション */
@keyframes homeHero {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 60px;
    bottom: 60px;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        left: 0;
        bottom: 50%;
        transform: translateY(50%);
        width: 100%;
        text-align: center;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    margin-bottom: 20px;
    font-size: 1.375rem;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .home-hero-text{
        font-size: 1.125rem;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    display: inline-block;
    margin-bottom: 30px;
}
@media screen and (max-width:575px){
    .home-hero-title{
        width: 75%;
    }
}
/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    font-size: .875rem;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .home-hero-caption{
        font-size: .75rem;
    }
}

/*------------------------------------------------------------------
  home-about
------------------------------------------------------------------*/

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 180px 0;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 100px 0;
    }
}
@media print, screen and (max-width:991px){
    .home-about{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
@media screen and (max-width:575px){
    .home-about{
        padding: 30px 0 60px;
    }
}
/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-about-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:575px){
    .home-about-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 30px;
    }
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    flex-shrink: 0;
}
@media screen and (max-width:1399px){
    .home-about-title{
        width: 180px;
    }
}
@media screen and (max-width:1199px){
    .home-about-title{
        width: 160px;
    }
}
@media screen and (max-width:991px){
    .home-about-title{
        width: 140px;
    }
}
@media screen and (max-width:767px){
    .home-about-title{
        width: 100px;
    }
}
@media screen and (max-width:575px){
    .home-about-title{
        margin: 0 auto;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    margin-bottom: 70px;
    overflow: hidden;
}
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-about-image{
        margin-bottom: 60px;
    }
}
@media screen and (max-width:1199px){
    .home-about-image{
        margin-bottom: 50px;
    }
}
@media screen and (max-width:991px){
    .home-about-image{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .home-about-image{
        margin-bottom: 30px;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    max-width: 835px;
}

/*------------------------------------------------------------------
  home-items
------------------------------------------------------------------*/
/*  home-items-list
------------------------------------------------------------------*/
.home-items-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .home-items-list{
        gap: 20px;
    }
}
@media screen and (max-width:991px){
    .home-items-list{
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .home-items-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .home-items-list{
        gap: 12px;
    }
}
/*  home-items-card
------------------------------------------------------------------*/
.home-items-card{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    z-index: 1;
}
.home-items-card .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.home-items-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
    transition: .2s ease-out;
}
.home-items-card .title{
    font-size: 1.375rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-items-card .arrow{
    position: absolute;
    bottom: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    font-size: 10px;
    color: #fff;
    z-index: 1;
}
.home-items-card .arrow::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-items-card:hover .title{
        color: var(--primary-color);
    }
    .home-items-card:hover .image img{
        transform: scale(1.2);
        filter: brightness(.2);
    }
    .home-items-card:hover .arrow::after{
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: scale(.8);
    }
}
@media (hover:none) {
    .home-items-card:active .title{
        color: var(--primary-color);
    }
    .home-items-card:active .image img{
        transform: scale(1.2);
        filter: brightness(.2);
    }
    .home-items-card:active .arrow::after{
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: scale(.8);
    }
}
@media screen and (max-width:1399px){
    .home-items-card{
        padding: 0 16px 0 20px;
    }
    .home-items-card .title{
        font-size: 1.25rem;
    }
    .home-items-card .arrow{
        width: 28px;
    }
}
@media screen and (max-width:575px){
    .home-items-card{
        padding: 0 4px 0 12px;
    }
    .home-items-card .title{
        font-size: 1.125rem;
    }
    .home-items-card .arrow{
        width: 20px;
    }
}


/*------------------------------------------------------------------
  home-school
------------------------------------------------------------------*/

/*  home-school-wrapper
------------------------------------------------------------------*/
.home-school-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 60px;
    margin-bottom: 80px;
}
@media screen and (max-width:1199px){
    .home-school-wrapper{
        align-items: flex-start;
        column-gap: 40px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:991px){
    .home-school-wrapper{
        column-gap: 20px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .home-school-wrapper{
        flex-direction: column-reverse;
        justify-content: initial;
        row-gap: 40px;
    }
}
/*  home-school-detail
------------------------------------------------------------------*/
.home-school-detail{
    flex-shrink: 0;
    width: 445px;
}
@media screen and (max-width:1199px){
    .home-school-detail{
        width: 320px;
    }
}
@media screen and (max-width:991px){
    .home-school-detail{
        width: 290px;
    }
}
@media screen and (max-width:767px){
    .home-school-detail{
        width: 100%;
    }
}
/*  home-school-images
------------------------------------------------------------------*/
.home-school-images{
    position: relative;
    width: 100%;
    max-width: 932px;
    aspect-ratio: 233 / 171;
    z-index: 1;
}
.home-school-images .image01{
    position: absolute;
    top: 0;
    right: 0;
    width: 56.6%;
    overflow: hidden;
}
.home-school-images .image02{
    position: absolute;
    top: 25.7%;
    left: 0;
    width: 41.3%;
    overflow: hidden;
}
.home-school-images .image03{
    position: absolute;
    bottom: 0;
    left: 7.1%;
    width: 34.1%;
    overflow: hidden;
}
/*  home-school-images
------------------------------------------------------------------*/
.home-school-images{
    position: relative;
    width: 100%;
    max-width: 932px;
    aspect-ratio: 233 / 171;
    z-index: 1;
}
/*  home-school-teacher
------------------------------------------------------------------*/
.home-school-teacher{
    position: relative;
    display: flex;
    align-items: center;
    height: 300px;
    padding: 0 60px;
    z-index: 1;
}
.home-school-teacher .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.home-school-teacher .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-school-teacher .inner{
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.home-school-teacher .title{
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.home-school-teacher .inner .inner-detail{
    max-width: 950px;
}
.home-school-teacher .text{
    color: #fff;
}
.home-school-teacher .view{
    position: absolute;
    bottom: 24px;
    right: 30px;
    padding-right: 2em;
    font-size: .875rem;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
.home-school-teacher .view i{
    position: absolute;
    top: 0;
    right: 0;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-school-teacher:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-school-teacher:hover .view{
        color: var(--primary-color);
    }
    .home-school-teacher:hover .view i{
        transform: translateX(10px);
    }
}
@media (hover:none) {
    .home-school-teacher:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-school-teacher:active .view{
        color: var(--primary-color);
    }
    .home-school-teacher:active .view i{
        transform: translateX(10px);
    }
}
@media screen and (max-width:1399px){
    .home-school-teacher{
        height: 240px;
    }
    .home-school-teacher .title{
        font-size: 1.875rem;
    }
}
@media screen and (max-width:991px){
    .home-school-teacher{
        padding: 0 30px;
    }
    .home-school-teacher .title{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:767px){
    .home-school-teacher{
        height: auto;
        padding: 40px 20px;
        flex-direction: column;
    }
    .home-school-teacher .inner{
        flex-direction: column;
        margin-bottom: 30px;
    }
    .home-school-teacher .title{
        margin-bottom: 16px;
        font-size: 1.5rem;
        text-align: center;
    }
    .home-school-teacher .view{
        position: relative;
        bottom: initial;
        right: initial;
        width: fit-content;
        padding-right: 2em;
        margin: 0 auto;
        transition: .2s ease-out;
    }
}
@media screen and (max-width:575px){
    .home-school-teacher .title{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:374px){
    .home-school-teacher .title{
        font-size: 1.25rem;
    }
}


/*------------------------------------------------------------------
  home-company
------------------------------------------------------------------*/

/*  home-company
------------------------------------------------------------------*/
.home-company-image{
    margin-bottom: 100px;
    overflow: hidden;
    z-index: -1;
}
.home-company-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-company-image{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:991px){
    .home-company-image{
        aspect-ratio: 8 / 3;
        margin-bottom: 60px;
    }    
}
@media screen and (max-width:767px){
    .home-company-image{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    
}
/*  home-company-wrapper
------------------------------------------------------------------*/
.home-company-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-company-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-company-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
    }
}
/*  home-company-detail
------------------------------------------------------------------*/
.home-company-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 320px;
}
@media screen and (max-width:767px){
    .home-company-detail{
        width: 100%;
    }
}
/* home-company-map
------------------------------------------------------------------*/
.home-company-map{
    width: 950px;
    height: 400px;
}
.home-company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:991px){
    .home-company-map{
        height: 300px;
    }
    
}
@media screen and (max-width:767px){
    .home-company-map{
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

/*/////////////////////////////////////////////////////////////////
  service.html
/////////////////////////////////////////////////////////////////*/

/* youshi-table
------------------------------------------------------------------*/
.youshi-table{
    width: 100%;
}
.youshi-table th,
.youshi-table td{
    padding: 1em;
    border: 1px solid #ccc;
    vertical-align: middle;
    font-size: .875rem;
    line-height: 1.5;
}
.youshi-table th{
    background: #efefef;
    white-space: nowrap;
}
.youshi-table tr td:nth-of-type(1){
    white-space: nowrap;
}
@media screen and (max-width:767px){
    .youshi-table th,
    .youshi-table td{
        padding: .5em;
        font-size: .75rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  school.html
/////////////////////////////////////////////////////////////////*/
/* school-schedule-wrapper
------------------------------------------------------------------*/
.school-schedule-wrapper .scroll-hint-icon{
    top: 60px;
}

/* school-schedule
------------------------------------------------------------------*/
.school-schedule{
    width: 100%;
    min-width: 800px;
}
.school-schedule > thead > tr > th,
.school-schedule > tbody > tr > th,
.school-schedule > tbody > tr > td{
    padding: 5px;
    border: 1px solid #ccc;
    vertical-align: middle;
    font-size: .875rem;
    line-height: 1.5;
}
.school-schedule > thead > tr > th{
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}
.school-schedule > tbody > tr > th{
    width: 5em;
    background: #efefef;
    text-align: center;
}
.school-schedule .subtable > tbody > tr > th{
    padding-right: .5em;
    font-weight: normal;
}
.school-schedule .photo{
    width: 60px;
    height: auto;
}
@media screen and (max-width:991px){
    .school-schedule > thead > tr > th,
    .school-schedule > tbody > tr > th,
    .school-schedule > tbody > tr > td{
        font-size: .75rem;
    }
    .school-schedule .photo{
        width: 40px;
        height: auto;
    }
}
/* school-teacher-list
------------------------------------------------------------------*/
.school-teacher-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .school-teacher-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .school-teacher-list{
        gap: 8px;
    }
}
/* school-teacher-list-item
------------------------------------------------------------------*/
.school-teacher-list-item{
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    border: 1px solid #aaa;
    transition: .2s ease-out;
}
.school-teacher-list-item .photo{
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.school-teacher-list-item .photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.school-teacher-list-item .name{
    position: relative;
    padding: 0 2em 0 1em;
    line-height: 1.2;
    z-index: 1;
}
.school-teacher-list-item .name::after{
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .school-teacher-list-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .school-teacher-list-item:hover .photo img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .school-teacher-list-item:hover .name::after{
        right: 0;
    }
}
@media (hover:none) {
    .school-teacher-list-item:active{
        background: var(--primary-color);
        color: #fff;
    }
    .school-teacher-list-item:active .photo img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .school-teacher-list-item:active .name::after{
        right: 0;
    }
}
@media screen and (max-width:991px){
    .school-teacher-list-item{
        grid-template-columns: 60px 1fr;
    }
}
@media screen and (max-width:575px){
    .school-teacher-list-item{
        grid-template-columns: 40px 1fr;
    }
    .school-teacher-list-item .name{
        padding: 0 12px 0 .5em;
        font-size: .75rem;
    }
    .school-teacher-list-item .name::after{
        font-size: 10px;
    }
}
/* school-teacher-contents-head
------------------------------------------------------------------*/
.school-teacher-contents-head{
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 40px;
    transition: .2s ease-out;
}
@media screen and (max-width:1199px){
    .school-teacher-contents-head{
        column-gap: 30px;
        grid-template-columns: 200px 1fr;
    }
}
@media screen and (max-width:991px){
    .school-teacher-contents-head{
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
}
/* school-teacher-contents-photo
------------------------------------------------------------------*/
.school-teacher-contents-photo{
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 16px;
}
.school-teacher-contents-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .school-teacher-contents-photo{
        width: 200px;
        margin: 0 auto 16px;
    }
}
/* school-teacher-contents-sns
------------------------------------------------------------------*/
.school-teacher-contents-sns{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.school-teacher-contents-sns a{
    display: block;
    width: 28px;
    aspect-ratio: 1 / 1;
}
.school-teacher-contents-sns a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* school-teacher-contents-detail
------------------------------------------------------------------*/
.school-teacher-contents-detail{
    display: grid;
    grid-template-columns: 6em 1fr 6em 1fr;
    border-top: 1px solid #ccc;
    margin-bottom: 20px;
}
.school-teacher-contents-detail dt,
.school-teacher-contents-detail dd{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1em;
    font-size: .875rem;
    line-height: 1.2;
    border-bottom: 1px solid #ccc;
}
.school-teacher-contents-detail dt{
    background: #efefef;
    text-align: center;
}
@media screen and (max-width:767px){
    .school-teacher-contents-detail{
        grid-template-columns: 6em 1fr;
    }
    .school-teacher-contents-detail dt,
    .school-teacher-contents-detail dd{
        font-size: .75rem;
    }
}
/* school-teacher-topics-list
------------------------------------------------------------------*/
.school-teacher-topics-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 20px;
    row-gap: 40px;
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .school-teacher-topics-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .school-teacher-topics-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .school-teacher-topics-list{
        column-gap: 10px;
        row-gap: 30px;
    }
}
/* school-teacher-topics-list-item
------------------------------------------------------------------*/
.school-teacher-topics-list-item{
    display: block;
}
.school-teacher-topics-list-item .image{
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 16px;
}
.school-teacher-topics-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
}
.school-teacher-topics-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 4px;
    font-weight: bold;
    line-height: 1.4;
}
.school-teacher-topics-list-item .label{
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1.2;
}
/* ホバー時動作 */
@media (hover:hover) {
    .school-teacher-topics-list-item:hover{
        color: var(--primary-color);
    }
    .school-teacher-topics-list-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
}
@media (hover:none) {
    .school-teacher-topics-list-item:active{
        color: var(--primary-color);
    }
    .school-teacher-topics-list-item:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
}
@media screen and (max-width:575px){
    .school-teacher-topics-list-item .image{
        margin-bottom: 8px;
    }
    .school-teacher-topics-list-item .label{
        font-size: .75rem;
    }
}
/*  school-teacher-detail-container
------------------------------------------------------------------*/
.school-teacher-detail-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){ 
    .school-teacher-detail-container{
        padding: 0 6vw;
    }
}
@media print{ 
    .school-teacher-detail-container{
        padding: 0 15px !important;
    }
}
/*  school-teacher-detail-slider
------------------------------------------------------------------*/
.school-teacher-detail-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.school-teacher-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.school-teacher-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  school-teacher-detail-thumb-slider
------------------------------------------------------------------*/
.school-teacher-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.school-teacher-detail-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.school-teacher-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.school-teacher-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  school-teacher-detail-slider-button
------------------------------------------------------------------*/
.school-teacher-detail-slider-button-prev,
.school-teacher-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: .2s ease-out;
    z-index: 2;
}
.school-teacher-detail-slider-button-prev.swiper-button-disabled,
.school-teacher-detail-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.school-teacher-detail-slider-button-prev{
    left: -18px;
}
.school-teacher-detail-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.school-teacher-detail-slider-button-next{
    right: -18px;
}
.school-teacher-detail-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .school-teacher-detail-slider-button-prev:hover,
    .school-teacher-detail-slider-button-next:hover,
    .school-teacher-detail-slider-button-prev:active,
    .school-teacher-detail-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .school-teacher-detail-slider-button-prev:active,
    .school-teacher-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .school-teacher-detail-slider-button-prev:active,
    .school-teacher-detail-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


/*/////////////////////////////////////////////////////////////////
  shop.html
/////////////////////////////////////////////////////////////////*/

/*  shop-map
------------------------------------------------------------------*/
.shop-map{
    height: 360px;
    margin-bottom: 30px;
}
.shop-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .shop-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/*  shop-access-list
------------------------------------------------------------------*/
.shop-access-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 20px;
    row-gap: 40px;
}
@media screen and (max-width:1199px){
    .shop-access-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .shop-access-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .shop-access-list{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
/*  shop-access-list-item
------------------------------------------------------------------*/
.shop-access-list-item{
    position: relative;
}
.shop-access-list-item .image{
    margin-bottom: 10px;
}
.shop-access-list-item .text{
    line-height: 1.5;
}

/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 2rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        margin-bottom: 12px;
        font-size: 1.75rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        font-size: 1.5rem;
    }
}

