@charset "UTF-8";
/*---------------------------------
Font
---------------------------------*/
/* ローカルフォント 欧文フォントならダウンロードがよい？ */
/* @font-face { */
    /* font-family: '';
    src: url('fonts/') format('truetype'); */
    /* font-weight: ; */
    /* font-display: swap; */
/* } */

/* Webフォント　googleであればnotosans,MPLUS1p,BIZ UDPGothicはこちらでいい？ */
/* @import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap&subset=japanese'); */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap');
/*---------------------------------
Variable
---------------------------------*/

:root{
    --color-primary: #222936;
    --color-primary-rgb: 34, 41, 54;

    --color-secondary: #cc302d;
    --color-secondary-rgb: 204, 48, 45;

    --color-tertiary: #faf4f3;
    --color-tertiary-rgb: 250, 244, 243;

    /* --color-quaternary: ;
    --color-quaternary-rgb: ; */

    --color-bw: #57423f;
    --color-bw-rgb: 87, 66, 63;

    --color-bk: #000;
    --color-bk-rgb: 0, 0, 0;

    --color-wh: #fff;
    --color-wh-rgb: 255,255,255;

    /* レスポンシブ例 */
    --size-res-xl: clamp(2.4rem, calc(2.2rem + 0.625vw), 2.9rem);

    /* --box-shadow-btn: 3px 3px 6px #E3DDCC;
    --box-shadow-secondary-shade: 3px 3px 6px rgba(var(--color-quaternary-rgb),.3);
    --box-shadow-tertiary-shade: 0 3px 8px rgba(var(--color-tertiary-rgb),.1);
    --box-shadow-bk-shade: 0 3px 8px rgba(var(--color-bk-rgb),.1); */

    /* --font-zen: "Zen", sans-serif; */
    --font-gothic: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP","BIZ UDPGothic",Meiryo, sans-serif; 
    --font-default: "Shippori Mincho", serif; 
    /* --font-default: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;  */

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
}


/*---------------------------------
Default
---------------------------------*/
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-tertiary);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-default);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary);
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    height: 100%;
    width: 100%;
    /* font-sizeはrem指定 */
    /* 太さに違いがでてしまうかも、なしで進めてみる */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}
/* a:hover {
    color: inherit;
}
a:visited {
    color: inherit;
} */

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
li {
    /* font-size: 1.4rem; */
}
ol {
    padding-left: 1.6rem;
}
img {
    width: 100%;
    height: auto;
}
p {
    color: inherit;
    /* font-size: 1.5rem; */
    margin: 0;
    /* line-height: 1.8em; */
    font-weight: inherit;
}

h1, h2, h3, h4 {
    color: inherit;
    margin: 0;
    font-size: inherit;
    line-height: 1.5em;
    letter-spacing: .2em;
    font-weight: var(--font-weight-normal);
}
button {
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-family: var(--font-ja);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5em;
    padding: 0;
}

select {
    appearance: none;
    -webkit-appearance: none;
}

section {
    position: relative;
}

@media (min-width: 1024px) {
    p, li {
        font-size: 1.6rem;
    }
}
/*---------------------------------
Common
---------------------------------*/
.body_wrap {
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-tertiary);
}

main {
    flex: 1;
    position: relative;
    z-index: 0;
}
/* 
.main {
    
    position: relative;
    z-index: 0;
} */

.only_pc {
    display: none;
}
.only_sp {
    display: block;
}

span.inline_block {
    display: inline-block;

}


@media (768px <= width) {
    .only_pc {
        display: block;
    }
    .only_sp {
        display: none;
    }
}
/*---------------------------------
header
---------------------------------*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    opacity: 0;
    background-color: rgba(var(--color-wh-rgb), .6);
    transition: .3s ease-in;
    display: none;
}

header:has(.header.block) {
    display: block;
}
header:has(.header.open) {
    opacity: 1;
    /* z-index: 1; */
}

