@charset "UTF-8";

/* =========================== 
common
===========================*/
/* 変数(variable)を使用する */
:root {
    /* primary(主要な・メインの) */
    --primary-lightBeige: #F6F4EE;
    --primary-beige: #F2EDE7;
    --primary-white: #FCFAF7;
    --primary-darkBrown: #311303;
    --primary-brown: #6B5A50;
    --primary-reddishBrown: #A45E3A;
    --primary-pailYellow: #F3E6CF;
    --primary-redLine: #f07f28;
    --primary-yellowLine: #f3ca14;
    --primary-blueLine: #8ed1fc;
    --primary-orange: #ff6900;
    --primary-red: #cf2e2e;
    --primary-gray: #565656;


    --contentWigth: 80%;
    --contentPadding: 10%;
}

html {
    font-size: 62.5%;
}

* {
    padding: 0;
    margin: 0;
}

*:focus {
    outline: none;
}

body {
    font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Noto Sans", sans-serif;
    font-style: normal;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: var(--primary-darkBrown, #311303);
    background-color: var(--primary-lightBeige, #F6F4EE);
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

a,
a:hover,
a:visited {
    text-decoration: none;
}

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

ul {
    list-style: none;
}

h2 {
    font-family: "Shippori Mincho";
    font-size: 3.2rem;
    text-align: left;
}

h3 {
    font-family: "Shippori Mincho";
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 1.8em;
}

h4 {
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 2.88px;
}

h5 {
    font-family: "Shippori Mincho";
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.sectionTitle::before {
    content: '';
    display: inline-block;
    align-items: center;
    width: 21px;
    height: 21px;
    background-image: url("../images/sun.svg");
    margin-right: 8px;
}

.btn__pc {
    display: inline-block;
    position: relative;
    border: 1px solid var(--primary-darkBrown);
    text-align: center;
    padding: 20px 50px;
    cursor: pointer;
    max-width: 300px;

    transition: color 0.5s ease;
}

.btn__pc::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 20%;
    height: 0.5px;
    background-color: var(--primary-white);
    mix-blend-mode: exclusion;
    transform: translateY(-50%);
}

.btn__pc:hover {
    color: var(--primary-lightBeige);
}

.btn__pc span {
    position: relative;
}

.btn__pc:hover span {
    color: var(--primary-beige);
}

.btn__pc:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn__pc::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--primary-darkBrown);
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}

::selection {
    color: #fff;
    background-color: var(--primary-brown);
}

/* ipad-600px */
@media screen and (min-width:600px) {
    h3 {
        padding-left: 0;
        text-align: center;
    }

    .sectionTitle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 線 */
    .title__line {
        display: flex;
        align-items: center;
    }

    .title__line:before,
    .title__line:after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: var(--primary-darkBrown);
    }

    .title__line:before {
        margin-right: 1rem;
    }

    .title__line:after {
        margin-left: 1rem;
    }

    /* 線 */

}

/* ipad-600px */

/* pc-1024px */
@media screen and (min-width:1024px) {

    /* PC font-size */
    h2 {
        text-align: center;
        font-size: 4rem;
    }

    h3 {
        color: var(--primary-brown);
        text-align: center;
        font-size: 2.4rem;

    }

    h4 {
        font-size: 3.6rem;

    }

    h5 {
        font-size: 2.4rem;
    }


    .sectionTitle::before {
        content: '';
        display: inline-block;
        width: 21px;
        height: 21px;
        margin-right: 22px;
        background-image: url("../images/sun.svg");
    }
}

/* pc-1024px */

/* =========================== 
header
===========================*/
header {
    width: 100%;
    margin: 0 auto;
    padding: 20px 6.4% 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(242, 237, 231, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.header__nav {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    max-width: 200px;
}

.nav__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* lang */
.lang__sp {
    position: relative;
}

.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--primary-beige);
}

.lang__mark {
    text-align: center;
}

.lang__img {
    width: 40px;
}

.langsp__box {}

.active .lang__changeSp1,
.active .lang__changeSp2 {
    visibility: initial;
    opacity: 1;
}

.lang__changeSp1,
.lang__changeSp2 {
    visibility: hidden;
    transition: 0.2s;
    opacity: 0;
    position: absolute;
    width: 100px;
    padding: 3%;
    left: -30px;
    text-align: center;
    border: 1px solid var(--primary-darkBrown);
    z-index: 1;
}

.lang__changeSp1 {
    top: 50px;
    left: -30px;
    background: var(--primary-darkBrown);
}

