@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

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



/*------------------------------------------------------------------
　header
------------------------------------------------------------------*/

/*  header
------------------------------------------------------------------*/
header{
    position: relative;
    z-index: 1000;
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    position: absolute;
    top: 20px;
    left: 24px;
    display: block;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .header-logo{
        top: 16px;
        left: 20px;
        width: 250px;
    }
}
@media screen and (max-width:991px){
    .header-logo{
        top: 8px;
        left: 8px;
        width: 220px;
    }
}
/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    position: absolute;
    top: 28px;
    right: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .5em;
    padding: .7em 1em;
    background: #fff;
    border-radius: 2em;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    z-index: 2;
}
.header-tel i{
    font-size: .8em;
    color: var(--primary-color);
}
@media screen and (max-width:1199px){
    .header-tel{
        display: none;
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 72px;
    aspect-ratio: 1 / 1;
    background: var(--accent-color);
    border-radius: 50%;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 4;
}
.header-hamburger .text {
    font-family: var(--en-font);
    font-size: .75rem;
    text-align: center;
    line-height: 1;
}
.header-hamburger .lines {
    position: relative;
    width: calc(100% * .416);
    height: calc(100% * .28);
}
.header-hamburger .lines .line {
    position: absolute;
    left: 0;
    height: 2px;
    background: var(--black-color);
    transition: .2s ease-out;
}
.header-hamburger .lines .line#line1 {
    top: 0;
    width: 100%;
}
.header-hamburger .lines .line#line2 {
    top: calc(50% - 1px);
    width: 100%;
}
.header-hamburger .lines .line#line3 {
    bottom: 0;
    width: 100%;
}
/* オープン時動作 */
.header-hamburger.open .lines .line#line1 {
    transform: rotate(-135deg);
    top: 50% !important;
}
.header-hamburger.open .lines .line#line2 {
    opacity: 0;
}
.header-hamburger.open .lines .line#line3 {
    transform: rotate(135deg);
    top: 50% !important;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-hamburger:hover .lines .line#line2,
    .header-hamburger:hover .lines .line#line3{
        width: 100%;
    }
}
@media (hover:none) {
    .header-hamburger:active{
        background: var(--sub-color);
    }
}
@media screen and (max-width:1199px){
    .header-hamburger{
        top: 12px;
        right: 12px;
        width: 64px;
    }
}
@media screen and (max-width:991px){
    .header-hamburger{
        top: 10px;
        right: 10px;
        width: 52px;
    }
}
@media print {
    .header-hamburger{
        position: absolute;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    padding: 110px 0;
    background: #fff;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
    z-index: 3;
}
.header-nav.open{
    transform: translateX(-100%);
    visibility: visible;
    opacity: 1;
}
.header-nav::-webkit-scrollbar{
    display: none;
}
@media screen and (max-width:1199px){
    .header-nav{
        padding: 90px 0;
    }
}
@media screen and (max-width:991px){
    .header-nav{
        padding: 80px 0 120px;
    }
}

/*  header-nav-logo
------------------------------------------------------------------*/
.header-nav-logo{
    display: block;
    padding: 0 16px 0 8px;
    margin-bottom: 10px;
    text-align: center;
}

/*  header-nav-list
------------------------------------------------------------------*/
.header-nav-list{
    margin-bottom: 20px;
    border-top: 1px solid #bca299;
    line-height: 1;
}

/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 8px;
    width: 100%;
    height: 3.25em;
    padding: 0 2.5em 0 1em;
    border-bottom: 1px solid #bca299;
    font-size: .875rem;
    transition: .2s ease-out;
    line-height: 1.4;
    z-index: 1;
}
.header-nav-item::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: .8em;
    font-weight: bold;
    transition: .2s right ease-out;
}
/* アクティブ時動作 */
.header-nav-item.active{
    color: var(--red-color);
}
.header-nav-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-item:hover{
        color: var(--red-color);
    }
    .header-nav-item:hover::after{
        right: .5em;
    }
}
/*  header-special-nav-list
------------------------------------------------------------------*/
.header-special-nav-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 0 16px;
    margin-bottom: 20px;
}
/*  header-special-nav-item
------------------------------------------------------------------*/
.header-special-nav-item{
    --item-color: var(--black-color);
    display: block;
    padding: 1.25em 1em;
    background: var(--item-color);
    border-radius: 8px;
    font-size: .875rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.header-special-nav-item.admission{
    --item-color: var(--red-color);
    color: #fff;
}
.header-special-nav-item.recruit{
    --item-color: var(--accent-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-special-nav-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
/*  header-other-nav-list
------------------------------------------------------------------*/
.header-other-nav-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 20px;
}
/*  header-other-nav-item
------------------------------------------------------------------*/
.header-other-nav-item{
    display: block;
    padding: 1em;
    background: #e0e0e0;
    border-radius: 2em;
    font-size: .75rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.header-other-nav-item i{
    margin-right: 4px;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-other-nav-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
/*  header-nav-address
------------------------------------------------------------------*/
.header-nav-address{
    margin-bottom: 10px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
}
/*  header-nav-access
------------------------------------------------------------------*/
.header-nav-access{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    width: calc(100% - 60px);
    margin: 0 auto 20px;
    padding: 1em 2em;
    background: var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-access:hover{
        background: var(--accent-color);
        color: var(--black-color);
    }
}
@media (hover:none) {
    .header-nav-access:active{
        background: var(--accent-color);
    }
}

/*  header-nav-tel
------------------------------------------------------------------*/
.header-nav-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    --letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 1;
}
.header-nav-tel .num{
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 1.75rem;
    font-weight: bold;
}
.header-nav-tel .num .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    background: var(--primary-color);
    border-radius: 50%;
}
.header-nav-tel .num .icon i{
    font-size: 0.44em;
    color: #fff;
}
.header-nav-tel .time{
    font-size: .75rem;
    text-align: center;
}
/*  header-nav-sns
------------------------------------------------------------------*/
.header-nav-sns{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    line-height: 1;
}
.header-nav-sns > li > a{
    display: block;
    width: 36px;
    height: 36px;
}
.header-nav-sns > li > a > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 2;
}
.header-overlay.open{
    opacity: 1;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    z-index: 1
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    padding: 90px 0;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        row-gap: 40px;
        padding: 40px 0;
    }
}
/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: block;
    margin-bottom: 16px;
}
@media screen and (max-width:991px){
    .footer-logo{
        width: fit-content;
        margin: 0 auto 16px;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}
@media screen and (max-width:374px){
    .footer-address{
        font-size: .875rem;
    }
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    position: relative;
    padding: 26px 36px 21px;
    background: var(--primary-color);
    border-radius: 10px;
    text-align: center;
    z-index: 1;
}
.footer-tel .title{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: .4em 1.25em;
    background: var(--accent-color);
    border-radius: 5px;
    font-size: .875rem;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1;
    z-index: 1;
}
.footer-tel .num{
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .footer-tel{
        width: fit-content;
        margin: 0 auto;
    }
}
@media screen and (max-width:374px){
    .footer-tel .title{
        font-size: .75rem;
    }
    .footer-tel .num{
        font-size: 1.25rem;
    }
}
/*  footer-nav-wrapper
------------------------------------------------------------------*/
.footer-nav-wrapper{
    flex-shrink: 0;
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5,auto);
    column-gap: 50px;
    row-gap: 16px;
    margin-bottom: 30px;
    line-height: 1;
}
@media screen and (max-width:991px){
    .footer-nav{
        gap: 8px;
    }
}
@media screen and (max-width:575px){
    .footer-nav{
        grid-auto-flow: row;
        grid-template-rows: initial;
        grid-template-columns: 1fr;
    }
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    font-size: .875rem;
    transition: .2s ease-out;
    line-height: 1.2;
}
.footer-nav-item::before{
    margin-right: .5em;
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .footer-nav-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 2em 1em 1em;
        background: var(--light-color);
        font-size: .75rem;
        line-height: 1.2;
        z-index: 1;
    }
}
/*  footer-sns
------------------------------------------------------------------*/
.footer-sns{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    line-height: 1;
}
.footer-sns > li > a{
    display: block;
    width: 30px;
    aspect-ratio: 1 / 1;
}
.footer-sns > li > a > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:767px){
    .footer-sns{
        justify-content: center;
    }
}
/*  footer-map
------------------------------------------------------------------*/
.footer-map{
    width: 100%;
    height: 400px;
}
.footer-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:575px){
    .footer-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    padding: 20px;
    background: var(--primary-color);
    font-size: 12px;
    color: #fff;
        text-align: center;
    line-height: 1;
}



