@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: 60px;
    width: 100%;
    padding: 0 30px;
    background: var(--primary-light-color);
    z-index: 1000;
    --header-height: 100px;
}
@media screen and (max-width:1399px){
    header{
        padding: 0 15px;
        --header-height: 90px;
    }
}
@media screen and (max-width:991px){
    header{
        padding: 0 0 0 12px;
    }
}

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

/*  header-right
------------------------------------------------------------------*/
.header-right{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
@media screen and (max-width:991px){
    .header-right{
        position: fixed;
        top: 60px;
        left: 100%;
        display: block;
        width: 280px;
        height: 100vh;
        padding-bottom: 150px;
        background: var(--primary-light-color);
        overflow-y: scroll;
        transition: .2s;
        z-index: 1;
    }
    .header-right.is-show{
        transform: translateX(-100%);
    }
    .header-right::-webkit-scrollbar{
        display: none;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-right: 60px;
}
@media print, screen and (max-width:1399px){
    .header-nav{
        
    }
}
@media screen and (max-width:991px){
    .header-nav{
        display: block;
        margin-right: initial;
    }
}
/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    font-family: "Lora", "NotoSerifJP";
    font-size: .875rem;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.header-nav-item.active::before{
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-item:hover{
        color: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .header-nav-item{
        position: relative;
        flex-direction: row;
        justify-content: flex-start;
        column-gap: 10px;
        height: auto;
        padding: 1em 3em 1em 1em;
        border-radius: initial;
        border-bottom: 1px solid #c8ac97;
    }
    .header-nav-item::before{
        display: none;
    }
    .header-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;
        transition: .2s ease-out;
    }
    /* ホバー時動作 */
    @media (hover:hover) {
        .header-nav-item:hover{
            color: var(--primary-color);
        }
        .header-nav-item:hover::after{
            right: .3em;
        }
    }
    /* アクティブ時動作 */
    .header-nav-item.active{
        background: var(--primary-color);
        color:  #fff;
    }
}

/*  header-reservation
------------------------------------------------------------------*/
.header-reservation{
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    margin-right: 30px;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 0;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-reservation:hover{
        color: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .header-reservation{
        height: auto;
        padding: 1.5em 1em;
        margin-right: 0;
        margin-bottom: 20px;
        background: var(--primary-color);
        color: #fff;
        justify-content: initial;
    }
}

/*  header-sns
------------------------------------------------------------------*/
.header-sns{
    display: flex;
    align-items: center;
    column-gap: 12px;
    line-height: 1;
}
.header-sns > li > a{
    display: block;
    width: 32px;
    aspect-ratio: 1 / 1;
}
.header-sns > li > a > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:991px){
    .header-sns{
        justify-content: center;
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        cursor: pointer;
        z-index: 1002;
    }
    .header-hamburger .inner-lines{
        position: relative;
        width: 30px;
        height: 17px;
    }
    .header-hamburger .inner-lines .inner-line {
        position: absolute;
        left: 0;
        display: block;
        width: 30px;
        height: 1px;
        background-color: var(--black-color);
        transition: .2s;
    }
    .header-hamburger #line1 {
        top: 0;
    }
    .header-hamburger #line2 {
        top: 8px;
    }
    .header-hamburger #line3 {
        bottom: 0;
    }
    .header-hamburger.open .inner-line#line1 {
        transform: rotate(-135deg);
        top: 8px !important;
    }
    .header-hamburger.open .inner-line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .inner-line#line3 {
        transform: rotate(135deg);
        top: 8px !important;
    }
}

/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 999;
}
.header-overlay.is-show{
    opacity: 1;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 60px 0 40px;
    text-align: center;
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #614e43;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .copyright{
        text-align: center;
    }
}


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

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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 100px 0;
    background: url(../images/common/common-contact-bg.jpg) no-repeat center / cover;
    --contact-box-height: 100px;
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 80px 0;
    }     
}
@media screen and (max-width:767px){
    .common-contact{
        padding:60px 0;
    } 
}
/*  common-contact-list
------------------------------------------------------------------*/
.common-contact-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    max-width: 830px;
    margin: 0  auto;
}
@media screen and (max-width:767px){
    .common-contact-list{
        grid-template-columns: 1fr;
        row-gap: 16px;
    }    
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: var(--contact-box-height);
    padding: 0 16px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    --letter-spacing: 0;
}
.common-contact-tel .num{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1;
}
.common-contact-tel .num i{
    font-size: .8em;
    color: var(--primary-color);
}
.common-contact-tel .time{
    font-size: .875rem;
    line-height: 1;
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    height: var(--contact-box-height);
    padding: 0 12px;
    background: #fff;
    border-radius: 10px;
    transition: .2s ease-out;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}
