@charset "utf-8";

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /* 1rem = 10px */
}

body {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: #040000;
}

/* -----------font-----------*/
.serif {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
}



img {
    width: 100%;
    height: auto;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

/* -----------共通-----------*/

.page_content {
    padding: 5rem 2rem 0;
    overflow: hidden;
}

/* -----------SP header-----------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 6rem;
    transition: .5s;
    margin: auto;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.header__hamburger {
    width: 2.5rem;
    height: 1.5rem;
    cursor: pointer;
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 9999;
}

.header__hamburger span {
    display: block;
    height: 0.2rem;
    background-color: #040000;
    transition: all 0.3s ease;
}

.header__hamburger span:first-child {
    width: 2.5rem;
    margin-bottom: 1rem;
}

.header__hamburger span:last-child {
    width: 1.5rem;
}

.header__hamburger.active span:first-child {
    transform: translateY(0.6rem) rotate(45deg);
    width: 2.5rem;
}

.header__hamburger.active span:last-child {
    transform: translateY(-0.6rem) rotate(-45deg);
    width: 2.5rem;
}

/* メニュー表示中の×ボタン */
.mobile-menu.active~.body_center .header__hamburger span:first-child {
    transform: translateY(0.6rem) rotate(45deg);
    width: 2.5rem;
}

.mobile-menu.active~.body_center .header__hamburger span:last-child {
    transform: translateY(-0.6rem) rotate(-45deg);
    width: 2.5rem;
}

.header__logo {
    text-align: center;
    width: 9rem;
    height: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 111;
}


.header__lang {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 0.4rem;
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    font-family: 'Inconsolata', monospace;
    width: 100%;
    max-width: 8.4rem;
    line-height: 3rem;
    position: absolute;
    right: 2rem;
}

.header__lang a {
    margin: auto;
}

.lang__jp {
    text-decoration: none;
    font-weight: 700;
    color: #8B8B8B;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0 0.8rem;
}

.lang__jp.active {
    color: #040000;
}

.lang__jp:hover {
    color: #040000;
}

.header__lang::after {
    content: '';
    display: block;
    width: 0.3px;
    height: 1.5rem;
    background-color: #8B8B8B;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.lang__en {
    text-decoration: none;
    font-weight: 700;
    color: #8B8B8B;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0 0.8rem;
}

.lang__en.active {
    color: #040000;
}

.lang__en:hover {
    color: #040000;
}

/* -----------mobile menu-----------*/
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}


.mobile-menu__close {
    width: 2.5rem;
    height: 1.5rem;
    cursor: pointer;
    position: absolute;
    left: 2rem;
    top: 2rem;
    z-index: 111;
}

.mobile-menu__logo {
    text-align: center;
    margin: 10rem auto 0;
    width: 15rem;
}

.mobile-menu__logo img {
    height: 6rem;
}

.mobile-menu__close span {
    display: block;
    height: 0.2rem;
    background-color: #040000;
    margin-bottom: 1rem;
}

.mobile-menu__close span:first-child {
    width: 2.5rem;
}

.mobile-menu__close span:last-child {
    width: 1.5rem;
}

.mobile-menu__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__item {
    margin-bottom: 4rem;
}

.mobile-menu__link {
    color: #040000;
    font-size: 2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mobile-menu__link span {
    font-size: 1.2rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.mobile-menu__link:hover {
    color: #666;
}

/* -----------top-----------*/
.main {
    padding-top: 6rem;
}



.hero__video {
    width: calc(100% - 4rem);
    height: calc(100vh - 6rem);
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    box-sizing: border-box;
    margin: 0 2rem;
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


.concept {
    padding: 7rem 4rem 5rem;
    overflow: hidden;
}


.concept__inner {
    max-width: 80rem;
    margin: 0 auto;
}

.section__title {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    position: relative;
    width: 100%;
    margin-bottom: 5rem;
}

.section__title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15rem;
    width: 100%;
    height: 0.1rem;
    background-color: #040000;
    transition: .5s;
}

.section__title--shirokane::after {
    right: -19rem;
}

.section__title--hiroo::after {
    right: -11rem;
}

.section__title--shop::after {
    right: -9rem;
}

/* -----------menu content-----------*/
.menu-content {
    margin-top: 4rem;
}

.menu-section {
    margin-bottom:3rem;
}

.menu-section__title {
    color: #6C6053;
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    width: 100%;
    max-width: 14.4rem;
    line-height: 2.3rem;
    margin-bottom: 1rem;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #6C6053;
}

.menu-item {
    padding: 1.2rem 0;
    border-bottom: .7px solid #CACACA;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item__note {
    font-size: 1.1rem;
    padding: 1rem 0 0;
}

.shop-list {
    margin-top: 5rem;
}

.shop-card {
    background-color: #6C6053;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    color: #fff;
    padding: 0 1.5rem;
}

.shop-card:last-child {
    margin-bottom: 0rem;
}

.shop-card__header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.shop-card__title {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
}

.shop-card__image {
    width: 100%;
}

.shop-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.shop-card__image img:hover {
    opacity: 0.8;
}

.shop-card__address {
    padding: 2rem 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    text-align: center;
    width: fit-content;
    margin: auto;
}

.shop-card__address .location-icon {
    margin-right: 0.2rem;
}

.shop-card__address .location-icon img {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1);
}

.shop-card__button {
    padding: 0 2rem 3rem;
    text-align: center;
}

.shop-card__button a {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 0.3rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 20rem;
    line-height: 4rem;
    box-sizing: border-box;
}

.shop-card__button a:hover {
    background-color: #E0DEDC;
    color: #6C6053;
}

.section__title--shop::after {
    right: -9rem;
}

/* -----------shop info-----------*/
.shop-info {
    margin-top: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: .7px solid #CACACA;
}

.info-label {
    font-family: 'Cormorant', serif;
    background-color: #6C6053;
    color: #fff;
    font-size: 13px;
    margin-bottom: .5rem;
    text-align: center;
    width: 100%;
    max-width: 10rem;
    line-height: 2.3rem;
    box-sizing: border-box;
}

.info-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
}

