@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: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    padding: 0 30px;
    background: #fff;
    border-radius: 20px;
    transition: .2s ease-out;
    z-index: 1000;
}
header.scroll{
    box-shadow: 0 0 16px rgba(0, 0, 0, .1);
}
@media screen and (max-width:1399px){
    header{
        height: 80px;
        padding: 0 24px;
        border-radius: 16px;
    }
}
@media screen and (max-width:991px){
    header{
        top: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: 52px;
        padding: 0 16px;
        border-radius: 8px;
    }
}

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

/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    position: fixed;
    top: 0;
    left: 100%;
    display: block;
    width: 360px;
    height: 100vh;    
    padding: 120px 0;
    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;
}
@media screen and (max-width:1399px){
    .header-gnav{
        width: 320px;
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .header-gnav{
        width: 100%;
        max-width: 300px;
        padding: 70px 0 100px;
    }
}

/*  header-gnav
------------------------------------------------------------------*/
.header-gnav-list{
    border-top: 1px solid #ccc;
    margin-bottom: 20px;
}

/*  header-gnav-list-item
------------------------------------------------------------------*/
.header-gnav-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: .25em;
    height: 4em;
    padding: 0 2.5em 0 1em;
    border-bottom: 1px solid #ccc;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-list-item::after{
    position: absolute;
    top: 50%;
    right: .75em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-list-item small{
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-list-item:hover{
        color: var(--primary-color);
    }
    .header-gnav-list-item:hover::after{
        right: 0;
    }
}
@media (hover:none) {
    .header-gnav-list-item:active{
        color: var(--primary-color);
    }
    .header-gnav-list-item:active::after{
        right: 0;
    }
}
@media screen and (max-width:1399px){
    .header-gnav-list-item{
        font-size: 1rem;
    }
}

/*  header-gnav-detail
------------------------------------------------------------------*/
.header-gnav-detail{
    padding: 20px 12px;
}
/*  header-gnav-logo
------------------------------------------------------------------*/
.header-gnav-logo{
    padding: 0 30px;
    margin-bottom: 12px;
    text-align: center;
}
/*  header-gnav-address
------------------------------------------------------------------*/
.header-gnav-address{
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .header-gnav-address{
        font-size: 1rem;
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 55px;
    margin-top: 10px;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 4;
}
.header-hamburger .lines {
    position: relative;
    display: block;
    width: 50px;
    height: 29px;
}
.header-hamburger .lines .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    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: calc(50% - 1px) !important;
}
.header-hamburger.open .lines .line#line2 {
    opacity: 0;
}
.header-hamburger.open .lines .line#line3 {
    transform: rotate(135deg);
    top: calc(50% - 1px) !important;
}
.header-hamburger .text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-hamburger{
        row-gap: 6px;
        height: 45px;
        margin-top: 6px;
    }
    .header-hamburger .lines {
        width: 42px;
        height: 23px;
    }
    .header-hamburger .text {
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .header-hamburger{
        row-gap: 4px;
        height: 33px;
        margin-top: 4px;
    }
    .header-hamburger .lines {
        width: 32px;
        height: 18px;
    }
    .header-hamburger .lines .line {
        height: 2px;
    }
    .header-hamburger .text {
        font-size: .75rem;
    }
}

/*  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 30px;
    z-index: 1;
}
@media screen and (max-width:1199px){
    
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    line-height: 1;
}
.footer-nav > li{
    border-right: 1px solid #999;
    line-height: 1;
}
.footer-nav > li:last-of-type{
    border-right: initial;
}
@media screen and (max-width:991px){
    .footer-nav{
        display: none;
    }
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    display: block;
    padding: 0 1em;
    font-size: .875rem;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--primary-color);
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    width: 250px;
    margin: 0 auto 20px;
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.5;
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.5;
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    text-align: center;
    line-height: 1;
}

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

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 15px 15px min(12vw, 230px);
    background: url(../images/common/bg-grid-orange.png) repeat;
    overflow: hidden;
    z-index: 1;
}
.page-top::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 43%;
    background: url(../images/common/bg-grid-deeporange.png) repeat;
    content: "";
    z-index: -1;
}
.page-top::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 192 / 17;
    background: url(../images/common/wave-top.png) no-repeat bottom center / 100%;
    content: "";
    z-index: -1;
}
.page-top.stretch{ background: url(../images/common/bg-grid-yellow.png) repeat;}
@media screen and (max-width:991px){
    .page-top{
        padding: 8px 8px min(12vw,230px);
    }
}
/*  page-top-box
------------------------------------------------------------------*/
.page-top-box{
    position: relative;
    max-width: 1890px;
    padding: 120px min(3.125vw,60px) 0;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-top-box{
        padding-top: 90px;
    }
}
@media screen and (max-width:991px){
    .page-top-box{
        padding-top: 60px;
        border-radius: 12px;
    }
}
/*  page-top-box-inner
------------------------------------------------------------------*/
.page-top-box-inner{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-top-box-inner{
        height: 240px;
    }
}
@media screen and (max-width:991px){
    .page-top-box-inner{
        height: 200px;
    }
}
@media screen and (max-width:767px){
    .page-top-box-inner{
        height: 160px;
    }
}
@media screen and (max-width:575px){
    .page-top-box-inner{
        height: 140px;
    }
}
/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 .25rem #FFF, 0 0 .25rem #FFF;
    text-align: center;
    line-height: 1.5;
    z-index: 3;
}
@media screen and (max-width:1399px){
    .page-top-title{ font-size: 2.5rem;}
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 2.25rem;}
}
@media screen and (max-width:767px){
    .page-top-title{ font-size: 2rem;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 1.75rem;}
}
@media screen and (max-width:374px){
    .page-top-title{ font-size: 1.5rem;}
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    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: .66;
        transform: scale(1);
    }
}
@media screen and (max-width:991px){
    .page-top-image{
        border-radius: 12px;
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 16px 0;
    font-size: 12px;
    line-height: 1.5;
    z-index: 1;
}
.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: #2acddd;
}
@media screen and (max-width:991px){
    .breadcrumb{
        padding: 12px 0;
    }
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}
@media screen and (max-width:575px){
    .breadcrumb{
        padding: 8px 0;
    }
}

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

/*------------------------------------------------------------------
  float-contact
------------------------------------------------------------------*/

/*  float-contact
------------------------------------------------------------------*/
.float-contact{
    display: none;
}
@media screen and (max-width:767px) {
    .float-contact{
        position: fixed;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        width: 100%;
        z-index: 999;
    }
}

/*  float-contact-item
------------------------------------------------------------------*/
.float-contact-item{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    height: 50px;
    font-size: 1.125rem;
    font-weight: bold;
    font-family: var(--en-font);
    color: #fff;
    --letter-spacing: 0;
    line-height: 1;
}
.float-contact-item.phone{
    background: var(--sub-color);
}
.float-contact-item.phone i{
    font-size: .8em;
}
.float-contact-item.mail{
    background: var(--primary-color);
}