@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;
    padding: 20px 0 200px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero{
        
    }
}
@media screen and (max-width:991px){
    .home-hero{
        padding: 0 0 80px;
    }
}
@media screen and (max-width:575px){
    .home-hero{
        
    }
}
/*  home-hero-wrapper
------------------------------------------------------------------*/
.home-hero-wrapper{
    display: flex;
    justify-content: space-between;
    padding-left: 6vw;
    column-gap: 6vw;
}
@media screen and (max-width:991px){
    .home-hero-wrapper{
        flex-direction: column-reverse;
        padding-left: 0;
        row-gap: 60px;
    }
       
}
@media screen and (max-width:575px){
    .home-hero-wrapper{
        row-gap: 10vw;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        align-items: center;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    
}
@media screen and (max-width:1399px){
    .home-hero-title{
        width: 320px;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        max-width: 320px;
        width: 60vw;
        margin-bottom: 6vw;
    }
}
/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: .875rem;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero-caption{
        font-size: .75rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-caption{
        position: relative;
    }
}
/*  home-hero-image
------------------------------------------------------------------*/
.home-hero-image{
    max-width: 1000px;
    height: 700px;
    overflow: hidden;
}
.home-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-image{
        height: 540px;
    }
}
@media screen and (max-width:991px){
    .home-hero-image{
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    margin-bottom: 240px;
    overflow: hidden;
}
@media screen and (max-width:1399px){
    .home-about{
        margin-bottom: 180px;
    }
}
@media screen and (max-width:991px){
    .home-about{
        margin-bottom: 80px;
    }
}
/*  home-about-top
------------------------------------------------------------------*/
.home-about-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 120px;
}
@media screen and (max-width:991px){
    .home-about-top{
        display: block;
        margin-bottom: 60px;
    }
}
/*  home-about-bottom
------------------------------------------------------------------*/
.home-about-bottom{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width:991px){
    .home-about-bottom{
        flex-direction: column;
        row-gap: 6vw;
    }
}
/*  home-about-bottom-detail
------------------------------------------------------------------*/
.home-about-bottom-detail{
    
}
@media screen and (max-width:991px){
    .home-about-bottom-detail{
        
    }
}
/*  home-about-bottom-image
------------------------------------------------------------------*/
.home-about-bottom-image{
    width: 75vw;
    height: 400px;
    margin-left: min(calc(calc(100vw - 1610px) / 2 * -1), -60px);
    margin-bottom: 100px;
    overflow: hidden;
}
.home-about-bottom-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1199px){
    .home-about-bottom-image{
        height: 300px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:991px){
    .home-about-bottom-image{
        width: 100vw;
        margin: 0 calc(50% - 50vw) 40px;
    }
}
@media screen and (max-width:767px){
    .home-about-bottom-image{
        height: auto;
        aspect-ratio: 7 / 3;
    }
}
/*  home-about-bottom-title
------------------------------------------------------------------*/
.home-about-bottom-title{
    flex-shrink: 0;
    padding: 0 4vw;
    font-size: 2.25rem;
    font-weight: bold;
    writing-mode: vertical-rl;
}
@media screen and (max-width:1199px){
    .home-about-bottom-title{
        padding: 0 2vw;
        font-size: 1.875rem;
    }
}
@media screen and (max-width:991px){
    .home-about-bottom-title{
        padding: 0;
        font-size: 1.75rem;
        line-height: 1.5;
        writing-mode: horizontal-tb;
    }
}
@media screen and (max-width:767px){
    .home-about-bottom-title{
        font-size: 1.5rem;
    }
}


/*------------------------------------------------------------------
  home-menu
------------------------------------------------------------------*/

/*  home-menu-box
------------------------------------------------------------------*/
.home-menu-box{
    padding: 60px;
    margin-bottom: 60px;
    background: #fff;
}
@media screen and (max-width:1399px){
    .home-menu-box{
        padding: 50px;
        margin-bottom: 50px;
    }
}
@media screen and (max-width:767px){
    .home-menu-box{
        padding: 30px 24px;
        margin-bottom: 30px;
    }
}
/*  home-menu-box-inner
------------------------------------------------------------------*/
.home-menu-box-inner{
    display: flex;
}
@media screen and (max-width:1199px){
    .home-menu-box-inner{
        flex-direction: column;
    }
}
/*  home-menu-box-head
------------------------------------------------------------------*/
.home-menu-box-head{
    flex-shrink: 0;
    width: 520px;
    padding-right: 60px;
    margin-right: 60px;
    border-right: 1px solid #c8ac97;
}
@media screen and (max-width:1399px){
    .home-menu-box-head{
        width: 440px;
        padding-right: 40px;
        margin-right: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-menu-box-head{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 60px;
        row-gap: 20px;
        width: 100%;
        padding-right: initial;
        padding-bottom: 30px;
        margin-right: initial;
        margin-bottom: 30px;
        border-right: initial;
        border-bottom: 1px solid #c8ac97;
    }
}
@media screen and (max-width:767px){
    .home-menu-box-head{
        flex-direction: column;
    }
}
/*  home-menu-box-title-wrapper
------------------------------------------------------------------*/
.home-menu-box-title-wrapper{
    margin-bottom: 60px;
}
@media screen and (max-width:1399px){
    .home-menu-box-title-wrapper{
        margin-bottom: 50px;
    }
}
@media screen and (max-width:1199px){
    .home-menu-box-title-wrapper{
        margin-bottom: 0;
    }
}
/*  home-menu-box-title
------------------------------------------------------------------*/
.home-menu-box-title{
    margin-bottom: 8px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-menu-box-title{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:991px){
    .home-menu-box-title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:767px){
    .home-menu-box-title{
        font-size: 1.25rem;
        text-align: center;
    }
}
/*  home-menu-box-caption
------------------------------------------------------------------*/
.home-menu-box-caption{
    line-height: 1.7;
}
@media screen and (max-width:1399px){
    .home-menu-box-caption{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-menu-box-caption{
        font-size: .75rem;
    }
}
@media screen and (max-width:767px){
    .home-menu-box-caption{
        text-align: center;
    }
}
/*  home-menu-box-price-wrapper
------------------------------------------------------------------*/
.home-menu-box-price-wrapper{
    margin-bottom: 20px;
    flex-shrink: 0;
}
@media screen and (max-width:1199px){
    .home-menu-box-price-wrapper{
        margin-bottom: 0;
    }
}
@media screen and (max-width:767px){
    .home-menu-box-price-wrapper{
        text-align: center;
    }
}
/*  home-menu-box-time
------------------------------------------------------------------*/
.home-menu-box-time{
    margin-bottom: 8px;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .home-menu-box-time{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-menu-box-time{
        font-size: .75rem;
    }
}
/*  home-menu-box-price
------------------------------------------------------------------*/
.home-menu-box-price{
    font-size: 3.75rem;
    line-height: 1;
}
.home-menu-box-price .num{
    font-family: var(--en-font);
    letter-spacing: 0;
}
.home-menu-box-price .yen{
    font-size: max(.6em,.1rem);
}
.home-menu-box-price .tax{
    font-size: max(.3em,.75rem);
}
@media screen and (max-width:1399px){
    .home-menu-box-price{
        font-size: 3.25rem;
    }
}
@media screen and (max-width:991px){
    .home-menu-box-price{
        font-size: 2.75rem;
    }
}
@media screen and (max-width:767px){
    .home-menu-box-price{
        font-size: 2rem;
    }
}
/*  home-menu-box-option
------------------------------------------------------------------*/
.home-menu-box-option{
    width: fit-content;
    padding: 20px;
    background: var(--primary-light-color);
}
@media screen and (max-width:1199px){
    .home-menu-box-option{
        width: 100%;
        padding: 16px;
    }
}
@media screen and (max-width:991px){
    .home-menu-box-option{
        text-align: center;
    }
}
/*  home-menu-box-detail
------------------------------------------------------------------*/
.home-menu-box-detail{
    width: 100%;
}


/*------------------------------------------------------------------
  home-news
------------------------------------------------------------------*/

/*  home-news-list
------------------------------------------------------------------*/
.home-news-list{
    max-height: 500px;
    padding-right: 10px;
    overflow-y: auto;
}
.home-news-list::-webkit-scrollbar{
    width: 5px;
}
.home-news-list::-webkit-scrollbar-track{
    background: #fff;
}
.home-news-list::-webkit-scrollbar-thumb{
    background: var(--primary-color);
    border-radius: 5px;
}
/*  home-news-list-item
------------------------------------------------------------------*/
.home-news-list-item{
    border-bottom: 1px solid #c1b0a7;
}
/*  home-news-list-item-head
------------------------------------------------------------------*/
.home-news-list-item-head{
    position: relative;
    display: flex;
    align-items: flex-start;
    column-gap: 16px;
    padding: 20px 60px 20px 0;
    line-height: 1.5;
    cursor: pointer;
    transition: .2s ease-out;
}
.home-news-list-item-head.no-detail{
    pointer-events: none;
}
.home-news-list-item-head .date{
    flex-shrink: 0;
    color: #614e43;
    letter-spacing: 0;
}
.home-news-list-item-head .title{
    width: 100%;
    font-weight: bold;
    transition: .2s ease-out;
}
.home-news-list-item-head .new{
    display: inline-block;
    margin-right: .5em;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
}
.home-news-list-item-head .arrow{
    position: absolute;
    top: 12px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--black-color);
    border-radius: 50%;
    font-size: 12px;
    transition: .2s ease-out;
}
.home-news-list-item-head .arrow i{
    margin-top: .25em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-list-item-head:hover::after{
        width: 100%;
    }
    .home-news-list-item-head:hover .title{
        color: var(--primary-color);
    }
    .home-news-list-item-head:hover .arrow{
        transform: scale(.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:767px){
    .home-news-list-item-head{
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 8px;
    }
    .home-news-list-item-head .date{
        font-size: .75rem;
    }
    .home-news-list-item-head .category{
        width: auto;
    }
    .home-news-list-item-head .arrow{
        display: none;
    }
}
@media screen and (max-width:575px){
    .home-news-list-item-head .title{
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }
}
/*  home-news-list-item-body
------------------------------------------------------------------*/
.home-news-list-item-body{
    display: none;
    padding-bottom: 20px;
}
/*  home-news-list-item-body-inner
------------------------------------------------------------------*/
.home-news-list-item-body-inner{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}
/*  home-news-photo-list
------------------------------------------------------------------*/
.home-news-photo-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
/*  home-news-file-list
------------------------------------------------------------------*/
.home-news-file-list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/*------------------------------------------------------------------
  home-service
------------------------------------------------------------------*/

/*  home-service-wrapper
------------------------------------------------------------------*/
.home-service-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .home-service-wrapper{
        flex-direction: column;
    }
}
/*  home-service-detail
------------------------------------------------------------------*/
.home-service-detail{
    flex-shrink: 0;
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
    width: 100%;
    max-width: 1000px;
}
.home-service-list > li{
    border-bottom: 1px solid #b5a3a0;
}
@media screen and (max-width:1399px){
    .home-service-list{
        max-width: initial;
    }
}
@media screen and (max-width:575px){
    .home-service-list > li{
        border-bottom: initial;
    }
}
/*  home-service-item
------------------------------------------------------------------*/
.home-service-item{
    display: flex;
    column-gap: 24px;
    margin-bottom: 30px;
}
.home-service-item .image{
    flex-shrink: 0;
    width: 240px;
    overflow: hidden;
    border-radius: 10px;
}
.home-service-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-service-item .body{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-right: 80px;
    z-index: 0;
}
.home-service-item .body::after{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--black-color);
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
}
.home-service-item .caption{
    margin-bottom: .5em;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 0;
}
.home-service-item .title{
    margin-bottom: .8em;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
.home-service-item .text{
    line-height: 1.7;
}
.home-service-item .view{
    display: none;
    width: fit-content;
    padding: .5em 2em;
    margin: 24px auto 0;
    background: var(--primary-color);
    border-radius: 2em;
    font-weight: bold;
    color: #fff;
}
@media (hover:hover) {
    .home-service-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-service-item:hover .body::after{
        transform: translateY(-50%) scale(.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .home-service-item{
        column-gap: 20px;
    }
    .home-service-item .image{
        width: 200px;
    }
    .home-service-item .body{
        padding-right: 68px;
    }
    .home-service-item .body::after{
        width: 48px;
        font-size: 12px;
    }
    .home-service-item .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:767px){
    .home-service-item{
        column-gap: 16px;
    }
    .home-service-item .image{
        width: 160px;
    }
    .home-service-item .body{
        padding-right: 60px;
    }
    .home-service-item .body::after{
        width: 40px;
        font-size: 10px;
    }
    .home-service-item .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .home-service-item{
        flex-direction: column;
        row-gap: 20px;
        padding: 30px 24px 24px;
        margin-bottom: 0;
        background: #fff;
        border-radius: 10px;
    }
    .home-service-item .image{
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .home-service-item .body{
        padding-right: 0;
    }
    .home-service-item .body::after{
        display: none;
    }
    .home-service-item .title{
        font-size: 1.125rem;
    }
    .home-service-item .view{
        display: block;
    }
}

/*------------------------------------------------------------------
  home-recruit
------------------------------------------------------------------*/

/*  home-recruit
------------------------------------------------------------------*/
.home-recruit{
    padding: 130px 0;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .home-recruit{
        padding: 80px 0;        
    }
}
@media screen and (max-width:767px){
    .home-recruit{
        padding: 60px 0; 
    }
}
/*  home-recruit-wrapper
------------------------------------------------------------------*/
.home-recruit-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-recruit-wrapper{
        flex-direction: column-reverse;
        justify-content: initial;
        align-items: center;
        row-gap: 40px;
    }
}
/*  home-recruit-detail
------------------------------------------------------------------*/
.home-recruit-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    padding: 30px 0;
}
@media screen and (max-width:991px){
    .home-recruit-detail{
        display: block;
        padding: 0;
    }
}
/*  home-recruit-image
------------------------------------------------------------------*/
.home-recruit-image{
    position: relative;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    z-index: 2;    
}
.home-recruit-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .home-recruit-image{
        border-radius: 20px;
    }
}
@media screen and (max-width:991px){
}

/*------------------------------------------------------------------
  home-instagram
------------------------------------------------------------------*/

/*  home-instagram
------------------------------------------------------------------*/
.home-instagram{
    overflow: hidden;
}

/*------------------------------------------------------------------
  home-simulation
------------------------------------------------------------------*/

/*  home-simulation
------------------------------------------------------------------*/
.home-simulation{
    padding: 120px 0;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .home-simulation{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-simulation{
        padding: 60px 0;
    }
}
/*  home-simulation-box
------------------------------------------------------------------*/
.home-simulation-box{
    position: relative;
    padding: 80px 24px;
    text-align: center;
    z-index: 1;
}
.home-simulation-box::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light-color);
    border-radius: 50px;
    content: "";
    z-index: -1;
}
.home-simulation-box .treat01{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-27%, -20%);
    z-index: -2;
}
.home-simulation-box .treat02{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(52%, -42%);
    z-index: 2;
}
.home-simulation-box .treat03{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 27.5%);
    z-index: -1;
}
@media screen and (max-width:991px){
    .home-simulation-box .treat01{
        width: 30%;
    }
    .home-simulation-box .treat02{
        width: 18%;
    }
    .home-simulation-box .treat03{
        width: 40%;
    }
}
@media screen and (max-width:767px){
    .home-simulation-box{
        padding: 60px 24px;
    }
    .home-simulation-box::after{
        border-radius: 20px;
    }
}


/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------
  recruit-oneday
------------------------------------------------------------------*/

/*  recruit-oneday-list
------------------------------------------------------------------*/
.recruit-oneday-list{
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    column-gap: 20px;
    row-gap: 20px;
    z-index: 1;
}
.recruit-oneday-list > li{
    position: relative;
    z-index: 1;
}
.recruit-oneday-list > li::after{
    position: absolute;
    top: calc(50% - 1px);
    left: 100%;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    content: "";
    z-index: -1;
}
.recruit-oneday-list > li:last-of-type::after{
    display: none;
}
@media screen and (max-width:767px){
    .recruit-oneday-list{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
    .recruit-oneday-list > li::after{
        top: 100%;
        left: 24px;
        width: 2px;
        height: 10px;
    }
}
/*  recruit-oneday-card
------------------------------------------------------------------*/
.recruit-oneday-card{
    flex: 1;
    padding: 20px 8px;
    background: var(--primary-light-color);
    border-radius: 5px;
}
.recruit-oneday-card .time{
    margin-bottom: 10px;
    font-family: var(--en-font);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    text-align: center;
    letter-spacing: 0;
}
.recruit-oneday-card .title{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2em;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
@media screen and (max-width:991px){
    .recruit-oneday-card .time{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .recruit-oneday-card{
        display: flex;
        align-items: center;
        column-gap: 12px;
        padding: 10px;
        font-size: 1rem;
    }
    .recruit-oneday-card .time{
        margin-bottom: 0;
    }
}

/*------------------------------------------------------------------
  recruit-interview
------------------------------------------------------------------*/

/*  recruit-interview-list
------------------------------------------------------------------*/
.recruit-interview-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .recruit-interview-list{
        gap: 20px;
    }
}
@media screen and (max-width:991px){
    .recruit-interview-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-interview-list{
        grid-template-columns: 1fr;
    }
}

/*  recruit-interview-box
------------------------------------------------------------------*/
.recruit-interview-box{
    padding: 30px;
    background: var(--primary-light-color);
}
.recruit-interview-box .question{
    position: relative;
    padding-left: 1em;
    padding-bottom: .5em;
    margin-bottom: 1em;
    border-bottom: 1px solid #b5a3a0;
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 1.5;
    z-index: 1;
}
.recruit-interview-box .question::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "Q";
    color: var(--primary-color);
}
.recruit-interview-box .answer{
    aspect-ratio: 1 / 1;
}
.recruit-interview-box .answer img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:1399px){
    .recruit-interview-box .question{
        font-size: 1.25rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  news.html
/////////////////////////////////////////////////////////////////*/

/*  news-page-top
------------------------------------------------------------------*/
.news-page-top{
    height: 220px;
}
@media screen and (max-width:1399px){
    .news-page-top{
        height: 200px;
    }
}
@media screen and (max-width:1199px){
    .news-page-top{
        height: 180px;
    }
}
@media screen and (max-width:991px){
    .news-page-top{
        height: 80px;
    }
}

/*  news-container
------------------------------------------------------------------*/
.news-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .news-container{
        padding: 0 6vw;
    }
}
/*  news-detail
------------------------------------------------------------------*/
.news-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-detail .date{
    font-family: var(--en-font);
    font-size: .875rem;
    color: #614e43;
    letter-spacing: 0;
}
.news-detail .category{
    padding: .25em 1em;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}
/*  news-slider
------------------------------------------------------------------*/
.news-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.news-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.news-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.news-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-thumb-slider
------------------------------------------------------------------*/
.news-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.news-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.news-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.news-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
/*  news-slider-button
------------------------------------------------------------------*/
.news-slider-button-prev,
.news-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
    transition: .2s ease-out;
    z-index: 2;
}
.news-slider-button-prev.swiper-button-disabled,
.news-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.news-slider-button-prev{
    left: -18px;
}
.news-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;
}
.news-slider-button-next{
    right: -18px;
}
.news-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) {
    .news-slider-button-prev:hover,
    .news-slider-button-next:hover,
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


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

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px;
    background: var(--primary-light-color);
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
}
.contact-tel-box .num i{
    font-size: .8em;
    color: var(--primary-color);
}
.contact-tel-box .time{
    margin-top: .75em;
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:575px){
    .contact-tel-box .num{
        font-size: 1.875rem;
    }
    .contact-tel-box .time{
        font-size: 0.75rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: 1.75rem;
    }
}