.btn_header_sp {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: url(../img/maru01.svg) center / contain no-repeat;
    color: var(--color-wh);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    z-index: 9;
}

body.front-page .btn_header_sp, 
body.test-top2026 .btn_header_sp {
    opacity: 0;
    animation: open_fadeIn 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.header {
    height: 100dvh;
    width: min(40%, 200px);
    background-color: var(--color-primary);
    padding: 32px 20px;
    overflow: auto;
    color: #fff;
    translate: -100% 0;
    transition: translate .3s ease-in;
    position: relative;
    z-index: 9;
}


.header.open {
    translate: 0;
}

.header_nav_list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.header_nav_list li {
    width: 100%;
}

.header_nav_list li a {
    display: block;
    width: 100%;
}

.header_sns_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em 1em;
    margin-top: 2em;
}

.header_sns_list li {
    width: 24px;
    height: 24px;
}

.header_sns_list li a img {
    height: 100%;
    object-fit: contain;
}

.header_company_address {
    margin-top: 6em;
    font-size: 1rem;
    letter-spacing: 0.2em;
}

.header_company_address .en {
    display: block;
    margin-top: .2em;
    opacity: .8;
}

@media (min-width: 768px) {
    header {
        background: none;
        position: absolute;
        opacity: 1;
        display: block;
        max-width: 1920px;
        /* max-width: 1200px; */
        left: 50%;
        translate: -50% 0;
    }

    .header {
        height: auto;
        width: auto;
        background: none;
        color: var(--color-primary);
        margin-left: 4%;
        translate: 0;
        padding: 56px 20px 0;
    }

    body.front-page .header,
    body.test-top2026 .header {
        opacity: 0;
        animation: open_fadeIn 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .header_nav_list li a {
        display: inline-block;
        width: fit-content;
        /* background-color: var(--color-primary);
        color: #fff; */
        padding: .2em 1em .2em .5em;
        position: relative;
        z-index: 1;
        transition: color .3s cubic-bezier(0.45, 0, 0.55, 1);
    }

    .header_nav_list li a::before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--color-primary);
        position: absolute;
        top: 0;
        left: 0;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
        z-index: -1;
    }

    .header_nav_list li a:hover {
        color: var(--color-wh);
    }
    .header_nav_list li a:hover::before {
        transform: scale(1, 1);
    }

    .header_sns_list {
        padding-left: .5em;
    }

    .btn_header_sp {
        display: none;
    }
}

@media (min-width: 1024px) {
    .header_nav_list li a {
        font-size: 2rem;
    }

    .header_sns_list {
        gap: 0.2em 1.2em;
    }

    .header_sns_list li {
        width: 32px;
        height: 32px;
    }

    .header_company_address {
        margin-top: 3em;
        font-size: 1.6rem;
    }

    .header_company_address .en {
        opacity: .6;
    }
}