.common-contact-mail i{
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .common-contact-mail:hover i{
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .common-contact-mail{
        font-size: 1.125rem;
    }
}

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 220px 60px 32px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-top{
        padding: 190px 60px 32px;
    }
}
@media screen and (max-width:1199px){
    .page-top{
        padding: 170px 60px 32px;
    }
}
@media screen and (max-width:991px){
    .page-top{
        padding: 100px 30px 32px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 80px 16px 5vw;
    }
}
/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    margin-bottom: 60px;
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.page-top-title .en{
    font-family: var(--en-font);
    color: var(--primary-color);
    letter-spacing: 0;
}
.page-top-title .jp{
    margin-top: .5em;
    font-size: max(.33em,.875rem);
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .page-top-title{
        margin-bottom: 50px;
        font-size: 4.5rem;
    }
}
@media screen and (max-width:991px){
    .page-top-title{
        margin-bottom: 40px;
        font-size: 4rem;
    }
}
@media screen and (max-width:767px){
    .page-top-title{
        margin-bottom: 30px;
        font-size: 3.5rem;
    }
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 3rem;}
}
@media screen and (max-width:374px){
    .page-top-title{ font-size: 2.5rem;}
}
/*  page-top-image-wrapper
------------------------------------------------------------------*/
.page-top-image-wrapper{
    position: relative;
    max-width: 1540px;
    margin: 0 auto;
    z-index: 1;
}
/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: relative;
    height: 400px;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
}
.page-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: PageTopImage 1s ease-out forwards;
}
@keyframes PageTopImage {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
@media screen and (max-width:1399px){
    .page-top-image{
        height: 300px;
    }
}
@media screen and (max-width:767px){
    .page-top-image{
        height: auto;
        aspect-ratio: 7 / 3;
        border-radius: 20px;
    }
}
/*  page-top-treat
------------------------------------------------------------------*/
.page-top-treat01{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    transform: translate(-20%, 10%);
    z-index: 2;
}
.page-top-treat02{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-20%, -4%);
    z-index: -1;
}
.page-top-treat03{
    position: absolute;
    bottom: 50%;
    right: 0;
    width: 150px;
    transform: translate(20%, 50%);
    z-index: 2;
}
.page-top-treat04{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    transform: translate(30%, 11%);
    z-index: -1;
}
@media screen and (max-width:1399px){
    .page-top-treat01{
        width: 160px;
    }
    .page-top-treat02{
        width: 300px;
    }
    .page-top-treat03{
        width: 120px;
    }
    .page-top-treat04{
        width: 240px;
    }
}
@media screen and (max-width:767px){
    .page-top-treat01{
        width: 18vw;
    }
    .page-top-treat02{
        width: 36vw;
    }
    .page-top-treat03{
        width: 12vw;
    }
    .page-top-treat04{
        width: 40vw;
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #999;
    --letter-spacing: 0;
}
.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;
    max-width: 1500px;
    margin: 100px auto 0;
}
@media print, screen and (max-width:1399px){
    .page-2col{
        grid-template-columns: 300px 1fr;
    }
}
@media screen and (max-width:991px){
    .page-2col{
        grid-template-columns: 1fr;
        row-gap: 30px;
        margin-top: 80px;
    }
}
@media screen and (max-width:767px){
    .page-2col{
        margin-top: 50px;
    }
}
/*  page-2col-aside
------------------------------------------------------------------*/
.page-2col-aside{
    position: relative;
    padding: 0 60px 60px;
    border-right: 1px solid #ccc;
    z-index: 1;
}
@media print, screen and (max-width:1399px){
    .page-2col-aside{
        padding: 0 40px 40px;
    }
}
@media screen and (max-width:991px){
    .page-2col-aside{
        padding: 0 6vw;
    }
}
@media print{

}
/*  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: 8px;
}
@media screen and (max-width:991px){
    .page-2col-aside-list{
        grid-template-columns: repeat(4,1fr);
        gap: 8px;
    }
}
@media screen and (max-width:767px){
    .page-2col-aside-list{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  page-2col-aside-list-item
------------------------------------------------------------------*/
.page-2col-aside-list-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 3.5em;
    padding: 0 1.25em;
    background: var(--primary-light-color);
    border-radius: 2em;
    font-size: .875rem;
    line-height: 1.2;
    z-index: 1;
    transition: .2s ease-out;
}
/**/
.page-2col-aside-list-item.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
@media (hover:hover) {
    .page-2col-aside-list-item:hover{
        background: var(--accent-color);
    }
}
@media screen and (max-width:575px){
    .page-2col-aside-list-item{
        font-size: .75rem;
    }
}
/*  page-2col-article
------------------------------------------------------------------*/
.page-2col-article{
    padding: 0 60px;
}
@media screen and (max-width:1399px){
    .page-2col-article{
        padding: 0 40px;
    }
}
@media screen and (max-width:991px){
    .page-2col-article{
        padding: 0 6vw;
    }
}
@media print{
    .page-2col-article{
        padding: 0 15px;
    }
}

/*------------------------------------------------------------------
  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;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #888 !important;
    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-light-color);
        border-color:  var(--primary-color);
    }
    .paging-text:hover a{
        color:  var(--primary-color) !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 (max-width: 991px) {
    #pagetop-btn img{
        width: 40px;
        height: auto;
    }
}