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

　CSS構成

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

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

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

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

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


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

/*  header
------------------------------------------------------------------*/
header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding: 0 40px;
    background: var(--gray-color);
    transition: .2s box-shadow ease-out;
    z-index: 1000;
}
header.scroll{
    box-shadow: 0 2px 10px rgba(20, 51, 44, .1);
}
@media screen and (max-width:1399px){
    header{
        padding: 0 20px;
    }
}
@media screen and (max-width:991px){
    header{
        height: 60px;
        padding: 0 0 0 15px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    display: flex;
    align-items: center;
    column-gap: 15px;
    line-height: 1;
}
.header-logo .logo{
    flex-shrink: 0;
    width: 76px;
}
.header-logo .logo img{
    width: 100%;
    height: auto;
}
.header-logo span{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--title-color);
    letter-spacing: .05em;
}
@media screen and (max-width:1399px){
    .header-logo .logo{
        width: 64px;
    }
    .header-logo span{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .header-logo .logo{
        width: 46px;
    }
    .header-logo span{
        font-size: 1rem;
    }
}
@media screen and (max-width:374px){
    .header-logo .logo{
        width: 40px;
    }
    .header-logo span{
        font-size: .875rem;
    }
}

/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    column-gap: 40px;
}
@media screen and (max-width:1399px){
    .header-gnav{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .header-gnav{
        position: fixed;
        top: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        align-items: initial;
        width: 100%;
        max-width: 280px;
        height: 100vh;
        padding: 60px 0 100px;
        background: #fff;
        overflow-y: scroll;
        visibility: hidden;
        opacity: 0;
        transition: .2s ease-out;
        z-index: 3;
    }
    .header-gnav.open{
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .header-gnav::-webkit-scrollbar{
        display: none;
    }
}

/*  header-gnav-list
------------------------------------------------------------------*/
.header-gnav-list{
    display: flex;
    align-items: center;
    column-gap: 40px;
}
@media screen and (max-width:1399px){
    .header-gnav-list{
        column-gap: 24px;
    }
}
@media screen and (max-width:991px){
    .header-gnav-list{
        display: block;
        margin-bottom: 24px;
    }
}

/*  header-gnav-list-item
------------------------------------------------------------------*/
.header-gnav-list-item{
    position: relative;
    display: block;
    padding: 37px 0;
    color: var(--title-color);
    line-height: 1;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 1;
}
.header-gnav-list-item::before{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: .2s ease-out;
    content: "";
    z-index: 1;
}
.header-gnav-list-item.active{
    color: var(--primary-color);
}
.header-gnav-list-item.active::before{
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-list-item:hover{
        color: var(--primary-color);
    }
    .header-gnav-list-item:hover::before{
        width: 100%;
    }
}
@media (hover:none) {
    .header-gnav-list-item:active{
        color: var(--primary-color);
    }
    .header-gnav-list-item:active::before{
        width: 100%;
    }
}
@media screen and (max-width:1399px){
    .header-gnav-list-item{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .header-gnav-list-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 3.5em;
        padding: 0 1em;
        border-bottom: 1px solid #ccc;
        color: var(--text-color);
        transition: .2s ease-out;
        z-index: 1;
    }
    .header-gnav-list-item::before{
        display: none;
    }
    .header-gnav-list-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
        transition: .2s ease-out;
    }
    .header-gnav-list-item.active{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    /* ホバー時動作 */
    @media (hover:hover) {
        .header-gnav-list-item:hover{
            background: var(--primary-light-color);
            color: var(--primary-color);
        }
        .header-gnav-list-item:hover::after{
            right: 0;
        }
    }
    @media (hover:none) {
        .header-gnav-list-item:active{
            background: var(--primary-light-color);
            color: var(--primary-color);
        }
        .header-gnav-list-item:active::after{
            right: 0;
        }
    }
}

/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 2em;
    background: var(--primary-color);
    border-radius: 2em;
    font-family: var(--en-font);
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.header-tel:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    a.header-tel:active{
        background: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .header-tel{
        height: 50px;
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .header-tel{
        margin: 0 12px 30px;
    }
}

/*  header-gnav-detail
------------------------------------------------------------------*/
.header-gnav-detail{
    display: none;
}
@media screen and (max-width:991px){
    .header-gnav-detail{
        display: block;
    }
}

/*  header-gnav-logo
------------------------------------------------------------------*/
.header-gnav-logo{
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
    text-align: center;
}
.header-gnav-logo .logo{
    width: 76px;
    margin: 0 auto 8px;
}
.header-gnav-logo .logo img{
    width: 100%;
    height: auto;
}
.header-gnav-logo span{
    display: block;
    font-size: .9375rem;
    font-weight: bold;
    color: var(--title-color);
    line-height: 1;
}

/*  header-gnav-address
------------------------------------------------------------------*/
.header-gnav-address{
    margin-bottom: 12px;
    font-size: .875rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0;
}

/*  header-gnav-map
------------------------------------------------------------------*/
.header-gnav-map{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    width: fit-content;
    margin: 0 auto;
    padding: 1em 2em;
    background: var(--primary-color);
    border-radius: 2em;
    transition: .2s ease-out;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-map:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    .header-gnav-map:active{
        background: var(--accent-color);
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .lines {
        position: relative;
        width: 24px;
        height: 16px;
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
    }
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-135deg);
        top: 6px !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 6px !important;
    }
}

/*  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;
}


/*------------------------------------------------------------------
  common-contact
------------------------------------------------------------------*/

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 110px 0 0;
    background: var(--primary-dark-color);
    z-index: 1;
}
.common-contact .title-english{
    text-align: center;
}
.common-contact .title-english .jp{
    color: #fff;
}
@media screen and (max-width:1199px){
    .common-contact{
        padding: 80px 0 0;
    }
}
@media screen and (max-width:767px){
    .common-contact{
        padding: 60px 0 0;
    }
}

/*  common-contact-box
------------------------------------------------------------------*/
.common-contact-box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid #82ac9f;
    border-radius: 6px;
}
.common-contact-box > li + li{
    border-left: 1px solid #82ac9f;
}
@media screen and (max-width:767px){
    .common-contact-box{
        grid-template-columns: 1fr;
    }
    .common-contact-box > li + li{
        border-left: initial;
        border-top: 1px solid #82ac9f;
    }
}