.info-content span {
    font-size: 1.1rem;
}

.location-icon img {
    width: 1.2rem;
    height: 1.2rem;
}

.info-button {
    text-align: center;
    margin-top: 3rem;
}

.info-button a {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #6C6053;
    color: #6C6053;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    width: 20rem;
    line-height: 4rem;
    box-shadow: 5px 5px 0px 0px rgba(100, 96, 83, 1);
}

.info-button a:hover {
    background-color: #6C6053;
    color: #fff;
    box-shadow: 5px 5px 0px 0px rgba(255, 255, 255, 1);
}


.gallery__inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.gallery__row--top {
    margin-bottom: 0;
}

.gallery__row--bottom {
    margin-top: 0;
}

/* Swiperのコンテナとラッパーの余白を削除 */
.swiper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.swiper-wrapper {
    height: 100%;
    margin: 0;
    padding: 0;
}

.swiper-slide {
    width: 25%;
    height: 100%;
    display: flex !important;
    align-items: center;
    margin: 0;
    padding: 0;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide img {
    transition: transform 0.3s ease;
}

.booking-button {
    position: fixed;
    right: 0;
    bottom: 10rem;
    width: 5rem;
    height: 12.7rem;
    background-color: rgba(108, 96, 83, 0.9);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: -2px 2px 2px 0px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.booking-button:hover {
    opacity: 0.8;
}

.booking-button__text {
    color: #fff;
    font-size: 1.4rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 5px;
}

.footer {
    padding: 5rem 0 3rem;
}


.footer__copyright {
    display: block;
    text-align: center;
    color: #836E57;
    font-size: 1rem;
    margin: 0;
}

/* -----------footer-----------*/


/* -----------ipad-----------*/

@media screen and (min-width:640px) {

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /* -----------共通-----------*/



}

/* -----------PC-----------*/

@media screen and (min-width:960px) {


    body {
        font-size: 1.6rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        background: #F1F1F1;
    }

    .body_left,
    .body_right {
        display: flex;
        height: 100vh;
        width: calc((100vw - 500px) / 2);
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: fixed;
        background: F1F1F1;
    }

    .body_left {
        left: 0;
        top: 0;
    }

    .body_right {
        right: 0;
        top: 0;
    }

    .left_logo {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: fit-content;
        height: fit-content;
        z-index: 111;
    }

    .body_center {
        width: 100%;
        max-width: 50rem;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        position: relative;
        background: #fff;
        left: 0;
        right: 0;
        margin: auto;
    }

    .right_menu {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: fit-content;
        height: fit-content;
        z-index: 111;
    }


    .pc_menu_list a {
        color: #040000;
        font-size: 1.8rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
        transition: color 0.3s ease;
    }

    .pc_menu_list a span {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------PC header-----------*/
    .header {
        width: 100%;
        max-width: 50rem;
        z-index: 1000;
    }

    /* -----------共通-----------*/

    .section__title::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 6rem;
        width: 20rem;
        height: 0.1rem;
        background-color: #040000;
    }

    .section__title--shirokane::after {
        right: 7rem;
    }

    .section__title--hiroo::after {
        right: 14rem;
    }

    .section__title--shop::after {
        right: 17rem;
    }

    .booking-button {
        height: 16rem;
        bottom: 15rem;
    }





    /* -----------footer-----------*/

    /* -----------top-----------*/
}


@media screen and (min-width:1025px) {


    .sp {
        display: none;
    }

    .pc {
        display: block;
    }


}