@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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding: 40px 30px;
    transition: .2s ease-out;
    z-index: 1000;
}
@media screen and (max-width:1399px) {
    header {
        padding: 30px 20px;
    }
}
@media screen and (max-width:991px) {
    header {
        padding: 0 0 0 10px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo {
    display: block;
    line-height: 1;
    z-index: 1;
}
@media screen and (max-width:1399px) {
    .header-logo {
        width: 280px;
    }
}
@media screen and (max-width:991px) {
    .header-logo {
        width: 240px;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav {
    display: flex;
    align-items: center;
    column-gap: 12px;
    flex-shrink: 0;
}
@media screen and (max-width:991px) {
    .header-nav {
        position: fixed;
        top: 0;
        left: 100%;
        display: block;
        width: 240px;
        height: 100vh;
        padding: 60px 0 120px;
        background: #fff;
        transition: .2s ease-out;
        z-index: 3;
    }
    .header-nav.open{
        transform: translateX(-100%);
    }
}

/*  header-nav-list
------------------------------------------------------------------*/
.header-nav-list {
    display: flex;
    align-items: center;
    column-gap: 28px;
    height: 60px;
    padding: 0 44px;
    background: #fff;
    border-radius: 30px;
}
@media screen and (max-width:1399px) {
    .header-nav-list {
        column-gap: 20px;
        height: 52px;
        padding: 0 28px;
    }
}
@media screen and (max-width:991px) {
    .header-nav-list {
        display: block;
        height: auto;
        padding: 0;
        border-radius: initial;
    }
    .header-nav-list > li{
        border-bottom: 1px dashed #bfb0a4;
    }
    .header-nav-list > li:last-of-type{
        border-bottom: initial;
    }
}

/*  header-nav-list-item
------------------------------------------------------------------*/
.header-nav-list-item {
    display: block;
    line-height: 1;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .header-nav-list-item:hover {
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .header-nav-list-item:active {
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px) {
    .header-nav-list-item {
        font-size: .875rem;
    }
}
@media screen and (max-width:991px) {
    .header-nav-list-item {
        position: relative;
        padding: 1.25em 1em;
        z-index: 1;
    }
    .header-nav-list-item::after{
        position: absolute;
        top: 50%;
        right: .5em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
        z-index: 1;
    }
}

/*  header-tel
------------------------------------------------------------------*/
.header-tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 4px;
    height: 60px;
    padding: 0 36px;
    background: var(--primary-color);
    border-radius: 30px;
    z-index: 1;
}
.header-tel .num{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .25em;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.header-tel .num i{
    font-size: .8em;
}
.header-tel .time{
    font-size: .75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:1399px) {
    .header-tel {
        height: 52px;
        padding: 0 24px;
    }
    .header-tel .num{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:991px) {
    .header-tel {
        height: auto;
        padding: 16px 10px;
        border-radius: initial;
    }
    .header-tel .num{
        font-size: 1.5rem;
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px) {
    .header-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 8px;
        width: 60px;
        aspect-ratio: 1 / 1;
        background: var(--primary-color);
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .text {
        font-size: .75rem;
        text-align: center;
        color: #fff;
        line-height: 1;
    }
    .header-hamburger .lines {
        position: relative;
        width: calc(100% * .416);
        height: calc(100% * .22);
        margin-top: calc(100% * .1);
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        height: 2px;
        background: #fff;
        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;
    }
}
/*  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;
    padding: 60px 0 40px;
    background: var(--primary-light-color);
    z-index: 1
}

/*  footer-logo
------------------------------------------------------------------*/
.footer-logo {
    display: block;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:991px) {
    .footer-logo {
        font-size: 1.375rem;
    }
}

/*  footer-address
------------------------------------------------------------------*/
.footer-address {
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px) {
    .footer-address {
    }
}

/*  footer-tel
------------------------------------------------------------------*/
.footer-tel {
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px) {
    .footer-tel {
        
    }
}

@media screen and (max-width:374px) {
    .footer-tel {
        
    }
}

/*  copyright
------------------------------------------------------------------*/
.copyright {
    padding: 20px 0;
    background: var(--primary-light-color);
    font-size: .75rem;
    text-align: center;
    line-height: 1.5;
}

/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/
#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}

#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 {
        visibility: hidden;
        opacity: 0;
    }
}