/*---------------------------------
Footer
---------------------------------*/
.btn_scroll_top {
    display: block;
    position: fixed;
    bottom: 12px;
    right: 12px;
    cursor: pointer;
    transition: translate .3s ease-in;
    opacity: 0;
    animation: open_fadeIn 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (hover:hover) {
    .btn_scroll_top:hover {
        translate: 0 -4px;
    }
}
.btn_scroll_top span {
    color: var(--color-primary);
    font-size: 1.2rem;
    display: block;
    margin: 0 0 0.5em;
    font-family: var(--font-gothic);
    text-align: center;
    letter-spacing: 0.2em;
    font-weight: 300;
}
.btn_scroll_top img {
    width: 32px;
}
footer {
    background-image: linear-gradient(rgba(var(--color-primary-rgb), 0.75),rgba(var(--color-primary-rgb), 0.75)), 
    url(../img/bg_footer.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover;
    color: var(--color-wh);
    position: relative;
}

.footer_inner {
    padding: 3em 0 1em;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_logo {
    width: 56px;
    height: auto;
}

.footer_nav_list {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    margin-top: 2em;
}

.footer_nav_list li a {
    font-size: 1.2rem;
}

.footer_sns_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em 1em;
    margin: 2em auto 0;
}

.footer_sns_list li {
    width: 20px;
    height: 20px;
}

.footer_sns_list li a img {
    height: 100%;
    object-fit: contain;
}

footer .copylight {
    margin-top: 4em;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .footer_inner {
        position: relative;
        padding: 6em 0;
    }

    .footer_logo {
        width: 80px;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
    }

    .footer_nav {
        width: fit-content;
        margin: 0 8% 0 auto;
        text-align: left;
    }

    .footer_nav_list {
        gap: 1em;
    }
    .footer_nav_list li a {
        font-size: 1.4rem;
    }

    .footer_sns_list li {
        width: 24px;
        height: 24px;
    }

    footer .copylight {
        margin: 0;
        position: absolute;
        bottom: 20%;
        left: 50%;
        translate: -50% 0;
    }

}

@media (min-width: 1024px) {
    .btn_scroll_top {
        bottom: 24px;
        right: 24px;
    }
    .btn_scroll_top span {
        font-size: 1.4rem;
    }
    .btn_scroll_top img {
        width: 40px;
    }
}
/*---------------------------------
MV
---------------------------------*/
.sec_mv {
    position: relative;
    /* z-index: -2; */
}
.mv_container {
    width: min(100%, 1920px);
    position: relative;
    height: auto;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 56px 0;
}

.mv_container::before {
    content: '';
    width: 216px;
    height: auto;
    aspect-ratio: 1 / 3;
    background: url(../img/mv_bg01.svg) center top / contain no-repeat;
    position: absolute;
    left: 50%;
    translate: -50% -15%;
    z-index: -3;
}

body.front-page .mv_container::before,
body.test-top2026 .mv_container::before {
    clip-path: inset(0 0 100% 0);
    animation: reveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;

}
@keyframes reveal {
    100% {
        clip-path: inset(0 0 0 0);
    }
}
  
.mv_logo img {
    display: block;
    margin: 0 auto 56px;
    width: 90px;
    height: auto;
}

body.front-page .mv_logo img,
body.test-top2026 .mv_logo img {
    opacity: 0;
    animation: open_fadeIn 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes open_fadeIn {
    100% {
      opacity: 1;
    }
}

/* TOP */
.mv_side_box {
    width: min(90%, 400px);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    opacity: 0;
    animation: open_fadeIn 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.main_message {
    writing-mode: vertical-rl;
    margin: 0 auto;
    letter-spacing: 0.4em;
    color: var(--color-wh);
}
.main_message_en {
    letter-spacing: 0.2em;
    margin-top: 3em;
}
.mv_img_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    overflow: visible;
    padding-right: 10%;
    margin-top: 32px;

    opacity: 0;
    translate: -20% 0;
    animation: open_fadeIn_translate 2s 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;

}
@keyframes open_fadeIn_translate {
    50% {
        translate: 0;
    }
    100% {
        translate: 0;

      opacity: 1;
    }
}

.mv_img_box > div {
    display: flex;    
    justify-content: flex-end;
    gap: 16px;
}
.mv_img_box > div:first-of-type,
.mv_img_box > div:nth-of-type(2n+1) {
    translate: -20% 0;
    
}

.mv_img_box img {
    height: auto;
    width: min(25%, 140px);
    object-fit: contain;
}

/* Page */
.page_mv_container {
    padding: 56px 0 0;

}
.page_mv_img {
    width: min(80%, 480px);
    margin: 0 0 0 auto;
}

.ttl_page_mv {
    margin: 0 auto;
    padding: 1em;
    height: auto;
    width: min(90%, 400px);
    aspect-ratio: 5 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--color-secondary-rgb), .8);
    color: var(--color-wh);
    font-size: 2rem;
}

.page_mv_img + .ttl_page_mv {
    translate: 0 -50%;
}

@media (min-width: 768px) {
    .mv_container:not(.page_mv_container) {
        margin: 0 auto -120px;
    }
    .mv_flex_wrap {
        translate: 0 -120px;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        padding: 0 2% 0 0;

    }
    .mv_side_box {
        width: 272px;
        margin: 0;
        color: var(--color-primary);
    }
    .main_message {
        color: var(--color-primary);
        font-size: 1.8rem;
    }

    .main_message_en {
        margin: 0;
        font-size: 1.4rem;
        padding: 5em 0 10em;
        background: url(../img/line01.svg) center top 2em / 80% no-repeat;
    }

    .mv_img_box {
        align-items: flex-end;
        width: calc(100% - 272px);
        padding-right: 5%;
        margin: 0;
        gap: 24px;
    }

    .mv_img_box > div {
        gap: 10%;
        height: min(12vw, 150px);
    }

    .mv_img_box img {
        flex: 1;
        width: auto;
        max-height: none;
    }

    .page_mv_img {
        width: 50%;
    }

    .page_mv_img img {
        width: min(100%, 800px);
    }
 
}

@media (min-width: 1024px) {
    .mv_container::before {
        width: min(32%, 620px);
        translate: -50% -10%;
    }

    .mv_logo img {
        width: min(10%, 140px);
    }

    .mv_flex_wrap {
        translate: 0 -180px;
    }

    .mv_side_box {
        width: 350px;
    }
    .main_message {
        font-size: 2.4rem;
    }

    .main_message_en {
        font-size: 1.8rem;
        padding: 5em 0;
    }


    .mv_img_box img {
        /* height: auto;
        width: min(20%, 200px); */
    }
}

@media (min-width: 1440px) {
    /* .mv_flex_wrap {
        translate: 0 -240px;
    } */
    .mv_side_box {
        width: 400px;
    }
    .main_message {
        font-size: 3rem;
    }

    .main_message_en {
        font-size: 2.2rem;
    }
    .mv_img_box {
        width: calc(100% - 400px);
    }
    
    .mv_img_box > div {
        height: min(12vw, 200px);
    }
}

/*---------------------------------


TOP 共通


---------------------------------*/
.sec_top_common {
    position: relative;
    padding: 10em 0 5em;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.ttl_square {
    width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: var(--color-primary);
    color: var(--color-wh);
    font-weight: var(--font-weight-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2;
    margin: 0 auto;
    box-shadow: rgba(var(--color-primary-rgb), 0.25) 0px 30px 60px -12px, rgba(var(--color-bk-rgb), 0.3) 0px 18px 36px -18px;

    position: relative;
    z-index: 1;
}

.ttl_square::before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/line02.svg) center / contain no-repeat;
    position: absolute;
    bottom: -20%;
    left: -110%;
    z-index: -1;
}

.btn_link_top {
    display: block;
    background-color: var(--color-secondary);
    color: var(--color-wh);
    font-family: var(--font-gothic);
    padding: 1em 2em;
    width: 200px;
    margin: 2em auto 0;
    text-align: center;
    letter-spacing: 0.2em;
    overflow: hidden;
    transition: color .2s ease-out, scale .2s ease-out, box-shadow .3s ease-out;

    position: relative;
    z-index: 0;
}

.btn_link_top::before {
    content: '';
    width: 100%;
    height: 110%;
    background-color: var(--color-wh);
    position: absolute;
    top: 50%;
    left: 0;
    translate: -100% -50%;
    transition: translate .35s ease-out;
    z-index: -1;
}

.btn_link_top:hover {
    box-shadow: rgba(var(--color-primary-rgb), 0.25) 0px 30px 60px -12px, rgba(var(--color-bk-rgb), 0.3) 0px 18px 36px -18px;
    color: var(--color-secondary);
    scale: 1.1;
}
.btn_link_top:hover::before {
    translate: 0 -50%;
}
.bg_img {
    position: absolute;
    width: min(80%, 300px);
    height: auto;
    object-fit: contain;
    z-index: -1;
}

.ttl_underline {
    font-size: 1.6rem;
    margin: 0 auto 2em;
    padding-bottom: 1.5em;
    background: url(../img/icon_line01.svg) center bottom / 2.5em 1em no-repeat;
    text-align: center;
}
@media (min-width: 768px) {
    .bg_img {
        width: min(50%, 500%);
    }
}

@media (min-width: 1024px) {
    .ttl_square {
        font-size: 2rem;
        width: 280px;
        line-height: 2.5;
    }
    .ttl_square::before {
        bottom: 0;
        left: max(-40vw, -500px);
    }
    .btn_link_top {
        width: 280px;
        font-size: 1.8rem;
    }
    .ttl_underline {
        font-size: 2rem;
    }
}

/*---------------------------------
TOP こだわり
---------------------------------*/

.sec_top_commitment .bg_img {
    top: 0;
    right: 0;
}

/*---------------------------------
TOP ご予約
---------------------------------*/

.sec_top_reserve {
    overflow: hidden;
}
.sec_top_reserve .bg_img {
    top: 0;
    left: 0;
}

.sec_top_reserve .ttl_square::before {
    bottom: -20%;
    left: auto;
    right: -80%;
}
@media (min-width: 1024px) {
    .sec_top_reserve {
        overflow: visible;
    }
    .sec_top_reserve .ttl_square::before {
        bottom: 0;
        right: max(-36vw, -500px);
    }
}

/*---------------------------------
TOP MENU
---------------------------------*/
.sec_top_menu {
    background-color: var(--color-primary);
    padding: 3em 0;
}

.sec_top_menu h2 {
    font-size: 1.6rem;
    color: var(--color-wh);
    text-align: center;
    margin: 0 auto 2em;
}

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

@media (min-width: 1024px) {
    .sec_top_menu h2 {
        font-size: 2rem;
    }
}
/*---------------------------------
TOP SNS
---------------------------------*/
.sec_top_sns {
    padding: 3em 0;
}

/*---------------------------------
TOP アクセス
---------------------------------*/

.sec_top_access {
    padding: 3em 0;
}

.access_contents {
    width: min(84%, 1200px);
    margin: 0 auto;
}

.access_contents .address {
    margin-top: 2em;
    text-align: center;
}

.access_contents .address a {
    text-decoration: underline;
    display: inline-block;
    padding-top: 1em;
}



/*---------------------------------



 固定ページ　共通



---------------------------------*/
.inner {
    width: min(90%, 1200px);
    margin: 0 auto;
}

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

.ttl_box {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ttl_box h2 {
    writing-mode: vertical-rl;
    display: inline-block;
    position: relative;
    padding: 2em 0;
    font-size: 1.8rem;
}

.ttl_box h2::before {
    content: '';
    width: 1em;
    height: 1.5em;
    background: url(../img/icon_line02.svg) center / contain no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
}
.ttl_box h2::after {
    content: '';
    width: 1em;
    height: 1.5em;
    background: url(../img/icon_line02.svg) center / contain no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
}

.content_box {
    width: 75%;
}
.content_box p {
    line-height: 2;
}

.list_common {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.list_common li {
    padding-left: 2em;
    position: relative;
}
.list_common li::before {
    content: '';
    width: 1em;
    height: 1em;
    background: url(../img/icon_maru.svg) center / contain no-repeat;
    position: absolute;
    top: 0.3em;
    left: 0;

}

.btn_cta {
    background: #fff;
    padding: 1em 2em 1.2em 2em;
    position: relative;
    border: 1px solid var(--color-primary);
    box-shadow: rgba(var(--color-primary-rgb), 0.25) 0px 30px 60px -12px, rgba(var(--color-bk-rgb), 0.3) 0px 18px 36px -18px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.8rem;
}


.btn_cta::before {
    content: '';
    width: 1.2em;
    height: 1.2em;
    background: url(../img/icon_maru_red.svg) right bottom / contain no-repeat;
    position: absolute;
    bottom: 0.5em;
    right: 1em;
}
.btn_link {
    background: var(--color-bw);
    color: var(--color-wh);
    padding: 0.4em 2em;
    box-shadow: rgba(var(--color-bw-rgb), 0.25) 0px 30px 60px -12px, rgba(var(--color-bk-rgb), 0.3) 0px 18px 36px -18px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.6rem;
}

@media (hover:hover) {
    .btn_cta::before {
        opacity: 0;
    }
    .btn_cta:hover::before {
        opacity: 1;
    }
}

@media (min-width: 768px) {
    
    .inner_flex_sp {
        display: flex;   
    }
}
@media (min-width: 1024px) {
    .ttl_box h2 {
        font-size: 2.4rem;
    }

    .btn_cta {
        font-size: 2rem;
    }
}
/*---------------------------------
 メニュー
---------------------------------*/
/* sec_menu_common */
.sec_menu_common {
    padding: 5em 0;
}

.menu_grid_wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.menu_grid_wrap > img {
    height: 100%;
    object-fit: cover;
}

.menu_grid_wrap > :nth-child(-n + 2) {
    grid-column: span 3;
}
.menu_grid_wrap > :nth-child(n + 3) {
    grid-column: span 2;
}

/* sec_bg_img */
.sec_bg_img {
    padding: 5em 0;
    position: relative;
    z-index: 1;
    color: var(--color-wh);
}

.sec_bg_img .inner {
    width: min(90%, 1024px);
}

.sec_bg_img::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-primary-rgb), .5);
    position: absolute;
    inset: 0;
    z-index: -1;
}
.bg_img_in_sec {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.sec_bg_img .ttl_box h2::before,
.sec_bg_img .ttl_box h2::after {
    background: url(../img/icon_line02_wh.svg) center / contain no-repeat;
}
@media (min-width: 1024px) {
    .sec_bg_img {
        padding: 8em 0;
    }
}
/*---------------------------------
 ご予約
---------------------------------*/
.sec_reserve {
    padding: 3em 0;
}

/*---------------------------------
 ご予約
---------------------------------*/
.sec_feature_common {
    background: var(--color-tertiary);
    padding: 5em 0;
    position: relative;
    z-index: 0;
}

.sec_feature_pd0 {
    padding: 0;
    background: #eee6df;
}
.sec_feature_bg_line {
    overflow: hidden;
}
.sec_feature_bg_line::before {
    content: '';
    width: 100%;
    height: 150%;
    background: url(../img/bg_line.svg) right top / contain no-repeat;
    mix-blend-mode: plus-lighter;
    position: absolute;
    top: 0;
    right: 0;
    translate: 0 -20px;
    z-index: -1;
}

.sec_feature_bg_line .inner {
    width: min(80%, 1200px);
}

.sec_feature_bg_img {
    background-color: rgba(87, 66, 63, 0.8);
    color: var(--color-wh);
}

.sec_feature_pd0 .inner {
    width: 100%;
}


.sec_feature_bg_img .inner {
    width: min(80%, 800px);
}

.sec_feature_bg_img::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(87, 66, 63, 1) 0%, rgba(87, 66, 63, 0.8) 25%, rgba(87, 66, 63, 0.5) 50%, rgba(87, 66, 63, 0.8) 75%, rgba(87, 66, 63, 1) 100%);
    position: absolute;
    inset: 0;
    z-index: -1;
}
.bg_img_feature {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.ttl_feature_common {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 auto 2em;
}

.sec_feature_bg_line .ttl_feature_common {
    writing-mode: vertical-rl;
    text-align: left;
    margin: 0 0 0 2em;
}

.feature_content p {
    line-height: 1.8;
}
.feature_flex_l img {
    height: 100%;
    object-fit: cover;
}

.feature_flex_r {
    padding: 6em 3em;
    position: relative;
    overflow: hidden;
}
.feature_flex_r.bg_icon::before {
    content: '';
    width: 50vw;
    height: 100%;
    background: url(../img/maru02.svg) center / contain no-repeat;
    mix-blend-mode: overlay;
    position: absolute;
    bottom: 0;
    right: 0;
    translate: 40% 40%;
}

.sec_feature_common .btn_link {
    margin: 2em auto 0;
    position: relative;
    transition: 0.2s ease-out;
}

.sec_feature_common .btn_link:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    
    .feature_flex_l {
        width: 50%;
    }
    
    .feature_flex_r {
        width: 50%;
    }

    .feature_flex_r p {
        text-align: left;
    }
    
    .feature_flex_r .btn_link {
        margin: 2em auto 0;
        position: relative;
    }
}
@media (min-width: 1024px) {
    .ttl_feature_common {
        font-size: 2.4rem;
    }

}

