@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{
    --header-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: .2s ease-out;
    z-index: 1000;
}
header.scroll{
    background: #fff;
    box-shadow: 0 0 16px rgba(0, 0, 0, .1);
}
@media screen and (max-width:991px){
    header{
        --header-height: 52px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    width: 280px;
    margin-left: 20px;
    margin-right: auto;
    line-height: 1;
    filter: brightness(0) invert(1);
    transition: .4s ease-out;
}
.scroll .header-logo{
    filter: initial;
}
@media screen and (max-width:991px){
    .header-logo{
        width: 180px;
        margin-left: 10px;
    }
}

/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    position: fixed;
    top: 0;
    left: 100%;
    display: block;
    width: 100%;
    max-width: 320px;
    height: 100vh;    
    padding: var( --header-height) 0 120px;
    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-logo
------------------------------------------------------------------*/
.header-gnav-logo{
    display: block;
    padding: 20px;
}
/*  header-gnav-title
------------------------------------------------------------------*/
.header-gnav-title{
    padding: 10px;
    background: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}
/*  header-gnav-list
------------------------------------------------------------------*/
.header-gnav-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.header-gnav-list > li{
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.header-gnav-list > li:nth-of-type(even){
    border-right: initial;
}
/*  header-gnav-list-item
------------------------------------------------------------------*/
.header-gnav-list-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 3.25em;
    padding: 0 1.5em 0 1em;
    font-size: .875rem;
    font-feature-settings: "palt";
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-list-item::after{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-size: 10px;
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-gnav-list-item.active{
    background: var(--primary-light-color);
    color: var(--primary-color);
}
.header-gnav-list-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-list-item:hover{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .header-gnav-list-item:hover::after{
        right: .5em;
    }
}
@media (hover:none) {
    .header-gnav-list-item:active{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .header-gnav-list-item:active::after{
        right: .5em;
    }
}
/*  header-gnav-detail
------------------------------------------------------------------*/
.header-gnav-detail{
    padding: 20px 12px;
}
/*  header-gnav-company
------------------------------------------------------------------*/
.header-gnav-company{
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}
.header-gnav-company small{
    font-size: .875rem;
    color: #404860;
}
/*  header-gnav-address
------------------------------------------------------------------*/
.header-gnav-address{
    margin-bottom: 8px;
    font-size: .875rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0;
}
/*  header-gnav-map
------------------------------------------------------------------*/
.header-gnav-map{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    width: fit-content;
    margin: 0 auto 4px;
    padding: 1em 2em;
    background: var(--accent-color);
    border-radius: 2em;
    font-size: .75rem;
    color: #fff;
    transition: .2s ease-out;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-map:hover{
        background: var(--red-color);
    }
}
@media (hover:none) {
    .header-gnav-map:active{
        background: var(--red-color);
    }
}
/*  header-gnav-tel
------------------------------------------------------------------*/
.header-gnav-tel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 5px;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.header-gnav-tel .num{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .25em;
    padding: 16px;
    background: var(--primary-color);
    font-family: var(--en-font);
    font-weight: bold;
    font-feature-settings: "palt";
    line-height: 1;
    --letter-spacing: 0;
}
.header-gnav-tel .num i{
    font-size: .8em;
}
.header-gnav-tel .time{
    display: block;
    padding: 12px;
    background: #169ac6;
    font-size: .875rem;
    font-feature-settings: "palt";
    line-height: 1;
}
/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    position: relative;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
}
.header-tel .num{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 1.75rem;
    font-weight: bold;
    font-feature-settings: "palt";
    color: var(--accent-bright-color);
    line-height: 1;
}
.header-tel .time{
    font-size: .875rem;
    font-feature-settings: "palt";
    color: #fff;
    line-height: 1;
}
.scroll .header-tel .num{
    color: var(--accent-color);
}
.scroll .header-tel .time{
    color: var(--black-color);
}
@media screen and (max-width:991px){
    .header-tel{
        display: none;
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: var(--header-height);
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 4;
}
.header-hamburger .lines {
    position: relative;
    width: calc( var(--header-height) * .4);
    height: calc( var(--header-height) * .22);
}
.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;
}




/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 100px 0 ;
    background: var(--primary-color);
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0;
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 80px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: initial;
        row-gap: 40px;
    }
}
/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    width: 280px;
    filter: brightness(0) invert(1);
    line-height: 1;
    margin-bottom: 30px;
}
@media screen and (max-width:991px){
    .footer-logo{
        margin: 0 auto 30px;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    display: block;
    margin-bottom: 30px;
    font-size: .875rem;
    color: #fff;
    line-height: 1.5;
    text-decoration: underline;
    transition: .2s ease-out;
}
.footer-address i{
    display: inline;
    color: var(--accent-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-address:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-address:active{
        color: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 1.5rem;
    font-weight: bold;
    font-feature-settings: "palt";
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .footer-tel{
        text-align: center;
    }
}
/*  footer-tel-emergency
------------------------------------------------------------------*/
.footer-tel-emergency{
    font-size: .75rem;
    font-feature-settings: "palt";
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .footer-tel-emergency{
        text-align: center;
    }
}
/*  footer-nav-wrapper
------------------------------------------------------------------*/
.footer-nav-wrapper{
    display: flex;
    align-items: flex-start;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .footer-nav-wrapper{
        display: none;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    display: block;
    font-weight: bold;
    color: #fff;
    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);
    }
}
/*  footer-nav-sub
------------------------------------------------------------------*/
.footer-nav-sub{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-top: 20px;
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-sub-item{
    display: block;
    font-size: .875rem;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
.footer-nav-sub-item::before{
    content: "-";
    margin-right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-sub-item:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-nav-sub-item:active{
        color: var(--accent-color);
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .copyright{
        text-align: center;
    }
}

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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 100px 0;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 80px 0;
    }     
}
/*  common-contact-list
------------------------------------------------------------------*/
.common-contact-list{
    --box-height: 120px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    max-width: 830px;
    margin: 0 auto;
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact-list{
        --box-height: 100px;
        column-gap: 10px;
    }
}
@media screen and (max-width:767px){
    .common-contact-list{
        grid-template-columns: 1fr;
        row-gap: 12px;
    }
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: var(--box-height);
    background: #fff;
    border-radius: 10px;
    text-align: center;
}
.common-contact-tel .num{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}
.common-contact-tel .emergency{
    font-weight: bold;
    font-feature-settings: "palt";
    line-height: 1;
}
@media screen and (max-width:991px){
    .common-contact-tel .title{
        font-size: 1rem;
    }
    .common-contact-tel .num{
        margin-bottom: 12px;
        font-size: 1.75rem;
    }
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    height: var(--box-height);
    background: #fff;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    transition: .2s ease-out;
}
.common-contact-mail i{
    color: var(--accent-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .common-contact-mail:hover i{
        color: #fff;
    }
}
@media (hover:none) {
    .common-contact-mail:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .common-contact-mail:active i{
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .common-contact-mail{
        font-size: 1.25rem;
    }
}

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

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 120px 20px 100px;
    overflow: hidden;
    background: #000;
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top{
        padding: 100px 20px 80px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 80px 20px 60px;
    }
}
/*  page-top-title-en
------------------------------------------------------------------*/
.page-top-title-en{
    position: relative;
    margin-bottom: .1em;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: 72px;
    font-weight: bold;
    font-feature-settings: "palt";
    color: var(--accent-bright-color);
    text-align: center;
    line-height: 1.25;
    z-index: 3;
}
@media screen and (max-width:991px){
    .page-top-title-en{ font-size: 56px;}
}
@media screen and (max-width:767px){
    .page-top-title-en{ font-size: 48px;}
}
@media screen and (max-width:575px){
    .page-top-title-en{ font-size: 40px;}
}
@media screen and (max-width:374px){
    .page-top-title-en{ font-size: 32px;}
}
/*  page-top-title-jp
------------------------------------------------------------------*/
.page-top-title-jp{
    position: relative;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    z-index: 3;
}
@media screen and (max-width:1399px){
    .page-top-title-jp{ font-size: 1.375rem;}
}
@media screen and (max-width:991px){
    .page-top-title-jp{ font-size: 1.25rem;}
}
@media screen and (max-width:767px){
    .page-top-title-jp{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .page-top-title-jp{ font-size: .875rem;}
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.page-top-image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
    opacity: .6;
    content: "";
    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: 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 5 Free";
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--accent-bright-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--red-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;
    border: 1px solid #aaa;
    color: #898989;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    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(--primary-color);
        border-color: var(--primary-color);
    }
    .paging-text:hover a{
        color:  #fff !important;
    }
}
@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: 2;
}
#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 screen and (max-width:767px) {
    #pagetop-btn{
        width: 48px;
    }
}