.lang__changeSp1 a {
    color: var(--primary-beige);
}

.lang__changeSp2 {
    top: 79px;
    left: -30px;
    background: var(--primary-beige);
}

.lang__changeSp2 a {
    display: block;
}

/*  */

.nav__menu {
    display: none;
}

.header__inner {
    display: block;
}

.lang__aria--sp {
    display: block;
}

/* ドロワーメニュー */
.hamburger {
    display: block;
    height: 60px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    width: 30px;
    border: none;
    background-color: transparent;
}

.logo__nav {
    z-index: 999;
    max-width: 200px;
    position: relative;
    top: -70px;
}

.hamburger.-active .hamburger__line {
    background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--primary-beige);
}

.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: var(--primary-beige);
}

.hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: var(--primary-darkBrown);
    transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: var(--primary-darkBrown);
    transition: inherit;
}

.hamburger__line:before {
    top: -6px;
}

.hamburger__line:after {
    top: 6px;
}

.hamburger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hamburger__text::before {
    content: "MENU";
    text-align: center;
    color: var(--primary-darkBrown);
    font-size: 1rem;
}

.nav__reserve {
    margin: 0 auto;
    padding: 20px;
    width: 230px;
    background-color: var(--primary-beige);
    display: flex;
    justify-content: center;
}

.nav__reserve::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 20px;
    margin-right: 8px;
    background-image: url("../images/calendar_btn_black.svg");
    background-repeat: no-repeat;
}

.nav__reserve a {
    font-weight: 600;
    line-height: 20px;
}

.header__nav-area {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    padding-top: 60px;
    background-color: var(--primary-darkBrown);
    transition: 0.4s;
}

.header__nav-area.-active {
    left: 0;
    visibility: visible;
}

.global-navigation {
    text-align: center;
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
}

.global-navigation__list {
    padding-top: 10%;
}

.global-navigation__list>li+li {
    margin-top: 40px;
}

.global-navigation__link {
    color: var(--primary-beige);
    transition: color 0.4s;
}

/* pc-1024px */
@media screen and (min-width:1024px) {
    .header {
        padding: 20px 2% 10px;
    }

    .sp__only {
        display: none;
    }

    .lang__sp {
        display: none;
    }

    .nav__menu {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav__list {
        display: flex;
        gap: 30px;
        list-style: none;
    }

    .nav__item {
        font-size: 1.5rem;
        border-bottom: 2px;
    }

    .nav__item a {
        position: relative;
    }

    .nav__item a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: var(--primary-darkBrown);
        bottom: -10px;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform 0.5s;
    }

    a:hover::after {
        transform: scale(1, 1);
        transform-origin: left top;
    }

    .lang__aria {
        position: relative;
        width: 140px;
        background-color: var(--primary-beige);
        cursor: pointer;
    }

    .lang__btn {
        display: inline-block;
        width: 100%;
        border: 1px solid var(--primary-darkBrown);
        text-align: center;
        padding: 3%;
    }

    .lang__btn p::before {
        content: '';
        position: absolute;
        top: 50%;
        margin-left: -30px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url("../images/material-symbols-light_language.svg")
    }

    .lang__btn p::after {
        content: '';
        position: absolute;
        top: 50%;
        margin-left: 15px;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background-image: url("../images/menu_triangle.svg")
    }

    .active .lang__change {
        visibility: initial;
        opacity: 1;
    }

    .active .lang__btn p::after {
        transform: rotate(180deg);
        top: 10px;
    }

    .lang__change {
        opacity: 0;
        visibility: hidden;
        transition: 0.2s;
        position: absolute;
        text-align: center;
        background: var(--primary-beige);
        border: 1px solid var(--primary-darkBrown);
        width: 100%;
        z-index: 1;
    }

    .lang__change a {
        display: block;
        padding: 3%;
    }

    .lang__change:hover,
    .lang__change a:hover {
        color: var(--primary-beige);
        background-color: var(--primary-brown);
        transition: 0.3s;
    }


    .header__inner {
        display: none;
    }

    /* メニューアイテムのホバースタイル */
    .menu-item:active .drop-menu-list {
        visibility: visible;
        /* 下層メニューを表示 */
    }

    .menu-item {
        position: relative;
        display: inline-block;
        border: 1px solid var(--primary-darkBrown);
        text-align: center;
        background-color: var(--primary-beige);
    }

    .menu-item a {
        align-items: center;
        color: var(--primary-darkBrown);
        /* メニューアイテム内のリンクテキストの色 */
        display: flex;
        height: 50px;
        justify-content: center;
        text-decoration: none;
        /* リンクの下線を非表示 */
        width: 200px;
    }

    .jp::before {
        content: '';
        position: absolute;
        top: 50%;
        margin-left: -90px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url("../images/material-symbols-light_language.svg")
    }

    /* ドロップダウンメニュー */
    .drop-menu {
        position: relative;
    }

    .drop-menu-list {
        background-color: var(--primary-beige);
        /* ドロップダウンメニューの背景色 */
        left: 0;
        position: absolute;
        top: 100%;
        visibility: hidden;
        /* 下層メニューを非表示 */
        width: max-content;
        z-index: 5;
    }

    .drop-menu-list:hover,
    .es:hover {
        background-color: var(--primary-darkBrown);
        color: #F2EDE7;
    }
}