/*---------------------------------


投稿


---------------------------------*/
/* 一覧 */
.inner_news {
    background: rgba(var(--color-wh-rgb), .6);
    padding: 2em 2em 3em;
    width: min(90%, 1024px);
    margin: 2em auto;
}

.news_list {
    display: flex;
    flex-direction: column;
}
.news_item {
    width: 100%;
}
.news_item a {
    display: block;
    padding: 1em;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), .4);
    background-color: rgba(var(--color-primary-rgb), 0);
}

.news_item:hover {
    background-color: rgba(var(--color-primary-rgb), 1);
    color: var(--color-wh);
}

.news_item:last-child a {
    border: none;
}
.news_item .date {
    font-size: 1.2rem;
}

.news_item .ttl {
    font-size: 1.4rem;
}
.sec_news .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin: 3em 0 0;
}

.sec_news .page-numbers {
    font-size: 1.2rem;
}
.sec_news .page-numbers:not(.dots) {
    padding: .2em .8em;
}

.sec_news .page-numbers.current {
    border-bottom: 1px solid var(--color-primary);

}

.sec_news a:not(.next, .prev, .current):hover {
    
    background: var(--color-primary);
    color: var(--color-wh);
}

.sec_news .next,
.sec_news .prev {
    position: relative;
}

