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

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    width: 188px;
    line-height: 1;
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        aspect-ratio: 1 / 1;
        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-nav-wrapper
------------------------------------------------------------------*/
.header-nav-wrapper{
    display: flex;
    align-items: center;
}
@media screen and (max-width:991px){
    .header-nav-wrapper{
        position: fixed;
        top: 0;
        left: 100%;
        display: block;
        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-nav-wrapper.open{
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .header-nav-wrapper::-webkit-scrollbar{
        display: none;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-right: 40px;
}
@media screen and (max-width:991px){
    .header-nav{
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 8px;
    height: 100px;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.header-nav-item::after{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    content: "";
    transition: .2s ease-out;
}
.header-nav-item .en{
    font-family: var(--en-font);
    font-size: .75rem;
    color: var(--accent-color);
    letter-spacing: 0;
}
/* アクティブ時動作 */
.header-nav-item.active{
    color: var(--accent-color);
}
.header-nav-item.active::after{
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-item:hover{
        color: var(--accent-color);
    }
    .header-nav-item:hover::after{
        width: 100%;
    }
}
@media screen and (max-width:1399px){
    .header-nav-item{
        font-size: .875rem;
        height: 80px;
    }
}
@media screen and (max-width:991px){
    .header-nav-item{
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        column-gap: .5em;
        height: auto;
        padding: 1.25em 1em;
        border-bottom: 1px solid #ccc;
        transition: .2s ease-out;
        z-index: 1;
    }
    .header-nav-item::after{
        display: none;
    }
    /* アクティブ時動作 */
    .header-nav-item.active{
        color: var(--accent-color);
    }
    .header-nav-item.active::after{
        right: .5em;
    }
}

/*  header-nav-contact
------------------------------------------------------------------*/
.header-nav-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    padding: 1.25em;
    background: var(--primary-color);
    border-radius: 4px;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-contact:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    .header-nav-contact:active{
        background: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .header-nav-contact{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .header-nav-contact{
        margin: 0 12px 30px;
    }
}

/*  header-nav-detail
------------------------------------------------------------------*/
.header-nav-detail{
    display: none;
}
@media screen and (max-width:991px){
    .header-nav-detail{
        display: block;
    }
}
/*  header-nav-logo
------------------------------------------------------------------*/
.header-nav-logo{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
}
/*  header-nav-address
------------------------------------------------------------------*/
.header-nav-address{
    margin-bottom: 8px;
    font-size: .875rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0;
}
/*  header-nav-map
------------------------------------------------------------------*/
.header-nav-map{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    width: fit-content;
    margin: 0 auto 4px;
    padding: 1em 2em;
    background: var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
/*  header-nav-tel
------------------------------------------------------------------*/
.header-nav-tel{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.header-nav-tel .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: .75rem;
    color: #fff;
}
.header-nav-tel .num{
    font-family: var(--en-font);
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 0;
}

/*  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: 80px 0 60px;
    background: var(--black-color);
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0 20px;
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 100px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        row-gap: 40px;
        margin-bottom: 60px;
    }
}
/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    z-index: 1;
}
@media screen and (max-width:991px){
    .footer-logo{
        text-align: center;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    font-size: .875rem;
    color: #d4def9;
    line-height: 1.5;
    --letter-spacing: 0;
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    column-gap: 30px;
}
@media screen and (max-width:991px){
    .footer-nav{
        justify-content: center;
    }
}
@media screen and (max-width:767px){
    .footer-nav{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    font-size: 0.875rem;
    color: #d4def9;
    line-height: 1.2;
    --letter-spacing: 0;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--accent-color);
    }
}
@media screen and (max-width:767px){
    .footer-nav-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 2em 1em 1em;
        border: 1px solid #d4def9;
        font-size: .75rem;
        z-index: 1;
    }
    .footer-nav-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-size: .8em;
        font-weight: bold;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #d4def9;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .copyright{
        text-align: center;
    }
}

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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 130px 0;
    background: url(../images/common/common-contact-bg.jpg) no-repeat center / cover;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .common-contact{
        padding: 80px 0;
    }     
}
@media screen and (max-width:767px){
    .common-contact{
        padding: 80px 0;
    }     
}
/*  common-contact-wrapper
------------------------------------------------------------------*/
.common-contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .common-contact-wrapper{
        flex-direction: column;
        justify-content: center;
        row-gap: 40px;
    }     
}
/*  common-contact-detail
------------------------------------------------------------------*/
.common-contact-detail{
    display: flex;
    align-items: center;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .common-contact-detail{
        flex-direction: column;
        justify-content: center;
        row-gap: 30px;
    }     
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    font-family: var(--en-font);
    font-size: 3rem;
    font-style: italic;
    color: #fff;
    line-height: 1;
    --letter-spacing: 0;
}
@media screen and (max-width:991px){
    .common-contact-tel{
        font-size: 2.5rem;
    }     
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    padding: 1.5em 2em;
    border: 1px solid #fff;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    transition: .2s ease-out;
}
.common-contact-mail i{
    font-size: 1.33em;
    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 screen and (max-width:991px){
    .common-contact-mail{
        background: #fff;
        color: var(--black-color);
    }     
}

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


/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 180px 20px 120px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #000;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-top{
        padding: 150px 20px 80px;
    }
}
@media screen and (max-width:991px){
    .page-top{
        padding: 120px 20px 50px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 100px 20px 40px;
    }
}
/*  page-top-title-en
------------------------------------------------------------------*/
.page-top-title-en{
    position: relative;
    margin-bottom: .2em;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
    z-index: 3;
}
@media screen and (max-width:1399px){
    .page-top-title-en{ font-size: 72px;}
}
@media screen and (max-width:991px){
    .page-top-title-en{ font-size: 64px;}
}
@media screen and (max-width:767px){
    .page-top-title-en{ font-size: 56px;}
}
@media screen and (max-width:575px){
    .page-top-title-en{ font-size: 48px;}
}
@media screen and (max-width:374px){
    .page-top-title-en{ font-size: 40px;}
}
/*  page-top-title-jp
------------------------------------------------------------------*/
.page-top-title-jp{
    position: relative;
    font-size: 1.5rem;
    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: linear-gradient(0deg,#186ccd 0%, #d6f4f7 100%);
    opacity: .8;
    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{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 0 6vw;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #999;
}
.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: var(--accent-color);
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}


/*------------------------------------------------------------------
  page-2col
------------------------------------------------------------------*/

/*  page-2col
------------------------------------------------------------------*/
.page-2col{
    display: grid;
    grid-template-columns: 360px 1fr;
    margin-top: 100px;
}
@media screen and (max-width:1399px){
    .page-2col{
        grid-template-columns: 280px 1fr;
    }
}
@media screen and (max-width:1199px){
    .page-2col{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:991px){
    .page-2col{
        margin-top: 80px;
    }
}
@media screen and (max-width:767px){
    .page-2col{
        margin-top: 50px;
    }
}
@media print{
    .page-2col{
        grid-template-columns: 1fr;
    }
}
/*  page-2col-aside
------------------------------------------------------------------*/
.page-2col-aside{
    position: relative;
    padding: 0 60px 60px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-2col-aside{
        padding: 0 40px 40px;
    }
}
@media screen and (max-width:1199px){
    .page-2col-aside{
        display: none;
    }
}
@media print{
    .page-2col-aside{
        display: none;
    }
}
/*  page-2col-aside-wrapper
------------------------------------------------------------------*/
.page-2col-aside-wrapper{
    position: sticky;
    top: 120px;
    left: 0;
    z-index: 1;
}
/*  page-2col-aside-list
------------------------------------------------------------------*/
.page-2col-aside-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
@media screen and (max-width:1399px){
    .page-2col-aside-list{
        row-gap: 16px;
    }
}
/*  page-2col-aside-list-item
------------------------------------------------------------------*/
.page-2col-aside-list-item{
    position: relative;
    display: block;
    padding-left: 1.25em;
    font-size: .875rem;
    line-height: 1.2;
    z-index: 1;
    transition: .2s ease-out;
}
.page-2col-aside-list-item::before{
    position: absolute;
    top: .3em;
    left: 0;
    transform: scale(0);
    width: .6em;
    height: .6em;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    content: "";
    transition: .2s ease-out;
}
/**/
.page-2col-aside-list-item.active{
    color: var(--accent-color);
}
.page-2col-aside-list-item.active::before{
    transform: scale(1);
    opacity: 1;
}
@media (hover:hover) {
    .page-2col-aside-list-item:hover{
        color: var(--accent-color);
    }
    .page-2col-aside-list-item:hover::before{
        transform: scale(1);
        opacity: 1;
    }
}
@media screen and (max-width:1399px){
    .page-2col-aside-list-item{
        font-size: .75rem;
    }
}
/*  page-2col-container
------------------------------------------------------------------*/
.page-2col-container{
    padding: 0 120px;
}
@media screen and (max-width:1399px){
    .page-2col-container{
        padding: 0 80px;
    }
}
@media screen and (max-width:1199px){
    .page-2col-container{
        padding: 0 60px;
    }
}
@media screen and (max-width:991px){
    .page-2col-container{
        padding: 0 6vw;
    }
}
@media print{
    .page-2col-container{
        padding: 0 15px;
    }
}

/*------------------------------------------------------------------
  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 (max-width: 991px) {
    #pagetop-btn img{
        width: 40px;
        height: auto;
    }
}


/*------------------------------------------------------------------
  swiper-slider
------------------------------------------------------------------*/

/*  swiper-slider
------------------------------------------------------------------*/
.swiper-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.swiper-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background: #fff;
}
.swiper-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.swiper-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  swiper-thumb-slider
------------------------------------------------------------------*/
.swiper-thumb-slider{
    position: relative;
	max-width: 520px;
	margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}
.swiper-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.swiper-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.swiper-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.swiper-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
/*  swiper-slider-button
------------------------------------------------------------------*/
.swiper-slider-button-prev,
.swiper-slider-button-next{
    position: absolute;
    top: 50%;
    width: 32px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
	cursor: pointer;
    transition: .2s ease-out;
    z-index: 2;
}
.swiper-slider-button-prev.swiper-button-disabled,
.swiper-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.swiper-slider-button-prev{
    left: 5px;
}
.swiper-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
.swiper-slider-button-next{
    right: 5px;
}
.swiper-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .swiper-slider-button-prev:hover,
    .swiper-slider-button-next:hover,
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}