/*  simulation-category-list
------------------------------------------------------------------*/
.simulation-category-list{
    display: grid;
    align-items: flex-end;
    grid-template-columns: repeat(3,1fr);
}
/*  simulation-category-item
------------------------------------------------------------------*/
.simulation-category-item{
    padding: 1em;
    background: #e0e0e0;
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,.3);
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
    transition: .2s ease-out;
}
.simulation-category-item.active{
    padding-bottom: 1.5em;
    background: #fff;
    box-shadow: initial;
    pointer-events: none;
}
@media (hover:hover) {
    .simulation-category-item:hover{
        padding-bottom: 1.5em;
        box-shadow: inset 0 -3px 6px rgba(0,0,0,.1);
    }
}
@media screen and (max-width:575px){
    .simulation-category-item{
        border-radius: 10px 10px 0 0;
        font-size: 0.75rem;
    }
}
/*  simulation-contents
------------------------------------------------------------------*/
.simulation-contents{
    display: none;
    padding: 30px;
    background: #fff;
}
.simulation-contents.active{
    display: block;
}
@media screen and (max-width:575px){
    .simulation-contents{
        padding: 30px 16px;
    }
}
/*  simulation-result-wrapper
------------------------------------------------------------------*/
.simulation-result-wrapper{
    padding: 0 30px 30px 30px;
    background: #fff;
    margin-bottom: 16px;
}
@media screen and (max-width:575px){
    .simulation-result-wrapper{
        padding: 0 16px 30px 16px;
    }
}
/*  simulation-result
------------------------------------------------------------------*/
.simulation-result{
    padding: 20px;
    background: var(--primary-light-color);
    border: 2px solid var(--primary-color);
    text-align: center;
}
.simulation-result .text{
    margin-bottom: .5em;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
}
.simulation-result .price{
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
}
.simulation-result .price .num{
    font-size: 2em;
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .simulation-result .text{
        font-size: 1rem;
    }
    .simulation-result .price{
        font-size: 1.125rem;
        font-weight: bold;
        line-height: 1;
    }
}