@charset "utf-8";

:root {
    --brown: #562806;
    --text-color: #392200;
    --black: #000000;
    --white: #fff;
    --trans-white: rgba(255, 255, 255, 0.76);
    --red: #FF3700;
    --red2: #FF5D27;
    --red3: #FFC4A0;
    --green: #10B972;
    --gray: #EEEEEE;
}

html,
body {
    font-family: "honoka-maru-gothic", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
    font-style: normal;
    letter-spacing: 0.1em;
    color: var(--brown);
    overflow-x: clip;
}

body::after {
    background-image: url("../images/common-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: bold;
    font-style: normal;
}

a {
    color: #5E3505;
    text-decoration: none !important;
    transition: all 0.3s;
}

a:hover {
    color: #E43905 !important;
    cursor: pointer;
}

a img {
    transition: transform 0.3s ease;
}

a:hover img {
    transform: scale(1.05);
}


/* フォント */

.fuga {
    font-family: "ta-fuga-fude", sans-serif;
}

.honoka {
    font-family: "honoka-maru-gothic", sans-serif;
}

.iroha {
    font-family: "irohamaru", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.yuji {
    font-family: "Yuji Syuku", serif;
}

.zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.yu {
    font-family: "yu-mincho-pr6n", sans-serif;
}

.hira {
    font-family: "hiragino-mincho-pron", sans-serif;
}

.fc-white {
    color: var(--white) !important;
}

.fc-beige {
    color: #FFF9EC !important;
}

.fc-brown {
    color: var(--brown) !important;
}

.fc-red {
    color: var(--red) !important;
}

.fc-red2 {
    color: var(--red2) !important;
}

.fc-green {
    color: var(--green) !important;
}

.v-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.m-v-text {
    display: flex;
    flex-direction: column;

}

.m-v-text a p {
    margin: 0;
    padding: 0;
    writing-mode: horizontal-tb;
    align-items: center;
    text-align: center;
}

@media (min-width: 992px) {
    .m-v-text {
        flex-direction: row-reverse;

    }

    .m-v-text a p {
        writing-mode: vertical-rl;
        text-orientation: upright;
        white-space: nowrap;
        letter-spacing: 0.3em;
    }
}

.f-v-text {
    display: flex;
    flex-direction: column;

}

.f-v-text a p {
    margin: 0;
    padding: 0;
    writing-mode: horizontal-tb;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .f-v-text {
        flex-direction: row-reverse;

    }

    .f-v-text a p {
        writing-mode: vertical-rl;
        text-orientation: upright;
        white-space: nowrap;
        letter-spacing: 0.3em;
    }
}

.text-shadow {
    text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
    text-shadow: 2px 2px 5px white;
}

.has-shadow {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
    background-color: #FFF;
}

.bg-brown {
    background-color: #726030;
}

.bg-yellow {
    background-color: #FFF3CE;
}

.bg-red {
    background-color: var(--red3);
}

.bg-red2 {
    background-color: var(--red2);
}

.bg-beige-1 {
    background-color: rgba(242, 203, 76, 0.21);
}

.bg-beige-2 {
    background-color: rgba(190, 135, 16, 0.15);
}



/*罫線*/
.b-brown {
    border: 1px solid #5E3505;
}

.b-red {
    border: 1px solid var(--red2);
}

.bl-brown {
    border-left: 1px solid #5E3505;
}

.br-brown {
    border-right: 1px solid #5E3505;
}

.bb-brown {
    border-bottom: 1px solid #5E3505;
}

.bt-brown {
    border-top: 1px solid #5E3505;
}

/* ボタン */

.img-button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    max-width: 300px;
}

.img-button img {
    display: block;
    transition: transform 0.3s ease;
}

.img-button:hover img {
    transform: scale(1.05);
}


.button {
    position: relative;
    display: inline-flex !important;
    background-color: #E43905;
    color: #FFF;
    width: 180px;
    height: 45px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.button::after {
    content: "";
    width: 24px;
    height: 8px;
    background-image: url(../images/arrow.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.button:hover {
    background-color: #5E3505;
}

.button:hover::after {
    right: 6px;
}

.button p {
    color: #FFF9EC;
    font-family: "Yuji Syuku", serif;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}

.button.is-free {
    width: auto;
    padding: 0 36px;
}

/* ナビ */

.a-nav-menu {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 900;
    transition: all 0.3s;
    background-image: url("../images/common-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.a-nav-menu.edit {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.a-nav-menu.is-active {
    opacity: 1;
    pointer-events: auto;
}

.a-na-menu a p {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.a-nav-menu a:hover p {
    color: var(--red);
}

.top-logo {
    position: fixed;
    z-index: 800;
    top: 20px;
    left: 30px;
    max-width: 80px;

}

.nav-button-posi {
    position: fixed;
    z-index: 800;
    top: 20px;
    right: 100px;
}

.a-nav-sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 800;
    padding: 10px;
    background-image: url("../images/header-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.sp-top-logo {
    max-width: 120px;
    height: auto;
}

.nav-logo {
    max-width: 160px;
}

.reserve-button {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 142px;
    transition: all 0.3s;
    transform-origin: right;
    z-index: 700;
}

.reserve-button:hover {
    transform: scale(1.05);
}

.a-burger {
    position: fixed;
    z-index: 950;
    cursor: pointer;
    margin: 0;
    padding: 0;
    right: 15px;
    top: 30px;
    width: 100px;
    /* 必要に応じて */
    height: 120px;
}

/* 2枚重ねる */
.a-burger img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.6s;
    pointer-events: none;
    /* img自体にクリック当てない */
}

.burger-close {
    opacity: 0;
}

.a-burger.is-open .burger-default {
    opacity: 0;
}

.a-burger.is-open .burger-close {
    opacity: 1;
}

.nav-tel-link {
    max-width: 200px;
}

/* フッター */

.foot-logo {
    max-width: 220px;
}

.foot-insta {
    width: 26px;
}

@media (min-width: 768px) {
    .foot-logo {
        max-width: 250px;
    }
}

/* News表示 */

/* News表示 画像あり版 */
.news-list .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.news-list .webgene-item {
    width: 100%;
}

@media (min-width: 768px) {
    .news-list .webgene-item {
        width: 48%;
    }
}

/* ページネーション共通 */
.webgene-pagination {
    width: 100%;
}

.webgene-pagination ul,
.pagelink {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 5rem;
}

.webgene-pagination ul li,
.pagelink p {
    padding: 0 1rem;
}

.webgene-pagination ul li a,
.pagelink p a {
    display: inline-flex !important;
    font-family: "hiragino-mincho-pron", serif;
    width: 230px;
    height: 50px;
    padding: 15px 22px !important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border: 1px solid #FFF;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.20)
}

/* Nextボタン */
.webgene-pagination li.next a::after,
.pagelink p.next a::after {
    content: "";
    display: block;
    width: 33px;
    height: 7px;
    background-image: url("../images/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.webgene-pagination ul li.next a:hover::after,
.pagelink p.next a:hover::after {
    transform: translateX(2px);
}

/* Prevボタン */
.webgene-pagination ul li.prev a::before,
.pagelink p.prev a::before {
    content: "";
    display: block;
    width: 33px;
    height: 7px;
    background-image: url("../images/arrow-prev.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.webgene-pagination ul li.prev a:hover::before,
.pagelink p.prev a:hover::after {
    transform: translateX(-2px);
}



/* フォーム */
.formInput,
.formTextArea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;
    margin-bottom: 2rem;
}

.formTextArea {
    height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;

}

.zipInput {
    width: 6rem;
}

@media (min-width:768px) {
    .formTh {
        padding-left: 2rem;
    }
}

.requiredText {
    background-color: #A3987C;
    color: #FFF;
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-left: 1rem;
}

.privacyformError {
    padding-top: 25px;
}

@media (min-width:768px) {
    .privacyformError {
        padding-top: 0;
    }
}

/* ページ共通設定 */


.fv {
    height: 68vh;
    margin-top: 50px;
}

@media (min-width:768px) {
    .fv {
        height: 80vh;
    }
}

@media (min-width:1200px) {
    .fv {
        height: 100vh;
    }
}


.fv-text-wrap {
    position: absolute;
    top: 20%;
    left: 5%;
    display: inline-block;
    text-align: center;
    width: 74vw;
}

@media (min-width:768px) {
    .fv-text-wrap {
        top: 10%;
        left: 5%;
        width: 65vw;
    }
}

@media (min-width:1200px) {
    .fv-text-wrap {
        top: 10%;
        left: 5%;
        width: 50vw;
    }
}

.fv-textbg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.fv-text-posi {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.v-title-lh {
    letter-spacing: 0.3em;
}

.v-title-sub {
    max-width: 15px;
}

.r-20 {
    border-radius: 20px;
}

.r-5 {
    border-radius: 5px;
}

.r-tr-20 {
    border-radius: 0 20px 0 0;
}

.img-fit {
    max-width: 100% !important;
    max-height: 100% !important;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* スライダー用 */

.slider-wrap {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 30px;
    /* ← 余白は gap にすべき */
    width: max-content;
    /* これが重要。 */
}

.slide {
    flex-shrink: 0;
    width: 260px;
}

@media (min-width:768px) {
    .slide {
        flex-shrink: 0;
        width: 400px;
    }
}

/* プラシバシーポリシー */
.policy-box {
    overflow-y: scroll;
    height: 400px;
    border-radius: 30px;
}

/* top */

/* .loader表示中はhtml/bodyのスクロール禁止 */
html:has(.loading),
body:has(.loading) {
   /* overflow: hidden; */
}

.loading {
    background-color: #ece8df;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loading.fadeout {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

/* HTML: <div class="loader"></div> */
.loader {
    margin-top: 1rem;
    width: 30px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 3px;
    background:
        radial-gradient(farthest-side, #cb6a52 95%, #0000) 50% 0/12px 12px no-repeat,
        radial-gradient(farthest-side, #0000 calc(100% - 5px), #cb6a52 calc(100% - 4px)) content-box;
    animation: l6 2s infinite;
}

@keyframes l6 {
    to {
        transform: rotate(1turn)
    }
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
    z-index: 1000;
}

.top-header.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.top-fv-height {
    position: relative;
    height: 400vh;
}

.top-fv-img {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}

.noren {
    z-index: 100;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

.noren-left {
    transform-origin: right top;
    /* 右上を支点に */
    will-change: transform, opacity;
}

.noren-right {
    transform-origin: left top;
    /* 左上を支点に */
    will-change: transform, opacity;
}

.top-fv-text {
    position: sticky;
    z-index: 25;
    left: 0;
    top: 0;
}

/* コンセプト */


.con-sec3-img {
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

@media (min-width:768px) {
    .con-sec3-img {
        height: auto;
    }
}

.con-sec3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ← ポイント */
}

/* 楽しみ方　*/

.scene-sec3-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.scene-sec3-deco1 {
    width: 30vw;
    height: auto;
    display: block;
}

@media (min-width:768px) {
    .scene-sec3-deco1 {
        width: 15vw;
        height: auto;
        display: block;
    }
}

.scene-sec3-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 真ん中 */
    text-align: center;
}

.scene-no {
    max-height: 120px;
    width: auto;
}

@media (min-width:768px) {
    .scene-no {
        max-height: 100%;
        width: 100%;
    }
}

/* コース料理 */

.badge-course {
    position: static;
    display: block;
    margin-top: 10px;
}

@media (min-width:992px) {
    .badge-course {
        position: absolute;
        bottom: 0px;
        left: 0px;
    }
}