/*-----------------------------------------------------------------
  common page
------------------------------------------------------------------*/

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 180px 8px 120px;
    background: #fff;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .page-top{
        padding: 140px 8px 90px;
    }
}
@media screen and (max-width:991px){
    .page-top{
        padding: 120px 8px 80px;
    }
}
/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    line-height: 1;
    z-index: 2;
}
.page-top-title .jp{
    display: block;
    margin-bottom: 0.3em;
    font-weight: bold;
}
.page-top-title .en{
    display: block;
    font-size: max(0.6em,0.875rem);
    font-weight: bold;
    color: var(--primary-color);
}
@media screen and (max-width:1199px){
    .page-top-title{ font-size: 2rem;}
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 1.75rem;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 1.5rem;}
}
@media screen and (max-width:374px){
    .page-top-title{ font-size: 1.375rem;}
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: brightness(.6);
    z-index: 1;
}
.page-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: pageTopImage .8s forwards ease-out;
}
@keyframes pageTopImage {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    position: absolute;
    bottom: 12px;
    left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    z-index: 2;
}
.breadcrumb > li{
    color: #fff;
    --letter-spacing: 0;
}
.breadcrumb > li + li::before{
    display: inline-block;
    margin-right: 10px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--primary-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--accent-color);
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}


/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.paging-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ccc;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #73574d !important;
    transition: .2s ease-out;
}
.paging-text.current{
    background:  var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  var(--accent-color);
    }
}
@media screen and (max-width:767px){
    .paging{
        column-gap: 5px;
    }
    .paging-text{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/
#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 998;
}
#pagetop-btn img:hover {
    animation: rotates 0.7s linear infinite;
}
@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 991px) {
    #pagetop-btn img{
        width: 40px;
        height: auto;
    }
}