@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: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    width: 100%;
    padding-left: 30px;
    background: #fff;
    z-index: 1000;
}
@media screen and (max-width:1399px){
    header{
        padding-left: 15px;
    }
}
@media screen and (max-width:991px){
    header{
        padding-left: 10px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-logo{
        width: 200px;
    }
}
@media screen and (max-width:991px){
    .header-logo{
        width: 120px;
    }
}

/*  header-right
------------------------------------------------------------------*/
.header-right{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
@media screen and (max-width:991px){
    .header-right{
        position: fixed;
        top: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 250px;
        height: 100vh;
        padding-top: 50px;
        padding-bottom: 150px;
        background: #fff;
        overflow-y: scroll;
        transition: .2s ease-out;
        z-index: 2;
    }
    .header-right.is-show{
        transform: translateX(-100%);
    }
    .header-right::-webkit-scrollbar{
        display: none;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.header-nav > li > a{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    text-align: center;
    line-height: 1.7;
    transition: .2s;
}
.header-nav > li > a::after{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: .2s;
}
.header-nav > li > a .en{
    display: block;
    font-family: "Roboto";
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--primary-color);
}
/* アクティブ時動作 */
.header-nav > li > a.active{
    color: var(--primary-color);
}
.header-nav > li > a.active::after{
    width: 100%;
}
/* ホバー時動作 */
.header-nav > li > a:hover{
    color: var(--primary-color);
}
.header-nav > li > a:hover::after{
    width: 100%;
}
@media print, screen and (max-width:1399px){
    .header-nav{
        column-gap: 30px;
    }
    .header-nav > li > a{
        height: 80px;
        font-size: 0.875rem;
    }
}
@media screen and (max-width:991px){
    .header-nav{
        flex-direction: column;
        width: 100%;
    }
    .header-nav > li{
        width: 100%;
    }
    .header-nav > li > a {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        column-gap: 10px;
        height: auto;
        padding: 15px;
        border-radius: initial;
        border-bottom: 1px solid #ccc;
    }
    .header-nav > li > a::after{
        display: none;
    }
}

/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    margin-left: 40px;
    background: var(--sub-color);
    color: #fff;
    line-height: 1;
}
.header-tel .tel{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 5px;
    font-family: "Roboto";
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0;
}
.header-tel .tel .num{
    font-size: 1.55em;
}
.header-tel .time{
    display: block;
    font-size: 0.75rem;
}
@media print, screen and (max-width:1399px){
    .header-tel{
        height: 80px;
        margin-left: 30px;
    }
    .header-tel .tel{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .header-tel{
        width: 100%;
        height: auto;
        margin-left: initial;
    } 
}

/*  header-contact
------------------------------------------------------------------*/
.header-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    font-size: 0.875rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    transition: .2s;
}
.header-contact i{
    margin-bottom: 5px;
    font-size: 2.25rem;
}
.header-contact:hover{
    background: var(--accent-color);
    color: #333;
}
@media print, screen and (max-width:1399px){
    .header-contact{
        width: 80px;
        height: 80px;
        font-size: 0.75rem;
    }
    .header-contact i{
        font-size: 2rem;
    }
}
@media screen and (max-width:991px){
    .header-contact{
        display: none;
    } 
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger {
        position: relative;
        flex-shrink: 0;
        display: block;
        width: 54px;
        height: 50px;
        background-color: var(--primary-color);
        cursor: pointer;
        z-index: 2;
    }
    .header-hamburger .inner-line {
        display: block;
        position: absolute;
        left: 13px;
        width: 28px;
        height: 1px;
        background-color: #fff;
        border-radius: 2px;
        transition: .2s;
    }
    .header-hamburger #line1 {
        top: 16px;
    }
    .header-hamburger #line2 {
        top: 24px;
    }
    .header-hamburger #line3 {
        top: 32px;
    }
    .header-hamburger .inner-line.open{
        height: 2px;
    }
    .header-hamburger .inner-line.open#line1 {
        transform: rotate(-45deg);
        top: 24px !important;
    }
    .header-hamburger .inner-line.open#line2 {
        opacity: 0;
    }
    .header-hamburger .inner-line.open#line3 {
        transform: rotate(45deg);
        top: 24px !important;
    }
}

/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.header-overlay.is-show{
    visibility: visible;
    opacity: .8;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 60px 0 30px;
    background: var(--primary-color);
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding-top: 60px;
    }
}

/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}
@media screen and (max-width:991px){
    .footer-logo{
        text-align: center;
    }
}

/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    color: #fff;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}

/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    margin-bottom: 60px;
    color: #fff;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .footer-tel{
        text-align: center;
    }
}

/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #809ed6;
    line-height: 1;
}
@media screen and (max-width:991px){
    .copyright{
        text-align: center;
    }
}