:root {
    --width-max: 1024px;
    --width-narrow: 860px;

    --color-black: #1c1c1c;
    --color-gray: #7d7d7d;
    --color-white: #ffffff;
    --color-beige: #f3f1e1;
    --color-ivory: #f0f3f3;

    --color-mute-grey: #e6e4e4;
    --color-bluege: #2d363b;
}

a {
    text-decoration: none;
    color: var(--color-black);
    transition: opacity 0.1s linear;
}

a:hover {
    opacity: 0.7;
}

/* margin */
.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;

}

/* font */
.bodoni {
    font-family: 'bodoni-pt-variable', serif;
}

.bodoni.--bold {
    font-weight: 900;
}

.noto-sans {
    font-family: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
}

svg {
    overflow-x: visible;
    overflow-y: visible;
    display: inline-block;
}

img {
    caret-color: transparent;
    display: block;
    width: 100%;
}

figure {
    overflow: hidden;
    position: relative;
}

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

html {
    font-size: 62.5%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    color: var(--color-black);
    font-family: 'bodoni-pt-variable', 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: clamp(1.4rem, 1.1713030747vw, 1.6rem);
    line-height: 1.5;
    text-align: justify;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

.br-pc {
    display: block;
}

.SideBySide {
    display: flex;
    align-items: center;
}


.grid {
    display: grid;
}

.grid.col5-5 {
    grid-template-columns: 1fr 1fr;
}

@media screen and (width <=768px) {
    .br-pc {
        display: none;
    }

    .SideBySide {
        display: block;
    }
}

.br-tab {
    display: none;
}

@media screen and (400px < width <=768px) {
    .br-tab {
        display: block;
    }
}

.br-sp {
    display: none;
}

@media screen and (width <=600px) {
    .br-sp {
        display: block;
    }
}

.br-mobile {
    display: none;
}

@media screen and (width <=400px) {
    .br-mobile {
        display: block;
    }
}

.Inner {
    max-width: var(--width-max);
    width: 90vw;
    margin: 0 auto;
    position: relative;
}

.Inner-narrow {
    max-width: var(--width-narrow);
    width: 90vw;
    margin: 0 auto;
    position: relative;
}

/* ヘッダー */
#fixed-header {
    position: fixed;
    top: -140px;
    width: 100%;
    transition: 0.5s;
    z-index: 99;
}

#fixed-header.is-show {
    top: 0;
}

.header {
    position: relative;
    height: clamp(95px, 12.81vw, 190px);
    background-color: var(--color-ivory);
}

.header_inner {
    width: calc(100% - 90px);
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (width <=600px) {
    .header_inner {
        width: calc(100% - 40px);
    }
}

.header_link {
    position: absolute;
    top: 20%;
    right: 0;
    display: block;
    padding: 0 2rem;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
}

.header_link::after {
    background-image: url(../img/arrow-right.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: block;
    content: "";
    width: 8px;
    height: 11px;
    position: absolute;
    top: 4px;
    right: 0;
}

.header_link::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--color-bluege);
    transition: transform ease .3s;
    transform-origin: 100% 50%;
    transform: scaleX(0);
}

.header_link:hover {
    color: var(--color-white);
}

.header_link:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}



.mv {
    width: 100vw;
}

.mv_inner {
    width: 100%;
    height: inherit;
    position: relative;
}

.mv_catch {
    position: absolute;
    right: 14.51vw;
    top: 5.62vw;
    z-index: 2;
    width: clamp(68px, 5.88vw, 90px);
}

.mv_catch_party {
    position: absolute;
    left: 15%;
    top: 65%;
    transform: translateY(-50%);
    z-index: 2;
    width: clamp(17rem, 14.500rem + 10vw, 21.625rem);
}

@media screen and (width <=400px) {
    .mv_catch_party {
        left: 50%;
        transform: translateX(-50%);
        top: 55%;
    }
}

@media screen and (width <=600px) {
    .mv_catch {
        right: 19px;
        top: 122px;
        width: 32px;
    }
}

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

@media screen and (width <=400px) {
    .header_inner {
        width: 90%;
    }
}

.header-logo {
    width: clamp(100px, 14.38vw, 160px);
}

.header-sns {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.5rem;
    margin: 3.5rem 0;
}

.headerNav {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    column-gap: 3vw;
    height: inherit;
    align-items: center;
}