/*  common-contact-item
------------------------------------------------------------------*/
.common-contact-item{
    padding: 75px 30px 65px;
    text-align: center;
}
.common-contact-item .title{
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
.common-contact-item .num{
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 25px;
    font-family: var(--en-font);
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.common-contact-item .num dt{
    font-size: 1.5rem;
    color: var(--accent-color);
}
.common-contact-item .num dd{
    font-size: 2.75rem;
}
.common-contact-item .time{
    font-size: .875rem;
    color: #ccdfdb;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .common-contact-item{
        padding: 40px 20px 35px;
    }
    .common-contact-item .title{
        margin-bottom: 12px;
    }
    .common-contact-item .num{
        margin-bottom: 12px;
    }
    .common-contact-item .num dt{
        font-size: 1.25rem;
    }
    .common-contact-item .num dd{
        font-size: 2.25rem;
    }
}
@media screen and (max-width:575px){
    .common-contact-item .num dt{
        font-size: 1.125rem;
    }
    .common-contact-item .num dd{
        font-size: 2rem;
    }
}
@media screen and (max-width:374px){
    .common-contact-item .num dd{
        font-size: 1.875rem;
    }
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 90px 0 40px;
    background: var(--primary-dark-color);
    color: #fff;
    z-index: 1;
}
@media screen and (max-width:1199px){
    footer{
        padding-top: 70px;
    }
}
@media screen and (max-width:767px){
    footer{
        padding-top: 50px;
    }
}

/*  footer-top
------------------------------------------------------------------*/
.footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    margin-bottom: 45px;
}
@media screen and (max-width:991px){
    .footer-top{
        flex-direction: column;
        align-items: initial;
        row-gap: 30px;
        margin-bottom: 30px;
    }
}

/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: flex;
    align-items: center;
    column-gap: 15px;
    width: fit-content;
    line-height: 1;
}
.footer-logo .logo{
    flex-shrink: 0;
    width: 76px;
}
.footer-logo span{
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: .05em;
}
@media screen and (max-width:991px){
    .footer-logo{
        flex-direction: column;
        row-gap: 12px;
        margin: 0 auto;
    }
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 15px;
}
@media screen and (max-width:1199px){
    .footer-nav{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .footer-nav{
        justify-content: center;
    }
}
@media screen and (max-width:575px){
    .footer-nav{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}

/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    display: block;
    font-size: .875rem;
    color: #ccdfdb;
    line-height: 1.2;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-nav-item:active{
        color: var(--accent-color);
    }
}
@media screen and (max-width:575px){
    .footer-nav-item{
        position: relative;
        padding: 1em;
        border: 1px solid #82ac9f;
        font-size: .75rem;
        z-index: 1;
    }
    .footer-nav-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: "\f105";
        transition: .2s ease-out;
        font-family: "Font Awesome 6 Free";
        font-size: 10px;
        font-weight: bold;
        z-index: 1;
    }
    /* ホバー時動作 */
    @media (hover:hover) {
        .footer-nav-item:hover{
            background: #fff;
            border-color: #fff;
            color: var(--primary-color);
        }
        .footer-nav-item:hover::after{
            right: .5em;
        }
    }
    @media (hover:none) {
        .footer-nav-item:active{
            background: #fff;
            border-color: #fff;
            color: var(--primary-color);
        }
        .footer-nav-item:active::after{
            right: .5em;
        }
    }
}

/*  footer-bottom
------------------------------------------------------------------*/
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .25);
}
@media screen and (max-width:767px){
    .footer-bottom{
        flex-direction: column;
        row-gap: 20px;
    }
}

/*  footer-externals
------------------------------------------------------------------*/
.footer-externals{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #b6c0be;
    line-height: 1;
}


/*------------------------------------------------------------------
  page-top
------------------------------------------------------------------*/

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(0deg, #35ae96 0%, #0d6e4c 100%);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top{
        padding: 60px 0 75px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 50px 0 65px;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    text-align: center;
}
.page-top-title .en{
    margin-bottom: 12px;
    font-family: var(--en-font);
    font-size: .9375rem;
    font-weight: bold;
    color: var(--accent-color);
    letter-spacing: .15em;
    line-height: 1;
}
.page-top-title .jp{
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .page-top-title .jp{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:767px){
    .page-top-title .jp{
        font-size: 1.5rem;
    }
}


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


/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/
#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}
#pagetop-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(20, 51, 44, .3);
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    #pagetop-btn a:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    #pagetop-btn a:active{
        background: var(--accent-color);
    }
}
@media screen and (max-width:575px){
    #pagetop-btn a{
        width: 40px;
    }
}