/* =========================== 
reserve__btn
===========================*/
.reservButton__pc {
    display: none;
}

.reservButton__sp {
    display: block;
    position: fixed;
    width: 100%;
    background-color: var(--primary-darkBrown);
    text-align: center;
    padding: 20px 40px;
    bottom: 0;
    z-index: 5;
}

.reservButton__sp p {
    color: var(--primary-beige);
}

.reservButton__sp p:nth-of-type(1) {
    font-size: 2rem;
}

/* pc-1024px */
@media screen and (min-width:1024px) {
    .reservButton__sp {
        display: none;
    }

    .reservButton__pc {
        display: block;
        position: fixed;
        background-color: var(--primary-darkBrown);
        text-align: center;
        padding: 20px 40px 15px;
        border-radius: 12px 0px 0px 12px;
        bottom: 14%;
        right: 0px;
        border: 1px solid var(--primary-lightBeige);
        z-index: 10;
    }

    .reservButton__pc img {
        width: 65px;
    }

    .reservButton__pc:hover {
        background-color: var(--primary-brown);
        transition: 0.6s;
    }

    .reserveBtn__txt {
        margin-top: 10px;
        color: var(--primary-lightBeige);
    }
}

/* pc-1024px */

/* =========================== 
reserve__btn es
===========================*/
.reserveBtn__esBox {
    display: flex;
    position: fixed;
    justify-content: space-around;
    width: 100%;
    text-align: center;
    bottom: 0;
    z-index: 5;

    color: var(--primary-beige);
    background-color: var(--primary-darkBrown);
    width: 100%;
}

.reservButton__spEs {
    flex-grow: 1;
    flex-shrink: 1;
    color: var(--primary-beige);
    background-color: var(--primary-darkBrown);
    width: 100%;
    padding: 24px 20px;
    display: flex;
    justify-content: center;
}

.reservButton__spEs::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background-image: url(../images/calendar_btn_white.svg);
    background-repeat: no-repeat;
}

.es__line {
    border-right: solid 2px var(--primary-beige);
    flex-grow: 1;
    flex-shrink: 1;
    width: 50%;
}

.es__wa {
    flex-grow: 1;
    width: 50%;
    flex-shrink: 1;
}

.resever__titleEs {
    font-size: 2rem;
}

.reservButton__sp p:nth-of-type(1) {
    font-size: 2rem;
}

/* pc-1024px */
@media screen and (min-width:1024px) {
    .reserveBtn__esBox {
        display: none;
    }
}

/* =========================== 
reserver
===========================*/
.reserver {
    padding: 60px 6.4%;
    margin: 0 auto;
    background-color: var(--primary-white);
}

.reserver__head {
    text-align: center;
}

.sectionTitle--reserver {
    text-align: center;
}

.subTitle--reserver {
    text-align: center;
    padding-left: 0;
}

.reserver__text {
    margin-top: 40px;
}

.line__banner {
    max-width: 800px;
    margin: 40px auto 0;
}

.reserver__container {
    margin-top: 43px;
}


.reserver__container div img {
    width: 100%;
}

.reserver__discription {
    position: relative;
    padding-bottom: 40px;
}

.description__es {
    margin-top: 24px;
    color: var(--primary-brown);
}

.reserver__logo {
    max-width: 107px;
    display: inline;
}


.reserver__hours {
    margin-top: 40px;
}

.time__top {
    color: var(--primary-brown);
    margin-top: 24px;
}

.reserver__btn {
    display: flex;
    color: var(--primary-beige);
    background-color: var(--primary-darkBrown);
    padding: 30px;
    width: 300px;
    margin: 40px auto 0;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.reserver__btn span {
    font-size: 1.4rem;
}

.reserver__btn::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background-image: url(../images/calendar_btn_white.svg);
    background-repeat: no-repeat;
}