.nav_content {
    display: flex;
}

@media screen and (width <=600px) {
    .nav_content {
        display: block;
    }
}

.nav_item {
    list-style-type: none;
    margin-bottom: 0.5em;
    margin-right: 3em;
}

.nav_item a {
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav_item a span {
    font-size: 0.6em;
    display: inline-block;
    position: relative;
    padding-right: 30px;
}

.nav_item a span::after {
    background-color: #aaa;
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.nav_item a span img {
    width: 13px;
    opacity: 0.7;
}

.nav_item.--allMenu a {
    border-bottom: 1px solid #7d7d7d;
    padding: 2px;
}

.nav_item.--allMenu a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 12px;
    background-image: url(../img/arrow-right_w.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 0.6rem;
}

.footerNav .nav_content .nav_item a span img {
    filter: invert(1);
}

@media screen and (width <=850px) {
    .headerNav {
        display: none;
    }
}

/* フッター */
.footer {
    width: 100%;
    background-color: var(--color-bluege);
    position: relative;
    padding-top: 6%;
}

.footerNav {
    display: flex;
    justify-content: space-between;
}

.footerNav a {
    color: var(--color-white);
}

.footerNav .nav_item.--policy a {
    font-size: 0.6em;
    opacity: 0.6;
}

.footer_logo {
    width: 120px;
}

@media screen and (width <=600px) {
    .footerNav {
        width: 90%;
        margin: 0 auto;
    }

    .footer_logo {
        width: 100px;
    }
}

.footer_nav {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.footer_nav li+* {
    margin-left: 3rem;
}

.footer_nav li a {
    color: var(--color-white);
    letter-spacing: 0.3em;
}

@media screen and (width <=400px) {
    .footer_nav {
        display: block;
        text-align: center;
    }

    .footer_nav li+* {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

.footer_sub {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-bottom: 2rem;
    margin-top: 3%;
}

.footer_sub a {
    color: var(--color-white);
    font-size: 1.2rem;
}

.credit {
    width: 100%;
    border-top: 1px solid var(--color-gray);
    display: block;
    color: var(--color-white);
    text-align: center;
    padding: 2rem 0;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

/* トップページ */

.key-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.key-visual_inner {
    width: 90vw;
    margin: 0 auto;
    height: 90vh;
    display: grid;
    grid-template-columns: 50% 50%;
    overflow: hidden;
}

.key-visual_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-logo {
    display: block;
    width: clamp(260px, 26.39vw, 426px);
}

.open-date {
    font-size: clamp(40px, 3vw, 50px);
    font-size: clamp(4rem, 3vw, 5rem);
    padding: 0.7em 0 0.1em 0;
    letter-spacing: 0.2em;
    text-align: center;
    line-height: 1.25;
}

@media screen and (width <=400px) {
    .open-date {
        font-size: 2.4rem;
    }
}

.open-where {
    font-size: clamp(16px, 1.5vw, 18px);
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    letter-spacing: 0.2em;
    text-align: center;
}

.key-visual_right {
    width: 100%;
    height: 100%;
    border: 5px solid var(--color-black);
    overflow: hidden;
}

.top-catch {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 36px;
}

.top-menu {
    z-index: 999;
    position: fixed;
    right: -120px;
    top: 50%;
    font-weight: bold;
    display: inline-block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.top-menu_list {
    display: flex;
    gap: 2rem;
    height: 1.8rem;
}

.top-menu_item a {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    line-height: 1;
}

.top-menu_item img {
    width: 1.6rem;
}

/* パーティ */
.party {
    max-width: 860px;
    width: 90%;
    margin: 0 auto;
}

.party_intro {
    text-align: center;
    font-family: 'Noto Serif JP', sans-serif;
}

.party_heading {
    font-size: 2.6rem;
    font-weight: 700;

    span {
        font-size: 3.4rem;
        display: block;
    }
}

.party_info {
    font-size: 2rem;
    padding-top: 2rem;
    letter-spacing: 1px;

    span {
        display: block;
        font-size: 1.6rem;
        padding-top: .4em;
    }
}

.party_tel {
    padding-top: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10%;

    span {
        font-size: 1.8rem;
        display: block;
        padding-top: 1rem;
    }
}

.partyMenus {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6%;
    padding-bottom: 20%;
}

.partyMenus::after {
    content: "";
    max-width: 380px;
    min-width: 360px;
    display: block;
}


.partyMenu {
    max-width: 380px;
    min-width: 360px;
    border-top: 1px solid var(--color-black);
    padding-top: 2rem;
    margin-bottom: 10%;
}

.partyMenu_pic {
    max-width: 380px;
    min-width: 360px;
    margin-bottom: 10%;
}

@media screen and (width <=860px) {
    .partyMenus {
        display: block;
    }

    .partyMenu,
    .partyMenu_pic {
        max-width: 100%;
        min-width: auto;
    }


}

.partyMenu_name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.7em;
    letter-spacing: 1px;
}

.partyMenu_info {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;

    span {
        font-size: 1.4rem;
        display: block;
    }
}

.partyMenu_price {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 3rem;

    span {
        font-size: 1.4rem;
        margin-right: .3em;
    }
}

.partyMenu_list {
    list-style-type: none;
    font-weight: 600;
    font-size: 1.4rem;
}

.partyMenu_list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}


@media screen and (width <=600px) {
    .party_heading {
        font-size: 2rem;

        span {
            font-size: 2.8rem;
        }
    }

    .party_info {
        font-size: 2rem;

        span {
            font-size: 1.9rem;
        }
    }
}

@media screen and (width <=380px) {

    .party_tel {
        span {
            a {
                display: block;
                text-decoration: underline;
            }
        }
    }

}


@media screen and (width <=1024px) {
    .key-visual {
        height: auto;
        padding: 10rem 0;
    }

    .key-visual_inner {
        display: block;
        height: initial;
    }

    .key-visual_right {
        width: 80%;
        margin: 5rem auto;
    }
}

@media screen and (width <=768px) {
    .key-visual_left {
        width: 70%;
        margin: 0 auto;
    }
}

/* 子ページ */
.main {
    margin: 0;
    background-color: var(--color-mute-grey);
    overflow: hidden;
}

.main_inner {
    padding: 12% 0 0;
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}

.bg_light {
    background: url(../img/minatoe_light.png) no-repeat left top;
    background-size: 100%;
}

.bg_dark {
    background-color: var(--color-bluege);
}

.page-ttl {
    font-size: clamp(2em, 3.17vw, 48px);
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 10%;
}

.page-ttl span {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.page-ttl.--white {
    color: var(--color-white);
}

@media screen and (width <=480px) {
    .top-logo {
        width: 250px;
    }

    .top-catch {
        display: none;
    }

    .top-menu {
        display: none;
    }
}

.sns {
    padding: 12% 0 0;
}

.insta-link-text {
    text-align: center;
    display: block;
    font-size: 1.3rem;
    text-decoration: underline;
    letter-spacing: 1px;
}

.page-ttl.-policy {
    font-size: 28px;
}

.page-ttl_line {
    width: 90px;
    margin: 1rem auto 3rem auto;
}

.heading_l {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 1em;
}

.heading_m {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 0.3em;
}

.page-desc {
    display: block;
    margin: 0 auto 0.3em auto;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-align: center;
}

@media screen and (width <=768px) {
    .page-desc {
        width: 80vw;
        text-align: left;
    }
}

.Center {
    text-align: center;
}

.page-pic_l {
    width: 100%;
    margin: 0 auto;
}

/* 子ページ　　コンセプト */
.concept {
    width: 100%;
    padding-top: 100px;
}

.concept_logo {
    width: 240px;
    margin: 5rem auto;
}

.concept_inner {
    display: grid;
    gap: 20px;
    grid-template-columns: 50% 50%;
}

@media screen and (width <=768px) {
    .concept_body {
        margin-bottom: 2rem;
    }
}

.concept_body-txt {
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

@media screen and (width <=768px) {
    .concept_inner {
        display: block;
    }
}

/* 子ページ　　メニュー */

.con_mainImg {
    width: clamp(530px, 60vw, 900px);
    aspect-ratio: 1.68 / 1;
    margin-left: -10%;
}

.section_body {
    margin-left: 3%;
    max-width: 50%;
}

@media screen and (width <=768px) {
    .section_body {
        margin: 0;
        max-width: 100%;
    }
}

.section_txt h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    margin-top: 1em;
}

.section_txt p {
    font-size: 0.8em;
    line-height: 1.8;
    font-weight: 600;
    letter-spacing: 0.1em;
}

@media screen and (width <=768px) {

    .section_txt p,
    .menu_mainImg p,
    .chief_txt,
    .info_body p,
    .info_body td {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: normal;
    }

}

.section_txt.--menu {
    color: var(--color-white);
}

.buttons {
    display: flex;
    column-gap: 20px;
    margin-top: 50px;
}

.buttons a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    width: 200px;
    position: relative;
    border-bottom: 1px solid var(--color-white);
    height: 35px;
    overflow: hidden;
}

.buttons.--white a {
    color: var(--color-white);
}

.buttons a::after {
    background: url(../img/arrow-right_w.svg) no-repeat 0 0;
    background-size: 100% 100%;
    content: '';
    display: block;
    width: 8px;
    height: 15px;
    position: absolute;
    top: 36%;
    right: 0;
    margin-top: -8px;
}

.buttons a::before {
    top: 0;
}

.con_body>* {
    margin-top: 1em;
}

.con_images {
    position: relative;
    width: 100%;
    height: 31.25vw;
    margin: 20% 0;
}

.con_i01 {
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
}

.con_i02 {
    position: absolute;
    right: 55%;
    top: 15%;
    width: 21.39vw;
    aspect-ratio: 1 / 1;
}

.con_i03 {
    position: absolute;
    left: 3%;
    bottom: 0;
    width: 11.72vw;
    aspect-ratio: 14 / 25;
}

.images_sp {
    margin-top: 10%;
    display: none;
}

.page_img {
    height: clamp(350px, 34.72vw, 500px);
}

.section_menu {
    margin-top: -100px;
    padding-top: 150px;
}

.menu_mainImg {
    width: clamp(530px, 60vw, 900px);
    display: flex;
    margin-left: -6%;
}

@media screen and (width <=768px) {
    .menu_mainImg {
        width: 100%;
        margin-left: 0;
    }

    .section_body.--menu p {
        margin-top: 10%;
    }

}

.menu_mainImg figure {
    width: 33.333%;
    height: 100%;
    position: relative;
}

.menu_mainImg p {
    color: var(--color-white);
    text-align: center;
    font-size: 0.9em;
    letter-spacing: 1px;
    margin-top: 1.5em;
}

.menu_mainImg span {
    display: block;
    font-size: 0.9em;
}

.menu_images {
    position: relative;
    width: 100%;
    height: 60vw;
    margin: 20% 0;
}

.menu_i01 {
    position: absolute;
    right: 0;
    top: 10%;
    width: 50vw;
}

.menu_i02 {
    position: absolute;
    right: 55%;
    top: 0;
    width: 29vw;
}

.menu_i03 {
    position: absolute;
    left: 0;
    bottom: 30%;
    width: 11.72vw;
}

.menu_i06 {
    position: absolute;
    left: 23%;
    bottom: 10%;
    width: 35vw;
}

@media screen and (width <=768px) {
    .con_images {
        display: none;
    }

    .menu_images {
        display: none;
    }

    .images_sp {
        display: block;
    }

}

.menu {
    padding: 20% 0 0;
    width: 100%;
}

.menu_inner {
    width: 90%;
    max-width: 760px;
    margin: 0 auto;
}

.section_chief {
    margin: 20% 0 12% 0;
}

.chief {
    margin: 0 auto;
    justify-content: center;
    gap: 12%;
}

.chief_img {
    width: 60%;
}

.chief_ttl {
    font-size: 1.3em;
    font-weight: 500;
}

.chief_body {
    max-width: 50%;
}

.chief_body p {
    color: var(--color-white);
    font-size: 0.9em;
    margin-top: 6%;
}

.chief_body span {
    display: block;
    font-size: 0.8em;
}

@media screen and (width <=768px) {
    .chief_img {
        width: 100%;
    }

    .chief_body {
        max-width: 100%;
    }

    .chief_txt:first-child {
        font-size: 16px;
    }
}

.section_access {
    padding: 12% 0;
}

.info {
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 6% 0;
}

.info_body {
    display: flex;
    align-items: center;
}

.info_txt {
    margin-left: 6%;
    padding: 8% 0;
}

.info_txt h3 {
    letter-spacing: 2px;
}

.info_body::before {
    position: absolute;
    width: 1px;
    height: 100%;
    content: '';
    background-color: var(--color-gray);
}

.info_body p {
    font-size: 0.9em;
    margin-bottom: 1em;
}

.info_body table {
    margin-bottom: 1em;
}

.info_body th,
.info_body td {
    font-size: 0.8em;
    list-style-type: none;
}

.info_body th {
    padding-right: 1em;
    font-weight: normal;
}

.info_body td {
    letter-spacing: 1px;
}

.plan {
    max-width: 292px;
}

.plan_fig {
    max-width: 100%;
    height: 196px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.plan_name {
    text-align: center;
    font-size: 1.8rem;
    margin: 1rem auto 0.3rem auto;
}

.plan_time {
    width: 100%;
    border-top: 1px solid var(--color-gray);
    text-align: center;
    padding-top: 0.3rem;
    font-weight: bold;
    font-size: 1.4rem;
}

.viewer {
    width: 80%;
    margin: 0 auto;
}

.viewer_inner {
    display: grid;
    margin-bottom: 10rem;
}

.viewer_inner.-col1 {
    display: block;
}

.viewer_inner.-col2 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.chef {
    width: 100%;
}

.chef_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chef_fig {
    margin-bottom: 3rem;
}

.chef_txt {
    text-align: center;
    font-weight: bold;
}

.chef_position {
    margin-bottom: 1rem;
}

.chef_name_ja {
    font-size: 2.3rem;
    letter-spacing: 0.3rem;
    line-height: 1;
}

.chef_name_en {
    font-weight: normal;
    font-style: italic;
    margin-bottom: 2rem;
}

.chef_profile {
    letter-spacing: 0.2rem;
}

@media screen and (width <=400px) {
    .plan_time {
        font-size: 1.2rem;
    }

    .menu_viewer {
        width: 100%;
    }
}

.plan_desc {
    margin-top: 1rem;
    font-weight: bold;
    line-height: 1.8;
    font-size: 1.4rem;
}

@media screen and (width <=768px) {
    .viewer {
        width: 100%;
    }

    .viewer_inner {
        display: block;
    }

    .viewer_inner img {
        padding-bottom: 5rem;
    }

    .menu_inner {
        display: block;
        max-width: 90vw;
        margin: 0 auto;
    }

    .plan {
        max-width: 100%;
        margin-bottom: 5rem;
    }

    .plan_fig {
        height: auto;
    }
}

.reserve {
    width: 100%;
}

.reserve ul li {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5em;
    list-style-type: none;
}

.cancel {
    width: 100%;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cancel_caution {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--color-gray);
}

.cancel_rule ul {
    margin: 2rem auto;
    display: block;
}

.cancel_rule li {
    font-size: 1.2rem;
    list-style-type: none;
}

.cancel_rule li+* {
    padding-left: 2rem;
    margin-top: 0.5rem;
}

/* 子ページ　アクセス */
.access {
    width: 100%;
}

.access_inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
}

.access_fig {
    max-width: 100%;
    height: 230px;
    overflow: hidden;
}

.access_fig img {
    object-fit: cover;
    height: 230px;
}

.address h3 {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.address ul {
    margin-bottom: 2rem;
}

.address ul li,
.address a {
    list-style-type: none;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.address a {
    text-decoration: underline;
}

.googlemap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 28%;
    margin-top: 5rem;
}

.googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

@media screen and (width <=768px) {
    .access_inner {
        display: block;
    }

    .address {
        text-align: center;
        margin-bottom: 3rem;
    }

    .googlemap {
        padding-top: 60%;
    }

    .info {
        display: block;
    }

    .info_body {
        display: block;
    }

    .info_body p {
        font-size: 1em;
    }

    .info_body td {
        font-size: 0.9em;
    }

    .info_body::before {
        display: none;
    }

    .info_txt {
        padding-top: 3%;
    }
}

/* 子ページ　サイトご利用にあたって */
.policy p {
    font-weight: bold;
    margin-bottom: 3rem;
    line-height: 2;
}

.policy_inside {
    padding-left: 3rem;
}

.menuList {
    width: 100%;
    margin: 12% 0;
}

.menuList.--white {
    color: var(--color-white);
}

.menuList_ttl {
    display: flex;
    width: 100%;
    padding-bottom: 0.6em;
    flex-direction: column;
    align-items: center;
}

.menuList_ttl a {
    text-decoration: underline;
}

.menuList_ttl strong {
    color: #da4729;
}

.menuList_ttl_en {
    font-size: clamp(16px, 2em, 20px);
    font-weight: 500;
    letter-spacing: 2px;
}

.menuList_ttl_ja {
    font-weight: 600;
    font-size: 1.2em;
}

.menuList_ttl_sub {
    margin-top: 1rem;
    font-size: 13px;
    text-align: center;
    margin-bottom: 2em;
}

.menuList ul li {
    padding: 5px 0;
    list-style-type: none;
}

.menuList_col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.menuList_col.--sub {
    justify-content: flex-end;
}

.menuList_spot {
    gap: 3%;
}

.menuList_spot figure {
    width: 60%;
}

.menuList_spot a {
    text-decoration: underline;
    font-weight: 700;
}

.menuList_spot p {
    font-weight: 700;
}

.menuList_spot strong {
    color: #da4729 !important;
}

.menuList_col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
}

@media screen and (width <=768px) {
    .menuList_col2 {
        display: block;
    }
}

.menuList_kind {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 1.33vw, 20px);
}

.menuGallery {
    display: grid;
    grid-template-rows: 22vw 22vw;
    grid-template-columns: 33.34% 1fr;
    overflow: hidden;
}

.menuGallery2 {
    display: grid;
    grid-template-rows: 22vw 22vw;
    grid-template-columns: 25% 25% 1fr;
    overflow: hidden;
}

@media screen and (width <=600px) {

    .menuGallery,
    .menuGallery2 {
        display: block;
    }
}

.menuGallery.--reverse {
    grid-template-columns: 1fr 33.34%;
}

.menuGallery.--horizontal {
    grid-template-rows: 22vw;
    grid-template-columns: 1fr 1fr 1fr;
}

.menuGallery figure {
    position: relative;
}


.menuGallery.--reverse figure:first-child {
    grid-row: 1/3;
    grid-column: 1;
}

.menuGallery.--reverse figure:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.menuGallery.--reverse figure:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
}

.menuGallery.--horizontal figure:first-child {
    grid-row: 1;
    grid-column: 1;
}

.menuGallery.--horizontal figure:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.menuGallery.--horizontal figure:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
}



.menuGallery figure:first-child {
    grid-row: 1;
    grid-column: 1;
}

.menuGallery figure:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
}

.menuGallery figure:nth-child(3) {
    grid-row: 1/3;
    grid-column: 2/3;
}


.menuGallery2 figure:first-child {
    grid-row: 1;
    grid-column: 2;
}

.menuGallery2 figure:nth-child(2) {
    grid-row: 2;
    grid-column: 2;
}

.menuGallery2 figure:nth-child(3) {
    grid-row: 1/3;
    grid-column: 1;
}

.menuGallery2 figure:last-child {
    grid-row: 1/3;
    grid-column: 3;
}

.menuGallery2 figure.--sp {
    display: none;
}

@media screen and (width <=600px) {

    .menuGallery2 figure.--pc {
        display: none;
    }

    .menuGallery2 figure.--sp {
        display: block;
    }
}

.menuGallery_caption {
    position: absolute;
    right: 3%;
    bottom: 5px;
    font-size: 12px;
    font-weight: 700;
}

.menuGallery_caption.--white {
    color: var(--color-white);
}

.option {
    display: inline-block;
    background-color: #da4729;
    color: var(--color-white);
    height: 14px;
    font-size: 10px;
    padding: 0 1rem;
    font-weight: 700;
    line-height: 14px;
    border-radius: 3px;
    font-family: 'Noto Sans JP', sans-serif;
    margin-top: -3px;
}

@media screen and (width <=600px) {
    .option {
        display: block;
    }
}

.menuList span {
    vertical-align: middle;
}

.menuList_name {
    font-size: 14px;
    font-weight: 700;
    height: fit-content;
    font-feature-settings: "palt" 1;

}

.menuList_price {
    font-size: 16px;
    height: fit-content;
    white-space: nowrap;
}

.menuList_line {
    flex-grow: 1;
    border: none;
    border-bottom: 1px solid #7d7d7d;
    margin-left: 0.5em;
}

.menuList_line.--sp {
    display: none;
}

.menuList_line.--pc {
    display: block;
}

@media screen and (width <=768px) {
    .menuList_line.--sp {
        display: block;
    }

    .menuList_line.--pc {
        display: none;
    }
}

.yen {
    font-size: 12px;
}

.zei {
    font-size: 12px;
    opacity: .8;
}