@charset "utf-8";

/* ------------------------------------
ｐｃ・タブレット・スマホ　共通のスタイル
------------------------------------ */

body {
    margin: 0;
    font-family: 'Georgia', serif;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
}

img {
    max-width: 100%;
}

.onlySP {
    display: block;
}

html,
body {
    overflow-x: hidden;
}

/* スライダー */

.slide-1 {
    background-image: url('../image/slide_1.webp');
}

.slide-2 {
    background-image: url('../image/slide_2.webp');
}

.slide-3 {
    background-image: url('../image/slide_3.webp');
}

.slide-4 {
    background-image: url('../image/slide_4.webp');
}


.slider {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    z-index: 1;
    /* メニューより下 */
    min-height: 100vh;
    height: auto;
}

.photo-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.index-page .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.index-page .slide.active {
    opacity: 1;
    z-index: 2;
    /* active スライドを上に */
}

/* 写真スライド */
.photo-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ロゴスライド */
.index-page .logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    /* ロゴは一番上 */
    animation: logoFade 3s forwards;
}

.index-page .logo-slide img {
    max-width: 400px;
    height: auto;
}

/* ロゴアニメーション */
@keyframes logoFade {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    /* 早めにフェードイン完了 */
    70% {
        opacity: 1;
    }

    /* 短めに表示 */
    100% {
        opacity: 0;
    }

    /* フェードアウト */
}


/* 3秒後に表示する */
body.index-page header h1 img,
body.index-page header .pc-nav,
body.index-page header .btn-menu {
    animation: hideNav 3s forwards;
}

@keyframes hideNav {

    0%,
    99% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}


/* ロゴ */
.index-page header h1 img {
    width: 120px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

header,
h1 {
    margin: 0;
    padding: 0;
}

/* ナビゲーション */
.pc-nav {
    /* display: flex; */
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: block;

}

.pc-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    transition: color 0.3s;
}

nav a:hover {
    color: #a9a9a8;
}

/* ハンバーガーメニュー非表示 */
.btn-menu,
.sp-nav {
    display: none;
}

.btn-menu {
    display: none;
    /* PCでは非表示にしたいならこれ */
    position: fixed;
    top: 1.5rem;
    right: 0.3rem;
    z-index: 100;
    opacity: 1;
    visibility: visible;
}

/* スマホ用ロゴ非表示 */
.menu-logo img {
    display: none;
}


/* main------------------------------------ */

h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 20px;
    font-weight: bold;
}

/* ABOUT---------------\------------------- */

.index-page .about {
    /* border: 3px solid #f00; */
    margin: 80px 0 30px 0;
}

.index-page .about_text {
    /* border: 3px solid #00f; */
    text-align: center;
    line-height: 2.5;
}

.index-page .about_title {
    /* border: 3px solid #f00; */
    position: relative;
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    line-height: 1.5;
    font-weight: bold;
}


.about_title::after {
    /* border: 3px solid #f00; */
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1.5px;
    background-color: #d19f68;
}

/* MENU------------------------------------ */

.menu {
    /* border: 3px solid #f00; */
    /* margin-top: 80px; */
    padding: 50px 0;
    /* background-color: #f7f7f5; */
    background-color: #f4f2f0;
}

.menu_title {
    position: relative;
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    line-height: 1.5;
}

.menu_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1.5px;
    background-color: #d19f68;
}

.price {
    /* border: 3px solid #ff0; */
    text-align: center;
}


/* container------------------------------- */

.container {
    /* border: 3px solid #f00; */
    display: flex;
    justify-content: space-evenly;
    padding: 80px 0;
}


/* 画像枠 */
.img-box {
    /* border: 3px solid #f00; */
    width: 100%;
    max-width: 350px;
    height: 350px;
    /* 画像枠の高さ */
    overflow: hidden;
    /* 枠内だけ表示 */
    margin-bottom: 20px;

}

/* 画像 */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;

}

/* ホバーでズーム */
.img-box img:hover {
    transform: scale(1.1);
}