.reserver__btn:hover {
    color: var(--primary-beige);
    background-color: var(--primary-brown);
    transition: 0.4s;

}

/* es */
.esrebtn {
    font-size: 1.6rem;
    width: 300px;
    padding: 24px;
    align-items: flex-start
}

.esrecont {
    margin-top: 30px;
}

/* ipad-600px */
@media screen and (min-width:600px) {
    .reserver__container {
        display: flex;
        justify-content: center;
    }

    .reserver__discription {
        width: 800px;
    }

    .reserver__hours {
        padding: 4%;
        margin-top: 0;
    }
    /* es */
    .esrebtn {
        font-size: 1.6rem;
        width: 370px;
    }
    .esrecont {
        margin-top: 0px;
    }
}

/* ipad-600px */

/* pc-1024px*/
@media screen and (min-width:1024px) {
    .reserver {
        padding: 80px;
    }

    .reserver__logo {
        max-width: 200px;
    }

    .reserver__discription {
        padding: 5%;
    }
}

/* pc-1024px */


/* =========================== 
    reserver--es
===========================*/

/* pc-1024px*/
@media screen and (min-width:1024px) {

    .reserver__esButton {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        max-width: 700px;
    }
}


/* =========================== 
    footer
===========================*/
.footer {
    padding-top: 80px;
    margin: 0 auto;
}

.footer__info {
    padding: 0 6.4%;
}

.footer__logo {
    max-width: 322px;
    margin-bottom: 40px;
}

.footer__item {
    margin-bottom: 12px;
}

.footer__item:hover {
    color: var(--primary-brown);
}

.footer__column {
    position: relative;
    padding-bottom: 40px;
}

.footer__column::after {
    position: absolute;
    content: "";
    background-color: var(--primary-darkBrown);
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
}

.footer__access dt::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url("/assets/images/ph_map.svg");
    background-repeat: no-repeat;
}

.footer__hours {
    margin-top: 40px;
}

.footer__hour dt::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background-image: url("/assets/images/time.svg");
    background-repeat: no-repeat;
}

.footer__access dt,
.footer__hour dt {
    display: flex;
    align-items: center;
}

.footer__nav {
    background-color: var(--primary-white);
    padding: 40px 6.4%;
    margin-top: 60px;
}

.footer__list {
    text-align: left;
    margin-bottom: 60px;
}


.footer__mapUrl {
    text-decoration: underline;
}

.sns {
    display: flex;
    margin-top: 30px;
    gap: 10px;
}

.sns li {
    width: 23px;
}

.reserver__btn--footer {
    margin: 40px 0 0 0;
    display: flex;
    align-items: flex-end;
}

.copy {
    text-align: center;
}

/* pc-1024px */
@media screen and (min-width:1024px) {

    .footer__info {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 10%;
    }

    .footer__container {
        display: flex;
        justify-content: flex-start;
    }

    .footer__column {
        width: 50%;
        padding: 4% 4% 4% 0;
    }

    .footer__column::after {
        width: 1px;
        height: 100%;
        top: 0;
        left: 100%;
    }

    .footer__hours {
        padding: 4%;
        margin-top: 0;
    }

    .footer__nav {
        padding: 30px;
    }

    .footer__list {
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 0 auto 60px;
        gap: 4%;
        width: 80%;
    }
}

/* =========================== 
pagetitle
===========================*/
/* menu */
.pagetitle__container {
    content: '';
    width: 100%;
    background-image: url("../images/title-bg_sp.jpg");
    padding: 180px 6.4% 80px;
    background-size: cover;
}

.pageTitle__text {
    margin-top: 30px;
}

/* ipad-600px */
@media screen and (min-width:600px) {
    .sectionTitle--pagetitle {
        justify-content: flex-start;
    }
}

/* pc-1024px */
@media screen and (min-width:1024px) {
    .pagetitle__container {
        content: '';
        width: 100%;
        background-image: url("../images/title-bg_pc.jpg");
        padding: 180px 15.1% 80px;
    }
}


/* =========================== 
fade-in
===========================*/
.fade-in {
    opacity: 0;
    filter: blur(5px);
    transition: 1s;
}

.inview {
    opacity: 1;
    filter: blur(0);
}

.view {
    transform: translateY(30px);
    opacity: 0;
    transition: all .3s ease-in-out .3s;
}

.view.js-on {
    transform: translateY(0px);
    opacity: 1;
}