.sec_news .next:hover::before,
.sec_news .prev:hover::before {
    position: absolute;
    content: '';
    width: 80%;
    height: 100%;
    background: url(../img/icon_line01.svg) center bottom / contain no-repeat;
    bottom: -.5em;
    left: 50%;
    translate: -50% 0;

}

/* 個別 */
.sec_mv.blog .ttl_page_mv {
    aspect-ratio: 3 / 1;
    padding: 2em;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.6rem;
}

.blog_date {
    margin: 0 0 1em;
    font-size: 1.2rem;

}
.blog_inner {
    background: rgba(var(--color-wh-rgb), .95);
    padding: 2em 2em 3em;
    width: min(90%, 1024px);
    margin: 2em auto;
}

.blog_thumb {
    margin: 0 auto 2em;
}

.blog_inner p {
    font-size: 1.4rem;
    padding: 0.5em;
}

.blog_inner figure {
    padding: 1em 0;
}

.blog_inner img {
    width: auto;
    max-width: 100%;
}
.blog_inner .wp-block-table a{color:#0068a0;}
@media (min-width: 1024px) {
    .sec_news .page-numbers {
        font-size: 1.4rem;
    }
    .sec_mv.blog .ttl_page_mv {
        width: min(40%, 600px);
    }
    .blog_inner {
        padding: 3em 6em 5em;
        margin: 4em auto;
    }
}