/* タイトルとサブタイトルを横並びにする */
.heading {
    /* border: 3px solid #f00; */
    display: flex;
    align-items: baseline;
    /* h1 と小さい文字をきれいにそろえる */
    width: 350px;
    max-width: 100%;
    text-align: left;
    padding-left: 20px;
}

.subtitle {
    /* border: 3px solid #f0f; */
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

.reservation,
.access,
.product {
    /* border: 3px solid #f00; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index-page .button {
    /* border: 3px solid #f00; */
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #d19f68;
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.button span {
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.button span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #000;
    transition: width 0.3s;
}

.button:hover span::after {
    width: 100%;
}

.container h2 {
    /* border: 3px solid #f00; */
    position: relative;
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    line-height: 1.5;
    font-weight: bold;
}

.container h2::after {
    /* border: 3px solid #00f; */
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1.5px;
    background-color: #d19f68;

}

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

footer {
    /* border: 3px solid #f00; */
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
    width: 100%;

}

footer .foot-logo img {
    /* border: 3px solid #0f0; */
    display: block;
    width: 130px;
    margin: 0 auto 20px;
}

.address {
    text-align: center;
    /* 全体を中央寄せ */
}

.address-link {
    align-items: center;
    gap: 6px;
    color: #fff;
    display: inline-block;
}

.address-link img {
    width: 18px;
    height: auto;
}

footer p {
    /* border: 3px solid #00f; */
    text-align: center;
    color: #fff;
}

.footer_container {
    /* border: 3px solid #f00; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}


footer span {
    /* border: 3px solid #0ff; */
    color: #d19f68;
    border: 1px solid #d19f68;
    padding: 10px;

}

.footer_container a:not(a:nth-child(3)) {
    text-decoration-color: #d19f68;
    /* border: 3px solid #f00; */
    text-decoration: none;
}


.footer_container img {
    /* border: 3px solid #0f0; */
    /* align-items: center; */
    padding-top: 10px;
    width: 40px;
}

footer small {
    /* border: 3px solid #f00; */
    display: block;
    text-align: center;
    /* padding: 10px; */
}


/* ACCSESS page------------------------------------- */

.access-page .page-header {
    /* border: 3px solid #00f; */
    height: 450px;
    background: url("../image/access_top.webp") no-repeat center top;
    background-size: cover;
    position: relative;
    padding-bottom: 30px;

}

.access-page .page-header>p {
    /* border: 3px solid #f00; */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.access-page header .pc-nav {
    /* border: 3px solid #f00; */
    top: 100px;
}

.access-page header h1 img {
    width: 120px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.access-page main {
    /* border: 3px solid #00f; */
    padding: 0 20px;
}

.access-page h2 {
    /* border: 3px solid #00f; */
    margin: 80px 0 20px 80px;
    padding-left: 3px;
    border-left: 8px solid #d19f68;
}

.access-page .shopinfo {
    /* border: 3px solid #f00; */
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
}

.access-page .shopinfo img {
    /* border: 3px solid #00f; */
    width: auto;
    max-width: 28%;
    height: auto;
    padding-left: 80px;
    margin-right: 200px;
    flex-shrink: 0;
    /* 画像が縮まないように */
}

.access-page .shopinfo-detail {
    /* border: 3px solid #0f0; */
    flex-grow: 1;
    margin: 0;
}

.access-page table {
    /* border: 3px solid #f00;   */
    width: 90%;
    margin-top: 50px;
    border-collapse: collapse;
}

.access-page th,
td {
    /* border: 3px solid #00f; */
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.access-page th {
    /* border: 3px solid #0f0; */
    width: 30%;
    font-weight: bold;
}

.access-page .onlySP {
    display: none;
}

/* アクセスページの予約 */
.access-page .info_reservation {
    /* border: 3px solid #0ff; */
    display: flex;
    margin-top: 50px;
    text-align: left;
}

.access-page .info_reservation p {
    /* border: 3px solid #f00; */
    font-weight: bold;
    /* font-size: 17px; */
    margin: 0;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;

}

.access-page .info_reservation a {
    /* border: 3px solid #ff0; */
    display: inline-block;
    margin: 0 15px;
    padding: 12px 15px;
    background-color: #d19f68;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.access-page .info_reservation a:nth-last-of-type(2) {
    /* border: 3px solid #0f0; */
    margin-left: 40px;
}


.access-page .info_reservation a:hover {
    background-color: #000;
    color: #fff;
}


/* 地図 */
.access-page .map {
    /* border: 1px solid #f00; */
    margin: 30px 0 80px 0;
}

.access-page .map iframe {
    /* border: 3px solid #f00; */
    filter: grayscale(100%);
    /* 地図白黒 */
    width: 90%;
    height: 500px;
    display: block;
    margin: 0 auto;
}

/* PRODUCT PAGE---------------------------- */

.product-page .page-header {
    /* border: 3px solid #00f; */
    height: 450px;
    background: url("../image/product_top.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    padding-bottom: 30px;

}

.product-page .page-header>p {
    /* border: 3px solid #f00; */
    color: #fff;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.1rem;
}

.product-page header h1 img {
    width: 120px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.product-page header .pc-nav {
    /* border: 3px solid #f00; */
    top: 100px;
}

.product-page .bland_wrap {
    /* border: 3px solid #f00; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
    margin: 50px auto;
    padding: 50px 0;
}

/* 見出しのスライドアニメーション */

.product-page .bland_img {
    width: 320px;
    height: auto;
}

.product-page .bland_img img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 3.8s ease-out;
}

.product-page .bland_img img.show {
    opacity: 1;
}

.product-page .bland_text {
    flex: 1;
    /* 残りの幅をテキストに使う */
    font-size: 16px;
}


.product-page .bland_text h2 {
    border-bottom: 2px solid #d19f68;
    padding-bottom: 1px;
    display: inline-block;

}

.product-page .bland_wrap a {
    /* border: 3px solid #f00; */
    order: 4;
    margin-top: 0;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    display: inline-block;
}

.product-page p:last-child {
    /* border: 3px solid #f00; */
    text-align: center;
    /* font-weight: bold; */
    margin-bottom: 50px;
}

.product-page .onlySP {
    display: none;
}


/* RESERVATION PAGE---------------------- */

.reservation-page .page-header {
    /* border: 3px solid #00f; */
    height: 450px;
    background: url("../image/reservation_top.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    padding-bottom: 30px;

}

.reservation-page .page-header>p {
    /* border: 3px solid #f00; */
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.1rem;
}

.reservation-page header h1 img {
    width: 120px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.reservation-page header .pc-nav {
    /* border: 3px solid #f00; */
    top: 100px;
}

.reservation-page main {
    /* border: 3px solid #f00; */
    padding: 50px 0;
}

.reservation-page main .reveal-text {
    font-size: 17px;
    font-weight: bold;
    /* border-bottom: 2px solid #d19f68; */
    padding-bottom: 1px;
    width: fit-content;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reservation-page .reveal-text,
.reservation-page .reveal-text::after {
    animation-delay: var(--animation-delay, 2s);
    animation-iteration-count: var(--iterations, 1);
    animation-duration: var(--duration, 800ms);
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reservation-page .reveal-text {
    --animation-delay: var(--delay, 0);
    --animation-duration: var(--duration, 800ms);
    --animation-iterations: var(--iterations, 1);
    position: relative;
    font-size: 17px;
    animation-name: clip-text;
    color: #000;
    white-space: nowrap;
    cursor: default;

    &::after {
        content: "";
        position: absolute;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #d19f68;
        transform: scaleX(0);
        transform-origin: 0 50%;
        pointer-events: none;
        animation-name: text-revealer;
    }
}

@keyframes clip-text {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes text-revealer {

    0%,
    50% {
        transform-origin: 0 50%;
    }

    60%,
    100% {
        transform-origin: 100% 50%;
    }


    60% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

.reservation-page form {
    /* border: 3px solid #f00; */
    padding: 20px;
    max-width: 500px;
    margin: auto;
}

.reservation-page h2 {
    text-align: center;
    font-size: 20px;
}

.reservation-page label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.reservation-page input,
.reservation-page textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    /* border-radius: 5px; */
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.reservation-page textarea {
    resize: vertical;
}

.reservation-page .submit-btn {
    /* border: 3px solid #f00; */
    margin: 20px auto 0;
    /* 上20px、左右autoで中央寄せ */
    padding: 12px;
    width: 50%;
    /* 幅50% */
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    text-align: center;
    /* インライン要素をブロックにして中央寄せ可能に */
}

.reservation-page button:hover {
    background-color: #ccc;
}

.reservation-page .reserbation_form a {
    /* border: 3px solid #f00; */
    color: #000;
    text-decoration: underline;
    /* border-bottom: 1px solid #000; */
    padding-bottom: 1px;
    display: inline-block;
    margin: 20px auto;
    text-align: center;
    display: block;
    width: fit-content;
    /* ☆☆コンテンツの幅に合わせたサイズを指定 */
}

.reservation-page main p:nth-of-type(2) {
    /* border: 3px solid #f00; */
    width: 45%;
    margin: 0 auto;
    padding-left: 40px;
    margin-bottom: 40px;
}

.reservation-page .line {
    /* border: 3px solid #0f0; */
    background-color: #d19f68;
    color: #000;
    text-align: center;
    font-weight: bold;
    display: block;
    padding: 15px;
    width: 160px;
    margin: 10px auto 30px;
}


/* POLICY PAGE----------------------------- */

.policy-page .page-header {
    /* border: 3px solid #00f; */
    height: 450px;
    background: url("../image/policy_top.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    padding-bottom: 30px;

}

.policy-page .page-header>p {
    /* border: 3px solid #f00; */
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.1rem;
}

.policy-page header h1 img {
    width: 120px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.policy-page header .pc-nav {
    /* border: 3px solid #f00; */
    top: 100px;
}

.policy-page main {
    /* border: 3px solid #f00; */
    padding: 50px 0;
}

.policy-page .privacy,
.cancel {
    /* border: 3px solid #f00; */
    /* text-align: center; */
    width: 80%;
    margin: 0 auto;
    padding-left: 300px;
}

.policy-page .privacy {
    /* border: 3px solid #00f; */
    margin-bottom: 30px;
}

.policy-page.numbered-list {
    list-style-type: decimal !important;
}

.policy-page .onlySP {
    display: none;
}

.policy-page .onlyPC {
    display: block;
}

/* 送信完了ページ--------------------------------- */

.complete-page main {
    /* border: 3px solid #f00; */
    margin: 50px 0;
}


.complete-page main img:first-child {
    /* border: 3px solid #f00; */
    width: 400px;
    margin: 0 auto;
    display: block;
    margin-bottom: 50px;
}

.complete-page main img:nth-child(2) {
    /* border: 3px solid #00f; */
    width: 150px;
    height: auto;
    margin: 0 auto;
    display: block;
}


.complete-page main h2 {
    /* border: 3px solid #f00; */
    text-align: center;
    position: relative;
}

.complete-page main h2::after {
    /* border: 3px solid #f00; */
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1.5px;
    background-color: #d19f68;
}

.complete-page main p {
    /* border: 3px solid #00f; */
    text-align: center;
}

.complete-page main a {
    /* border: 3px solid #00f; */
    display: block;
    width: 150px;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    margin: 50px auto 0;

}



/* ------------------------
      スマホのスタイル
---------------------------- */

@media screen and (max-width:768px) {

    header {
        position: relative;
        height: 100vh;
    }

    .slide-1 {
        background-image: url('../image/sp_slide_1.webp');
    }

    .slide-2 {
        background-image: url('../image/sp_slide_2.webp');
    }

    .slide-3 {
        background-image: url('../image/sp_slide_3.webp');
    }

    .slide-4 {
        background-image: url('../image/sp_slide_4.webp');
    }

    header h1 img {
        /* border: 3px solid #f00; */
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        z-index: 50;
        width: 150px;
    }

    .logo-slide img {
        /* border: 3px solid #f00; */
        width: 300px;
    }


    /* ハンバーガーメニュー-------------------- */

    .pc-nav {
        display: none;
    }

    .btn-menu,
    .sp-nav {
        display: block;
    }

    .btn-menu {
        /* border: 3px solid #f00; */
        position: fixed;
        right: 0.3rem;
        top: 1.5rem;
        z-index: 100;
        display: block;
        background: none;
        border: none;
    }

    #menu-panel {
        /* border: 3px solid #00f; */
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #000;
        z-index: 100;
        transform: translateX(100%);
        transition: transform 0.5s ease;

    }

    .btn-menu svg {
        stroke-width: 1;
        color: white;

    }

    /* 表示するときのクラス */
    #menu-panel.open {
        transform: translateX(0);
    }


    .menu-logo img {
        /* border: 3px solid #f00; */
        display: block;
        width: 120px;
        margin: 50px auto 80px;

    }

    .sp-nav ul {
        display: block;
        margin: 0;
        padding: 0;
    }

    .sp-nav ul li {
        /* border: 3px solid #00f; */
        padding: 0;
        margin: 1.5rem 0;
        list-style-type: none;
        opacity: 0;
        transform: translateY(20px);
    }

    #menu-panel.open .sp-nav ul li {
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    .sp-nav ul a {
        /* border: 3px solid #f00; */
        display: flex;
        /* display: block; */
        flex-direction: column;
        align-items: center;
        font-size: 1.3rem;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        margin-bottom: 30px;
        /* display: inline-block; */
    }

    .sp-nav .en,
    .sp-nav .jp {
        display: block;
        /* ← これがポイント！ */
        line-height: 1.4;
        white-space: normal;
    }

    .sp-nav ul a .en {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .sp-nav ul a .jp {
        font-size: 0.8rem;
        color: #ccc;
        line-height: 1.2;
        margin-top: 0.3rem;
    }

    /*スマホ main--------------------------------- */

    /*スマホ about-------------------------------- */

    .about {
        margin-top: 50px;
        padding-bottom: 30px;
    }

    .about_text {
        /* border: 3px solid #f00; */
        font-size: 12px;
        line-height: 2;
        width: 80%;
        margin: 0 auto;
    }

    .nowrap {
        white-space: nowrap;
    }



    /*スマホmenu--------------------------------- */

    .menu {
        padding: 30px 0;
    }

    .menu h2 {
        padding-top: 0;
    }

    .price p {
        /* border: 3px solid #f00; */
        font-size: 13px;
    }

    /*スマホ container------------------------------ */

    .container {
        /* border: 3px solid #f00; */
        display: block;
        padding: 30px;
    }

    .img-box {
        width: 90%;
        /* ←ここで上書き */
        height: auto;
        /* 高さ固定を外すとアスペクト比も維持できる */
    }

    .img-box img {
        width: 100%;
        height: auto;
        /* coverではなく比率そのままにしたい場合 */
    }


    .heading {
        /* border: 3px solid #f00; */
        padding-bottom: 0;
        margin-top: 10px;
    }

    .heading h2 {
        /* border: 3px solid #00f; */
        font-size: 16px;
    }

    .reservation,
    .access,
    .product {
        /* border: 3px solid #f00; */
        margin-bottom: 30px;
    }


    /*スマホ　footer--------------------------------- */

    footer img {
        /* border: 3px solid #f00; */
        width: 120px;

    }

    .footer_container {
        /* border: 3px solid #f00; */
        display: flex;
        /* flexのまま使う */
        flex-direction: column;
        /* 縦並び */
        align-items: center;
        /* 横方向中央寄せ */
        gap: 15px;
        padding-top: 20px;
        margin-bottom: 0;
    }

    .footer_container a {
        /* border: 3px solid #f00; */
        display: block;
        margin-bottom: 18px;
        text-align: center;
    }


    /*スマホ access page----------------------------- */

    .access-page .page-header p {
        /* border: 3px solid #f00; */
        width: 100%;
        font-size: 30px;
        text-align: center;
        font-weight: bold;
    }

    .access-page h2 {
        /* border: 3px solid #00f; */
        margin-left: 20px;
        border-left: 5px solid #d19f68;
        font-size: 20px;
    }

    .access-page .shopinfo {
        /* border: 3px solid #f00; */
        display: block;
        flex-direction: column;
        /* 縦並びに */
        align-items: center;
        /* 中央寄せ */
        margin-bottom: 0;
    }

    .access-page .shopinfo img {
        /* border: 3px solid #00f; */
        width: 90%;
        max-width: 450px;
        padding-left: 0;
        display: block;
        margin: 0 auto;
    }

    .access-page .shopinfo-detail {
        /* border: 3px solid #00f; */
        width: 90%;
        margin: 20px auto;
    }

    .access-page table {
        /* border: 3px solid #f00; */
        width: 100%;
        margin-top: 0;
    }

    .access-page .onlySP {
        display: block;
    }

    .access-page .info_reservation {
        /* border: 3px solid #0f0; */
        width: 100%;
        display: block;
        margin-top: 30px;
    }

    .access-page .info_reservation p {
        /* border: 3px solid #f00; */
        text-align: center;
    }

    .access-page .info_reservation a {
        /* border: 3px solid #0ff; */
        display: block;
        width: 70%;
        margin: 0 auto;
        margin-bottom: 20px;
        text-align: center;
        padding: 12px 5px;
    }

    .access-page .map iframe {
        /* border: 3px solid #f00; */
        width: 90%;
        height: 300px;
        margin-bottom: 20px;
    }

    /*スマホ PRODUCT PAGE---------------------- */

    .product-page .bland_wrap {
        /* border: 3px solid #f00; */
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0;
        /* margin-top: 0; */
    }

    .product-page .bland_img,
    .product-page .bland_text {
        /* border: 3px solid #ff0; */
        display: contents;
    }

    .product-page .bland_wrap h2 {
        /* border: 3px solid #f00; */
        width: 90%;
        font-size: 18px;
        order: 1;
        width: fit-content;
    }

    .product-page .bland_wrap img {
        /* border: 3px solid #00f; */
        order: 2;
    }

    .product-page .bland_text p {
        /* border: 3px solid #f00; */
        order: 3;
        width: 80%;
        text-align: left;
        margin: 0;
    }

    .product-page .bland_img img {
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
    }

    .product-page .onlySP {
        display: block;
    }

    /*スマホ  RESERVATION PAGE---------------------- */

    .reservation-page .page-header>p {
        /* border: 3px solid #f00; */
        font-size: 30px;

    }

    .reservation-page main p:nth-of-type(2) {
        /* border: 3px solid #f00; */
        width: 90%;
        margin: 0 auto;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .reservation-page .reserbation_form {
        /* border: 3px solid #f00; */
        width: 90%;
        margin: 0 auto;
    }


    /*スマホ POLICY PAGE---------------------- */

    .policy-page .page-header>p {
        /* border: 3px solid #f00; */
        width: 100%;
        font-size: 30px;
        text-align: center;
    }

    .policy-page main {
        padding: 0;
    }


    .policy-page .privacy,
    .cancel {
        /* border: 3px solid #f00; */
        font-size: 15px;
        width: 90%;
        padding-left: 20px;
        margin: 50px 0 30px 0;
    }

    .policy-page .onlySP {
        /* border: 3px solid #f00; */
        display: block;
    }

    .policy-page .onlyPC {
        display: none;
    }


    /* スマホ　送信完了ページ----------------------- */

    .complete-page main img {
        /* border: 3px solid #f00; */
        width: 300px;
    }

    .complete-page main p {
        /* border: 3px solid #00f; */
        /* padding: 0 30px; */
        font-size: 14px;
        text-align: center;
    }

    .complete-page main .thenks {
        /* border: 1px solid #f00; */
        width: 90%;
        margin: 0 auto;
    }

    .complete-page main img:first-child {
        /* border: 3px solid #f00; */
        width: 300px;
        margin-bottom: 30px;

    }

    .complete-page main img:nth-child(2) {
        /* border: 3px solid #00f; */
        width: 100px;
        margin-bottom: 30px;
    }

    .complete-page main p {
        /* border: 3px solid #f00; */
        width: 90%;
        margin: 0 auto;
    }

}

/* (max-width:768px) end */



/* ------------------------
    タブレットの縦スタイル
---------------------------- */

@media (min-width: 600px) and (max-width: 1024px) {

    /* タブレット横 access page------------------------- */

    .menu-logo img {
        /* border: 3px solid #f00; */
        width: 200px;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .sp-nav ul a {
        /* border: 3px solid #f00;     */
        margin-bottom: 35px;
    }

    .sp-nav ul a .en {
        /* border: 3px solid #0f0; */
        font-size: 2.0rem;
    }

    .sp-nav ul a .jp {
        /* border: 3px solid #00f; */
        font-size: 1.4rem;
    }




    /* タブレット縦 access page------------------------- */

    .access-page .info_reservation {
        /* border: 3px solid #f00; */
        text-align: center;
    }

    .access-page .info_reservation p {
        /* border: 3px solid #f00; */
        font-size: 15px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .access-page .info_reservation a {
        /* border: 3px solid #ff0; */
        font-size: 15px;
        width: 200px;
        padding: 15px 10px;
        margin: 0 auto;
        display: inline-block;
    }

    .access-page .info_reservation a:nth-last-of-type(1) {
        /* border: 3px solid #f00; */
        margin-left: 40px;
        margin-top: 10px;
    }

    /* タブレット縦 policy page------------------------- */

    .policy-page main {
        /* border: 3px solid #f00; */
        margin: 50px 0;
    }

    .policy-page .privacy,
    .cancel {
        /* border: 3px solid #f00; */
        margin: 0 auto;
    }

}

/* (min-width: 600px) and (max-width: 1024px) end */



/* ------------------------
    タブレットの横スタイル
---------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {

    /* タブレット横 index page------------------------- */

    .container {
        /* border: 3px solid #f00; */
        /* flex-wrap: wrap; */
        justify-content: space-evenly;
        gap: 20px;
        padding: 80px 0px;

    }

    .img-box {
        /* border: 3px solid #00f; */
        max-width: 300px;
        height: 300px;
        /* flex-basis: 30%; */

    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .heading {
        /* border: 3px solid #f00; */
        align-items: baseline;
        width: 300px;
        max-width: 100%;
        text-align: left;
        padding-left: 20px;
    }

    /* タブレット横 access page------------------------- */

    .access-page .shopinfo img {
        /* border: 3px solid #00f; */
        max-width: 40%;
        width: 100%;
        height: auto;
        padding-left: 50px;
        margin-right: 110px;
    }

    .access-page h2 {
        /* border: 3px solid #f00; */
        margin-left: 48px;
    }

    .access-page .shopinfo-detail {
        /* border: 3px solid #f00; */
        max-width: 50%;
        margin-top: 0;
        margin-right: 30px;
        /* padding-top: 0; */
        margin-top: 0;
    }

    .access-page table {
        /* border: 3px solid #0f0; */
        margin-top: 0;
    }


    /* アクセスページの予約 */
    .access-page .info_reservation {
        /* border: 3px solid #0ff; */
        margin-top: 30px;
        display: block;
    }

    .access-page .info_reservation p {
        /* border: 3px solid #f00; */
        font-size: 14px;
        width: 100px;
        margin-left: 10px;
    }

    .access-page .info_reservation a {
        /* border: 3px solid #ff0; */
        padding: 13px 10px;
        font-size: 13px;
        margin-bottom: 10px;
        text-align: center;
        display: block;
        margin-left: 0;
    }

    /* タブレット横 policy page------------------------ */

    .policy-page .privacy,
    .cancel {
        /* border: 3px solid #f00; */
        padding-left: 100px;
    }

}

/* (min-width: 1024px) and (max-width: 1280px) end */