@charset "utf-8";

/* ==============================

    サイト設定　適宜変更箇所

============================== */

:root {
    /* ベースカラー設定 */
    --main-color: #393836;
    --border-color: rgba(151, 115, 181, .6);
    --black: #393836;
    --purple: #9772B5;
    --light-purple: #BAA4CB;
    --gold: #D5BB74;
    --white: #fff;

    /* フォント・サイズ */
    --base-font-size: 18px;
    --heading-size-l: 64px;
    --heading-size-m: 24px;

    --base-line-height: 2;
    --heading-line-height: 1.25;

    --font-en: "Cormorant", serif;

    /* 余白 */
    --section-padding: 80px 0;

    /* インナー幅 */
    --section-inner: 1100px;
    --section-inner-s: 960px;
    --section-inner-l: 1440px;
}


body,
html {
    font-size: 62.5%;
}

body {
    font-size: var(--base-font-size);
    background-color: #F6F6F6;
    color: var(--main-color);
    font-family: "Zen Old Mincho", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.02em;
}


html {
    scroll-behavior: smooth;
}

html.no-smooth-scroll {
    scroll-behavior: auto;
}

html.modal-open {
    scroll-behavior: auto;
}

a,
a img {
    color: var(--main-color);
    text-decoration: none;
    transition: all 0.2s ease 0s;
}

figure {
    overflow: hidden;
}

section {
    position: relative;
    z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: var(--heading-line-height);
}

h3 {
    font-size: 2.4rem;
}

.section__title {
    margin-bottom: 9.6rem;
}

.section__title--small {
    margin-bottom: 5.6rem;
}

h2.section__title--en {
    font-family: "Cormorant", serif;
    font-size: 6.4rem;
    font-weight: 500;
}

h2.section__title--ja {
    font-size: 1.6rem;
    font-weight: 700;
}

p {
    line-height: var(--base-line-height);
}

/* フォント */
.font-en {
    font-family: var(--font-en);
}

.font-san-serif {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.75;
}

.wp-block-button[data-name]::before {
    font-size: 14px;
    font-weight: bold;
}

/* ボタン */

.wp-block-buttons>.wp-block-button.btn-basic {
    margin-top: 4rem;
}

.btn-basic>.wp-block-button__link {
    position: relative;
    width: 17.7rem !important;
    height: 4rem;
    padding: .8rem 1.4rem .8rem 2.4rem;
    line-height: 1;
    text-align: left;
    background-color: var(--white);
    border: .1rem solid var(--purple) !important;
    color: var(--main-color) !important;
    font-family: "Cormorant", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.btn-basic--ja>.wp-block-button__link {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.6rem;
}

.btn-basic>.wp-block-button__link::after {
    content: '';
    width: .6rem;
    height: 1rem;
    background-image: url(../img/chevron-right.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 1.4rem;
    transform: translateY(-50%);
}

.btn-gold>.wp-block-button__link {
    border: .1rem solid var(--gold) !important;
}


/* 追従ボタン */
.float-btn {
    position: fixed;
    right: 1.6rem;
    bottom: 2.4rem;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.float-btn .open-modal>.wp-block-button__link {
    position: relative;
    font-size: 1.8rem;
}

.float-btn .open-modal>.wp-block-button__link::before {
    content: '';
    width: calc(100% - 1.2rem);
    height: calc(100% - 1.2rem);
    background-image: url(../img/reservation-btn__text.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: rotateText 24s linear infinite;
    pointer-events: none;
}

@keyframes rotateText {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.float-btn-modal.custom-modal>.wp-block-group__inner-container {
    padding: 0;
    background-color: unset;
    border-radius: 0;
}

.float-btn-modal .inner-l {
    width: 100%;
}

.float-btn-modal .wp-block-buttons.close-wrap .close-modal a {
    font-size: 4rem;
    color: var(--gold) !important;
}

.float-btn-modal.custom-modal>.wp-block-group__inner-container {
    width: 90%;
    max-width: 144rem;
}

.float-btn.float-btn-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/*ハンバーガーメニュー　PCでは不要な場合*/
.nav-wrapper {
    display: none;
}

/* ==============================

    サイト設定

============================== */
.under-v {
    display: none;
}

.inner-s {
    width: 90%;
    max-width: var(--section-inner-s);
    margin: 0 auto;
}

.inner {
    max-width: var(--section-inner);
    margin: 0 auto;
}

.inner-l {
    width: 90%;
    max-width: var(--section-inner-l);
    margin: 0 auto;
}


/*画像ホバー時*/

.img-hover {
    transition: .6s;
}

.img-hover:hover {
    opacity: .6;
}

.flex-row {
    flex-direction: row-reverse;
}

/* デバイス別表示設定 */
.pc {
    display: block;
}

.pc-tab {
    display: block;
}

.sp {
    display: none;
}


/* 改行 */
.br-tab,
.br-sp {
    display: none;
}

.br-pc {
    display: block;
}

.txt-gap-16>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.txt-gap-24>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}


/* ==============================

　　固定メニュー

　============================== */

.fix_nav.sp_disp.sp {
    position: fixed;
    z-index: 300;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: black;
}

.wp-block-group.fix_nav.sp_disp-inner {
    gap: 0;
}

.kotei-menu {
    color: #fff;
    padding: .8rem 0 .4rem 0;
    text-align: center;
    border-right: 0.5px solid #F6F6F6;
    position: relative;
}

.kotei-menu:last-child {
    border-right: none;
}

.kotei-menu figure {
    margin: auto;
    width: 2.4rem;
    aspect-ratio: 1;
}

.kotei-menu figure img {
    width: 2rem;
    object-fit: cover;
    vertical-align: baseline;
}

.kotei-menu-line figure img {
    width: 100%;
}

.kotei-menu p {
    font-size: 1.4rem;
}

/*メニュー数*/

.sp_disp-4 .kotei-menu {
    width: 25%;
}

.sp_disp-3 .kotei-menu {
    width: 33.3333333333%;
}

.sp_disp-2 .kotei-menu {
    width: 50%;
}

.sp_disp-1 .kotei-menu {
    width: 100%;
}

/* ==============================

ヘッダーの設定

　============================== */

header {
    width: 100%;
    transition: .6s;
}

.header-inner {
    transition: .6s;
}

.header-inner {
    position: fixed;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    font-weight: 700;
    width: 96%;
    line-height: 1;
}

.header-inner .logo {
    width: 19.4rem;
}

nav.header-inner-menu {
    margin-right: 2.4rem;
}

ul.header-inner-menu {
    gap: 4rem;
}

.is-layout-flex>.insta-link {
    margin-right: 4rem;
}

.header__btn {
    position: relative;
}

.header__btn::before {
    content: '';
    width: calc(100% - .6rem);
    height: calc(100% - .6rem);
    border: .1rem solid rgba(255, 255, 255, .5);
    border-radius: .1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.header__btn a {
    line-height: 1;
}

.fix_nav.sp_disp.sp {
    display: none;
}

.header-inner-menu .wp-block-navigation-item__label {
    position: relative;
    padding-bottom: .2rem;
}

.header-inner-menu .wp-block-navigation-item__label::before {
    background: var(--gold);
    content: '';
    width: 100%;
    height: .2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.header-inner-menu .wp-block-navigation-item__label:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}


/* ==============================

フッターの設定

　============================== */
footer {
    margin-top: 24rem;
    background-color: #19161C;
    color: var(--white);
    padding: 4rem 0 1.6rem 0;
}

.footer-logo {
    width: 28rem;
}

footer a:hover {
    opacity: .7;
}

.footer__shopname {
    margin-bottom: 2.4rem;
}

.footer__shopname p {
    font-size: 1.6rem;
}

.footer__shopname .font-en {
    font-size: 4rem;
}

.footer__info a {
    color: var(--white);
    border-bottom: .1rem solid var(--white);
    font-size: 1.6rem;
}

.footer__info>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.footer__info p {
    line-height: 1.5;
}

.copyright {
    font-size: 1.2rem;
    margin-top: 4rem;
}

/* ==============================
    
    メインビジュアル
    
　============================== */
.mv::before {
    content: '';
    width: 90%;
    height: calc(100% - 8rem);
    background-color: #E7E0EC;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.mv-img {
    padding-top: 20rem;
    width: 85%;
}

.mv__cacth {
    position: absolute;
    top: 11.6rem;
    left: 7%;
    width: calc(100% - 7% - 5%);
}

.mv__cacth h1 {
    font-size: clamp(48px, 10vw, 155px);
    line-height: 1;
    display: flex;
    flex-direction: column;
    row-gap: 2.4rem;
    margin-bottom: 2.4rem;
    font-weight: 500;
}

.mv__cacth h1 span {
    font-size: clamp(32px, 5.9vw, 91px);
    font-weight: bold;
    align-self: flex-end;
}

.mv__cacth p {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: right;
}

/* ==============================
    
    特定商取引に基づく表記・テーブル
    
　============================== */

.wp-block-group.tokusho-wrap {
    padding: var(--section-padding);
}

figure.wp-block-table td,
figure.wp-block-table th {
    border: none;
    padding: 18px 17px;
}

figure.wp-block-table {
    border: 1px solid var(--border-color);
    line-height: var(--base-line-height);
}

.wp-block-table td:first-of-type {
    width: 50%;
    background-color: #ccc;
    border-bottom: 1px solid #fff;
}

.wp-block-table tr td {
    border-bottom: 1px solid var(--border-color);
}

.wp-block-table tr:last-of-type td {
    border-bottom: none;
}

/* ==============================
    
    個人情報保護方針
    
　============================== */

.wp-block-group.policy-wrap {
    padding: var(--section-padding);
    font-size: 16px;
    line-height: var(--base-line-height);
}

.wp-block-group.policy-wrap p {
    margin-bottom: 35px;
}

.wp-block-group.policy-wrap li {
    margin-bottom: 26px;
}

ul {
    line-height: var(--base-line-height);
}

/* ==============================

　　↓　PC版テーマ専用CSSは下記から記述　↓

　============================== */
/*---------------------
    共通項目
---------------------*/
/* 共通項目 - 横並びスタイル */
.flex-style {
    margin-bottom: 20rem;
}

.flex-style:last-child {
    margin-bottom: 0;
}

.flex-style h3 {
    line-height: 1.5;
}

.flex-style:nth-child(odd) .flex-style__entitle,
.flex-style:nth-child(odd) h3 {
    text-align: right;
}

.flex-style:nth-child(odd) .flex-style__entitle {
    padding-right: .8rem;
}

.flex-style:nth-child(odd) .wp-block-group.is-layout-flex.flex-style__btns {
    justify-content: flex-end;
}

.flex-style:nth-child(odd) .is-layout-flex>.flex-style-img--left {
    margin-top: 8rem;
}

.flex-style:nth-child(even) .flex-style__inner {
    flex-direction: row-reverse;
}

.flex-style:nth-child(even) .flex-style__entitle {
    padding-left: .8rem;
}

.flex-style:nth-child(even) .is-layout-flex>.flex-style-img--right {
    margin-top: 8rem;
}

.flex-style__img,
.flex-style__content {
    width: 44%;
}

.flex-style__entitle {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--light-purple);
    padding-bottom: .8rem;
    margin-bottom: 4rem;
    border-bottom: .1rem solid var(--light-purple);
}

.flex-style__entitle::before,
.flex-style__entitle::after {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../img/decor-star.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
}

.flex-style__entitle::before {
    left: -.8rem;
    bottom: -.8rem;
}

.flex-style__entitle::after {
    right: -.8rem;
    bottom: -.8rem;
}

.flex-style__txt h3 {
    margin-bottom: 3.2rem;
}

.wp-block-group.is-layout-flex.flex-style__btns {
    gap: 3.2rem !important;
}

.flex-style-imgs {
    margin-top: 8rem;
}

.flex-style-img--left,
.flex-style-img--right {
    width: 48%;
}

/* ゴールド背景のCTA */
.gold-block {
    padding: 5.6rem 2.5% 8.8rem;
}

.gold-block__txt {
    margin-bottom: 6.4rem;
}

.gold-block__item {
    width: 32.5%;
    background-color: rgba(255, 255, 255, .66);
    border-radius: .8rem;
}

.gold-block h2,
.gold-block p {
    color: var(--main-color) !important;
}

.gold-block p {
    font-size: 1.8rem;
    line-height: 1.5;
}

.gold-block .phone-number {
    margin-bottom: 2.4rem;
}

.gold-block .phone-number p {
    font-size: 2.4rem;
}

.gold-block__title {
    position: relative;
    padding-bottom: .8rem;
    margin-bottom: 2.4rem;
}

.gold-block__title::before {
    content: '';
    width: 5.6rem;
    height: .1rem;
    background-color: var(--gold);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 写真複数枚の横並びレイアウト */
.is-layout-flex>.d-column-block__content {
    width: 38%;
    margin-left: 5%;
}

.d-column-block__imgs {
    width: 55%;
}

.d-column-block__imgs>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
}

.d-column-block__img--big {
    width: 60%;
}

.d-column-block__img--mid {
    width: 32%;
    align-self: flex-end;
    margin-top: -14rem;
}

.d-column-block__img--small {
    width: 37%;
    margin-left: 15%;
    margin-top: -12rem;
}

.d-column-block__txt .custom-marker {
    color: var(--purple);
    font-weight: 500 !important;
}

/* 横並びテキスト背景ゴールドのレイアウト */
.half-bg-flex__img {
    width: 48%;
}

.is-layout-flex>.half-bg-flex__content {
    position: relative;
    width: 48%;
    margin-top: 6.4rem;
    padding-bottom: 4rem;
}

.is-layout-flex>.half-bg-flex__content::before {
    content: '';
    width: 116%;
    height: 100%;
    background-image: url(../img/bg-gold-glitter.jpg);
    opacity: .4;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 3.2rem;
    right: 5%;
    z-index: -1;
}

.half-bg-flex__content>.wp-block-group__inner-container {
    width: 90%;
    max-width: 56rem;
}

.half-bg-flex__content h2 {
    font-size: 3.2rem;
    line-height: 1.75;
    margin-bottom: 6.4rem;
}

.half-bg-flex__txt>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

/* 下層ファーストビュー */
.low-fv {
    justify-content: end;
    margin-bottom: 16rem;
}

.low-fv__title {
    position: absolute;
    top: 50%;
    left: 8%;
    z-index: 2;
}

.low-fv__title h1 {
    font-family: 'Cormorant';
    font-size: 7.2rem;
}

.low-fv__title p {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--purple);
    padding-left: 1.6rem;
    position: relative;
}

.low-fv__title p::before {
    content: '';
    width: 1.2rem;
    height: .1rem;
    background-color: var(--purple);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.low-fv figure {
    position: relative;
    width: 80%;
    aspect-ratio: 3 / 1;
}

.low-fv figure::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #ffffff4d, #ffffff1a 20%, transparent);
    z-index: 1;
}


/*---------------------
    トップページ
---------------------*/
/* トップページ - リード */
.top-lead {
    margin: 18.4rem auto 0;
    max-width: 180rem;
}

.top-lead__img--first {
    width: calc(100% - 45.4rem - 30%);
}

.top-lead__img--first>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
}

figure.wp-block-image.size-full.lead-img1 {
    width: 70%;
    align-self: center;
    margin-bottom: 9.6rem;
}

figure.wp-block-image.size-full.lead-img2 {
    width: 42%;
    align-self: flex-end;
    margin-bottom: 9.6rem;
}

figure.wp-block-image.size-full.lead-img3 {
    width: 50%;
    align-self: flex-start;
}

.top-lead__txt {
    width: 45.4rem;
}

.top-lead__txt .lead__title {
    font-size: 3.2rem;
    line-height: 1.75;
    margin-bottom: 6.4rem;
}

.top-lead__txt .lead__txt>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    row-gap: 4.8rem;
}

.top-lead__txt .lead__txt .custom-marker {
    color: var(--purple);
    font-weight: 700 !important;
}

.top-lead__img--last {
    width: 23%;
}

.top-lead__img--last>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    margin-top: 36rem;
}

figure.wp-block-image.size-full.lead-img4 {
    width: 80%;
    align-self: flex-end;
    margin-bottom: 20rem;
}

figure.wp-block-image.size-full.lead-img5 {
    width: 95%;
    align-self: flex-start;
}

/* トップページ - 5つの強み */
.top-strengths {
    margin-top: 24rem;
}

.strengths__inner {
    position: relative;
    padding-bottom: 6.4rem;
}

.strengths__inner::before {
    content: '';
    width: 60%;
    height: calc(100% - 11.2rem);
    background-image: url(../img/bg-gold-glitter.jpg);
    opacity: .4;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 11.2rem;
    z-index: -1;
}

.strengths__inner>.wp-block-group__inner-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 168rem;
    margin-left: auto;
}

.strengths__content {
    padding-left: 2.5%;
    margin-top: 6.4rem;
    width: 54rem;
}

.strengths__inner .section__title {
    margin-bottom: 4rem;
}


.strengths-item__num,
.strengths-item__title {
    font-family: "Cormorant", serif;
    font-weight: 500;
}

.strengths-item__num {
    font-size: 2.4rem;
    letter-spacing: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: .1rem solid var(--gold);
    border-radius: 9999rem;
}

.strengths-item__title {
    font-size: 2rem;
    line-height: 1.25;
}

.strengths-item__txt {
    font-size: 2rem;
    margin-left: 5.6rem;
}

/* スライダー部分 */
.strengths-slider__images {
    position: relative;
    aspect-ratio: 3 / 2;
    width: calc(100% - 54rem);
    max-width: 104rem;
}

.strengths-slider__images .wp-block-group__inner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.strengths-img {
    position: absolute;
    inset: 0;

    opacity: 0;
    transition: opacity .5s ease;
}

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

.strengths-img.is-active {
    opacity: 1;
    z-index: 2;
}

.strengths-item {
    opacity: .5;
    cursor: pointer;
    transition: opacity .3s ease;
    margin-bottom: 2.4rem;
}

.strengths-item:last-child {
    margin-bottom: 0;
}


.strengths-item.is-active {
    opacity: 1;
}

.strengths-item__txt {
    display: none;
}

.strengths-item.is-active .strengths-item__txt {
    display: block;
}

/* トップページ - メニュー */
.top-menu {
    margin-top: 20rem;
}

/* トップページ - ギャラリー */
.top-gallery {
    margin-top: 20rem;
}

.top-gallery__block {
    position: relative;
    padding: 4rem 0;
    margin-bottom: 12rem;
}

.top-gallery__block:last-child {
    margin-bottom: 0;
}

.top-gallery__block::before {
    content: '';
    width: 60%;
    height: 100%;
    background-image: url(../img/bg-pink.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
}

.top-gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.top-gallery-slider__inner {
    transform: translateX(-16%);
}

.top-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 4.8rem;
    aspect-ratio: 1;
    border-radius: 9999rem;
    background-color: var(--white);
    border: .1rem solid var(--light-purple);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.top-gallery-arrow.prev {
    left: 29%;
    transform: translate(-50%, -50%);
}

.top-gallery-arrow.next {
    left: 67.5%;
    transform: translate(50%, -50%);
}

.top-gallery-arrow.prev:hover {
    transform: translate(-50%, -50%) scale(1.08) !important;
}

.top-gallery-arrow.next:hover {
    transform: translate(50%, -50%) scale(1.08) !important;
}

.top-gallery-arrow::before {
    content: '';
    width: 1.8rem;
    height: 1rem;
    background-image: url(../img/icon-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-gallery-arrow.prev::before {
    transform: translate(-50%, -50%) scaleX(-1);
}

.top-gallery-track {
    display: flex;
    align-items: flex-end;
    gap: 1.6rem;
    transition: transform .5s ease;
    will-change: transform;
}

.top-gallery-item {
    flex-shrink: 0;
    width: 20%;
    transition: transform .4s, opacity .4s;
}

.top-gallery-item.is-active {
    position: relative;
    width: 42%;
    max-width: 82rem;
    margin: 0 4.8rem;
}

.top-gallery-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.top-gallery__block .flex-style__entitle {
    margin-left: auto;
    margin-right: 5%;
    width: 35%;
    margin-bottom: 2.4rem;
}

.top-gallery-content {
    position: absolute;
    opacity: 0;
    transition: opacity .3s;
}

.top-gallery-item.is-active .top-gallery-content {
    opacity: 1;
    top: 1.2rem;
    right: -7.2rem;
    transform: translateX(100%);
    width: 85%;
}

.top-gallery-category {
    line-height: 1;
    width: fit-content;
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.top-gallery-category-decor {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.8rem;
}

.top-gallery-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

a.top-gallery-link {
    display: flex;
    margin: 1.6rem 0 0 .4rem;
    align-items: center;
    gap: .8rem;
}

.top-gallery-link:hover .top-gallery-link-circle {
    transform: translateX(.4rem);
}

a.top-gallery-link p {
    line-height: 1;
    padding-bottom: .4rem;
    border-bottom: .1rem solid var(--main-color);
}

.top-gallery-link-circle {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    background-color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    border: .1rem solid var(--light-purple);
    transition: transform 0.3s ease;
}

.top-gallery-link-circle img {
    width: .6rem;
    opacity: .8;
}

.category-decor-before {
    padding-right: 0.8rem;
}

.category-decor-after {
    padding-left: 0.8rem;
}

.top-gallery-content .wp-block-buttons>.wp-block-button.btn-basic {
    margin-top: 2.4rem;
}

.top-gallery__block:nth-child(odd)::before {
    right: unset;
    left: 0;
}

.top-gallery__block:nth-child(odd) .flex-style__entitle {
    margin-left: 5%;
    margin-right: unset;
}

.top-gallery__block:nth-child(odd) .top-gallery-slider__inner {
    transform: translateX(16%);
}

.top-gallery__block:nth-child(odd) .top-gallery-item.is-active .top-gallery-content {
    right: unset;
    left: -8%;
    transform: translateX(-100%);
}

/* トップページ - ご予約 */
.top-reservation {
    margin-top: 20rem;
}

.reservation-cta .gold-block__item {
    padding: 3.2rem 1.5% 2.4rem 1.5%;
    min-height: 22rem;
    transition: box-shadow 0.3s ease;
}

.reservation-cta .gold-block__item:hover {
    box-shadow: 0 0 0 .1rem var(--gold);
}

.logo-hotpepper,
.line-link {
    margin-bottom: .8rem;
}

.line-link p {
    font-size: 2.2rem;
}

/* トップページ - 採用情報 */
.top-recruit {
    margin-top: 20rem;
}


/*---------------------
    下層ページ
    コンセプト（/concept）
---------------------*/
/* コンセプト - 強み */
.concept-strengths {
    margin-top: 20rem;
}

.flex-style--small .flex-style__txt h3 {
    text-align: left;
    line-height: 1.75;
}

.concept-strengths .flex-style-imgs {
    width: 70%;
    margin-top: 2.4rem;
    margin-left: auto;
}

/* コンセプト - メッセージ */
.concept-message {
    margin-top: 24rem;
}

.concept-message .wp-block-cover {
    padding: 14.4rem 10% 9.6rem 10%;
}

.concept-message .wp-block-cover img {
    object-position: bottom;
}

.concept-message__txt>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}

/* コンセプト - フッター */
#concept footer {
    margin-top: 0;
}

/*---------------------
    下層ページ
    メニュー（/menu）
---------------------*/
/* メニュー - リード */


.menu-lead h2 {
    position: relative;
    font-size: 3.2rem;
    line-height: 1.75;
    margin-bottom: 5.6rem;
    white-space: nowrap;
    z-index: 2;
}

.btn-jump>.wp-block-button__link,
.entry-btns .btn-basic>.wp-block-button__link {
    width: 28rem !important;
    height: 5.6rem !important;
    font-size: 2.4rem;
}

.btn-jump>.wp-block-button__link::after,
.entry-btns .btn-basic>.wp-block-button__link::after {
    width: .8rem;
    height: 1.6rem;
    right: 1.6rem;
    transform: translateY(-50%) rotate(90deg);
    opacity: .8;
}

.jump-links {
    margin-top: 12rem;
}


/* メニュー - 共通 */
.menu-nail,
.menu-eye {
    padding-top: 12rem;
}

.menu-block .txt-gap-24 {
    margin-bottom: 10.4rem;
}

.menu-block .flex-style__entitle {
    margin-bottom: 1.6rem;
}

.flex-style-attention {
    font-size: 1.6rem;
    text-align: right;
}

.menu__list {
    margin-top: 3.2rem;
}

.menu__list>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 5.6rem;
}

.menu-block .menu-item__title {
    margin-bottom: 0.8rem;
}

.menu-block .flex-style__txt h3 {
    text-align: left;
    color: var(--purple);
    margin-bottom: 0;
    font-weight: 900;
}

.menu__item .wp-block-table {
    border: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.menu__item .wp-block-table tr {
    border-bottom: .1rem solid #E7E0EC;
}

.menu__item .wp-block-table td {
    border: none;
    padding: 1.6rem 0;
    width: 7.8rem;
    line-height: 1.5;
    vertical-align: top;
    font-weight: 700;
}

.menu__item .wp-block-table td:first-of-type {
    background-color: unset;
    width: calc(100% - 7.8rem - 1.6rem);
}

.menu__item .wp-block-table td .custom-marker {
    font-size: 1.4rem;
    font-weight: 500 !important;
}

.menu-block .flex-style:nth-child(even) .flex-style__inner {
    flex-direction: row;
}

.menu-item__subtitle {
    display: inline-block;
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--purple);
    border: .1rem solid var(--purple);
    padding: .2rem 1.2rem;
    border-radius: 9999rem;
}

/* メニュー - お願い */
.requests {
    margin-top: 24rem;
    margin-bottom: 8rem;
}

.requests .gold-block__item {
    position: relative;
    padding: 4rem 1.5% 3.2rem;
}

.request-icon {
    width: 4.8rem;
    aspect-ratio: 1;
    background-color: var(--gold);
    border-radius: 9999rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.request-icon figure {
    width: 3.2rem;
}

.requests .gold-block p {
    line-height: 1.75;
}

/*---------------------
    下層ページ
    店舗案内（/information）
---------------------*/
/* 店舗案内 - 店舗情報 */
.shop-info .footer__info a {
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
}

.shop-info .wp-block-table {
    border: none;
    margin-top: 1.6rem;
}

.shop-info .wp-block-table tr {
    vertical-align: baseline;
    line-height: 1.75;
}

.shop-info .wp-block-table td {
    width: calc(100% - 13rem);
    padding: 2.4rem 0 0;
    border: none;
}

.shop-info .wp-block-table td:first-of-type {
    width: 13rem;
    background-color: unset;
    color: var(--purple);
    font-weight: 700;
}

.shop-info .access-link a {
    position: relative;
    padding-left: 2.4rem;
}

.shop-info .access-link a:hover {
    opacity: .8;
}

.shop-info .access-link a::before,
.shop-info .access-link a::after {
    content: '';
    position: absolute;
}

.shop-info .access-link a::before {
    width: 2rem;
    aspect-ratio: 1;
    background-color: var(--light-purple);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.shop-info .access-link a::after {
    content: '';
    line-height: 1;
    width: .8rem;
    height: .8rem;
    border: 0.2rem solid var(--white);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    top: 8px;
    left: .6rem;
    transform: rotate(135deg);
}


/* 店舗案内 - 駅からのアクセス */
.access {
    padding-top: 16rem;
}

.access h3 {
    position: relative;
    padding-bottom: 2.4rem;
    margin-bottom: 6.4rem;
    border-bottom: .1rem solid var(--light-purple);
}

.access h3::before,
.access h3::after {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../img/decor-star.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
}

.access h3::before {
    left: -.8rem;
    bottom: -.8rem;
}

.access h3::after {
    right: -.8rem;
    bottom: -.8rem;
}

.access__item {
    width: 31%;
    position: relative;
}

.access-num {
    font-size: 2.4rem;
    line-height: 1;
    width: 4rem;
    aspect-ratio: 1;
    border: .1rem solid var(--gold);
    border-radius: 9999rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -3.2rem;
    left: -1.6rem;
    z-index: 2;
}

.access__txt {
    padding: 0 .8rem;
    margin-top: 2.4rem;
}

/* 店舗案内 - スタッフ */
.staff {
    padding-top: 20rem;
}

.staff__img {
    width: 45%;
}

.staff__content {
    width: 50%;
}

.staff-name {
    position: relative;
    padding-bottom: 1.6rem;
    margin-bottom: 4rem;
    border-bottom: .1rem solid var(--light-purple);
}

.staff-name::before,
.staff-name::after {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../img/decor-star.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -.8rem;

}

.staff-name::before {
    left: -.8rem;
}

.staff-name::after {
    right: -.8rem;
}

.staff-name--ja {
    font-size: 2.8rem;
    font-weight: 700;
}

.staff-name--en {
    font-size: 2.4rem;
    color: var(--purple);
}

.prof__list>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

.prof__title {
    font-weight: 700;
    margin-bottom: .4rem;
}

.prof-message {
    position: relative;
}

.prof-message .prof__title {
    font-size: 2.8rem;
    line-height: 1;
    color: var(--gold);
    font-weight: 700;
    position: absolute;
    top: 0;
}

.prof-message .prof__txt {
    background-color: var(--white);
    border: .1rem solid var(--gold);
    padding: 1.6rem;
    margin-top: 2.4rem;
}

/* 店舗案内 - FAQ */
.faq {
    padding-top: 20rem;
}

.faq__list>.wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.faq .vk_faq {
    background-color: var(--white);
    box-shadow: 0 0 .8rem rgba(202, 184, 217, .08);
    padding: 0 1.6rem 0 2.4rem;
}

.faq .vk_faq.vk_faq-accordion-close .vk_faq_title,
.faq .vk_faq.vk_faq-accordion-open .vk_faq_title {
    border-bottom: none;
    padding: 1.6rem 0 1.6rem 2.4rem;
}

.faq .vk_faq .vk_faq_title:before,
.faq .vk_faq .vk_faq_content:before {
    font-family: "Cormorant", serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--purple);
    width: auto;
    height: auto;
    top: 50%;
    left: -.8rem;
    transform: translateY(-50%);
}

.faq .vk_faq.vk_faq-accordion-close .vk_faq_title::after,
.faq .vk_faq.vk_faq-accordion-open .vk_faq_title::after {
    top: 35%;
    right: 3.2rem;
    width: 1.2rem;
    height: 1.2rem;
    border-right: 1px solid var(--purple);
    border-top: 1px solid var(--purple);
}

.faq .vk_faq .vk_faq_content {
    margin-bottom: 0;
}

.faq .vk_faq.vk_faq-accordion-open .vk_faq_content {
    padding: 1.6rem 0 1.6rem 2.4rem;
    overflow: visible;
}

/*---------------------
    下層ページ
    求人情報（/recruit）
---------------------*/
/* 求人情報 - 魅力 */
.recruit-charm {
    margin-top: 20rem;
}

/* 求人情報 - 募集要項 */
.job-description {
    margin-top: 20rem;
}

.job-description .wp-block-table {
    border: none;
}

.job-description .wp-block-table tr {
    border-bottom: .2rem solid #F6F6F6;
}

.job-description .wp-block-table td {
    border: none;
    background-color: rgba(255, 255, 255, .6);
}

.job-description .wp-block-table td:first-of-type {
    width: 18.4rem;
    background-color: var(--light-purple);
    color: var(--white);
    font-weight: 700;
}

.entry {
    margin-top: 12rem;
}

.entry h3 {
    position: relative;
    padding-bottom: 2.4rem;
    margin-bottom: 6.4rem;
    border-bottom: .1rem solid var(--light-purple);
}

.entry h3::before,
.entry h3::after {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../img/decor-star.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -.8rem;
}

.entry h3::before {
    left: -.8rem;
}

.entry h3::after {
    right: -.8rem;
}

.entry__table {
    margin: 4rem auto 0 auto;
    background-color: rgba(255, 255, 255, .6);
    border-radius: .8rem;
    width: fit-content;
    padding: 1.6rem 1.6rem 1.6rem 0;
    font-weight: 700;
}

.entry__table p {
    padding: 0 5.2rem;
    border-right: .1rem solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.entry .wp-block-list {
    counter-reset: number;
    list-style: none;
    padding-left: 0;
    margin-left: 4rem;
}

.entry .wp-block-list li {
    counter-increment: number;
    position: relative;
    padding-left: 3.2rem;
    margin-bottom: .4rem;
}

.entry .wp-block-list li:last-child {
    margin-bottom: 0;
}

.entry .wp-block-list li::before {
    content: counter(number, decimal-leading-zero) ".";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 2.4rem;
    line-height: 1;
    font-weight: bold;
    font-family: "Cormorant", serif;
}

.entry .entry-btns .btn-basic>.wp-block-button__link {
    font-family: "Zen Old Mincho", serif;
    font-size: 2rem;
}

.entry .btn-tel>.wp-block-button__link {
    padding: .8rem 1.4rem .8rem 4rem;
}

.entry-btns .btn-basic>.wp-block-button__link::after {
    transform: translateY(-50%);
}

.entry .btn-tel>.wp-block-button__link::before {
    content: '';
    width: 2rem;
    height: 2rem;
    background-image: url(../img/icon-tel.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: unset;
    left: 1.6rem;
}

/*---------------------
    下層ページ
    ギャラリー（/gallery）
---------------------*/
.gallery-page .low-fv {
    margin-bottom: 14.4rem;
}

.gallery-filter {
    margin-bottom: 4.8rem;
    display: flex;
    justify-content: center;
}

.gallery-filter-inner {
    display: flex;
    flex-direction: column;
}

.gallery-filter-row {
    display: flex;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
}

.gallery-filter-row h2 {
    font-weight: 700;
    width: 9.6rem;
    text-align: center;
}

.gallery-filter-btn {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    padding: .4rem 1.6rem;
    border-radius: 14rem;
    border: .1rem solid var(--purple);
    background-color: unset;
    color: var(--purple);
    margin-right: 2.4rem;
}

.gallery-filter-btn.is-active {
    border: none;
    background-color: var(--purple);
    color: var(--white);
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 7.2rem;
    opacity: 1;
    transition: opacity 0.1s ease;
}

.gallery-list.is-fade-out {
    opacity: 0;
}

.gallery-card {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: opacity 0.4s ease;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.gallery-card:hover {
    opacity: .7;
}

.gallery-card img {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
}

.gallery-empty {
    text-align: center;
    font-weight: 700;
    font-size: 2.4rem;
    padding-bottom: 12rem;
}

/* モーダル用データは非表示 */
.gallery-modal-data {
    display: none;
}

/* モーダル */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;

    transition: .3s;
}

.gallery-modal.is-show {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(4px);
}

.gallery-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%) translateY(2rem) scale(.96);
    opacity: 0;
    transition: opacity .4s, transform .4s;
    width: min(95%, 96rem);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    padding: 4rem;
}

.gallery-modal.is-show .gallery-modal-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
}

.gallery-modal-close {
    cursor: pointer;
    position: absolute;
    width: 5.6rem;
    aspect-ratio: 1;
    border-radius: 9999rem;
    border: none;
    background-color: var(--light-purple);
    color: var(--white);
    top: 1.2rem;
    right: 1.2rem;
}

.gallery-modal-inner {
    max-width: 64rem;
    margin: auto;
}

/* スライダー */
.gallery-slider {
    position: relative;
}

.gallery-main {
    flex: 1;
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #F5F5F5;
}

.gallery-main-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.gallery-main-image.is-active {
    display: block;
}

.gallery-prev,
.gallery-next {
    border: .1rem solid var(--purple);
    border-radius: 9999rem;
    background-color: var(--white);
    width: 4.8rem;
    aspect-ratio: 1;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.gallery-next {
    right: 0;
    transform: translate(50%, -50%);
}

.gallery-prev::before,
.gallery-next::before {
    content: '';
    width: 1.4rem;
    height: 2.2rem;
    background-image: url(../img/gallery-chevron.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-next::before {
    transform: rotate(180deg) translate(50%, 50%);
}

/* サムネ */
.gallery-thumbs {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.6rem;
}

.gallery-thumb {
    width: 20%;
    aspect-ratio: 3 / 2;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    opacity: .5;
    background-color: #F5F5F5;
}

.gallery-thumb.is-active {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* テキスト */
.gallery-detail h2 {
    margin: .8rem 0 3.2rem 0;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
}

/* ページネーション */
.gallery-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.gallery-pagination .page-numbers {
    font-family: "Cormorant Infant", serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 1rem;
    text-decoration: none;
    color: rgba(57, 56, 54, .4);
}

.gallery-pagination .page-numbers:hover {
    color: var(--main-color);
}

.gallery-pagination .current {
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
}

.gallery-pagination .page-numbers.prev,
.gallery-pagination .page-numbers.next {
    font-family: "Zen Old Mincho", serif;
    color: var(--purple);
}

.gallery-pagination .page-numbers.prev:hover,
.gallery-pagination .page-numbers.next:hover {
    opacity: .7;
}


/* ==============================

    タブレット横以下

============================== */

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

    .inner {
        width: 90%;
    }

}

/* ==============================

    スマホ・タブレット縦

============================== */

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

    /*ハンバーガーメニュー表示*/
    .nav-wrapper {
        display: block;
    }

    .is-layout-flex>nav.header-inner-menu {
        display: none;
    }

    .pc {
        display: none;
    }

    .br-pc {
        display: none;
    }

    .br-tab {
        display: block;
    }

    body .is-layout-flex.header__btn {
        display: none;
    }

    h2.section__title--en {
        font-size: 4.8rem;
    }

    .section__title {
        margin-bottom: 5.6rem;
    }

    h3 {
        font-size: 1.8rem;
    }


    /*---------------------
    フッター
    ---------------------*/
    footer {
        margin-top: 14.4rem;
    }


    /*---------------------
    トップページ
    ---------------------*/
    /* トップページ - リード */
    .top-lead {
        margin-top: 9.6rem;
    }

    .top-lead__content {
        flex-direction: column;
    }

    .top-lead__img--first,
    .top-lead__img--last {
        position: relative;
        width: 100%;
    }

    .is-layout-flex>.top-lead__txt {
        max-width: 92%;
        margin: auto;
    }

    .top-lead__txt .lead__title {
        font-size: 2.6rem;
        margin-bottom: 5.6rem;
    }

    .top-lead__txt .lead__txt>.wp-block-group__inner-container {
        row-gap: 3.2rem;
    }

    figure.wp-block-image.size-full.lead-img1 {
        align-self: flex-end;
        max-width: 46rem;
        margin: 0 2.5% 16rem 0;
    }

    figure.wp-block-image.size-full.lead-img2 {
        margin: 0 1.5% 2.4rem 0;
    }

    figure.wp-block-image.size-full.lead-img3 {
        position: absolute;
        width: 48%;
        top: 55%;
    }

    .top-lead__img--last>.wp-block-group__inner-container {
        margin-top: 6.4rem;
    }

    figure.wp-block-image.size-full.lead-img4 {
        width: 42%;
        margin-bottom: 0;
    }

    figure.wp-block-image.size-full.lead-img5 {
        width: 50%;
        margin-top: -5.6rem;
    }

    /* トップページ - 強み */
    .top-strengths {
        margin-top: 16rem;
    }

    .strengths__inner>.wp-block-group__inner-container {
        position: relative;
        flex-direction: column;
    }

    .strengths__content {
        width: 100%;
        max-width: 64rem;
        margin: 0 auto;
        padding-right: 2.5%;
    }

    .strengths__inner::before {
        width: 100%;
        top: 3.2rem;
        height: calc(100% - 3.2rem);
    }

    .strengths-slider__nav {
        margin-top: 75%;
    }

    .strengths-slider__nav>.wp-block-group__inner-container {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .strengths-item {
        margin-bottom: 8.8rem;
    }

    .strengths-item>.wp-block-group__inner-container>.wp-block-group {
        flex-direction: column !important;
        gap: .2rem !important;
    }

    .strengths-item__title {
        font-size: 1.6rem;
        text-align: center;
    }

    .strengths-item.is-active .strengths-item__txt {
        font-size: 1.8rem;
        margin-left: 0;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        text-align: center;
    }

    .strengths-slider__images {
        position: absolute;
        top: 12rem;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 56rem;
    }

    .strengths__content .wp-block-buttons {
        justify-content: center;
    }

    .strengths__inner {
        padding-bottom: 4rem;
    }

    /* トップ - メニュー */
    .top-menu {
        margin-top: 14.4rem;
    }

    .flex-style__img {
        width: 46%;
    }

    .flex-style__content {
        width: 50%;
    }

    .flex-style-imgs {
        width: 150%;
        margin-left: -50%;
        margin-top: 5.6rem;
        position: relative;
        z-index: -1;
    }

    .flex-style:nth-child(odd) .is-layout-flex>.flex-style-img--left {
        margin-top: 4rem;
    }

    .flex-style:nth-child(even) .is-layout-flex>.flex-style-img--right {
        margin-top: 4rem;
    }

    .flex-style {
        margin-bottom: 12rem;
    }

    .flex-style:nth-child(even) .flex-style-imgs {
        margin-left: 0;
    }

    .flex-style__entitle {
        font-size: 2.8rem;
    }

    /* トップ - ギャラリー */
    .top-gallery {
        margin-top: 14.4rem;
    }

    /* トップ - ご予約 */
    .top-reservation {
        margin-top: 14.4rem;
    }

    .gold-block {
        padding: 4rem 2.5% 5.6rem;
    }

    .gold-block__inner>.wp-block-group__inner-container>.wp-block-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.6rem !important;
    }

    .gold-block__item {
        width: 48%;
    }

    /* トップ - 採用情報 */
    .top-recruit {
        margin-top: 14.4rem;
    }

    .is-layout-flex>.d-column-block__content {
        width: 45%;
    }

    .d-column-block__imgs {
        width: 48%;
        min-width: auto;
    }

    .d-column-block__img--mid {
        margin-top: 0;
    }

    .d-column-block__img--small {
        margin-top: -4rem;
    }

    /*---------------------
        下層ページ
        共通
    ---------------------*/
    /* 横並びテキスト背景ゴールドのレイアウト */
    .half-bg-flex {
        flex-direction: column;
    }

    .half-bg-flex__img {
        width: 90%;
        max-width: 56rem;
    }

    .is-layout-flex>.half-bg-flex__content {
        margin-top: 0;
        width: 90%;
        max-width: 72rem;
        align-self: flex-end;
        padding-top: 1.6rem;
    }

    .half-bg-flex__content h2 {
        font-size: 2.8rem;
        margin-bottom: 4rem;
    }

    .is-layout-flex>.half-bg-flex__content::before {
        width: 105%;
        height: calc(100% + 4rem);
        top: -4rem;
        right: unset;
        left: -5%;
    }

    /* ファーストビュー */
    .low-fv {
        margin-bottom: 12rem;
    }

    /*---------------------
        下層ページ
        コンセプト（/concept）
    ---------------------*/
    /* コンセプト - 強み */
    .concept-strengths {
        margin-top: 14.4rem;
    }

    .flex-style--small .flex-style__img img {
        aspect-ratio: 1 !important;
    }

    /* コンセプト - メッセージ */
    .concept-message {
        margin-top: 16rem;
    }

    .concept-message .wp-block-cover {
        padding: 10.4rem 5% 8rem;
    }

    .concept-message .wp-block-cover img {
        object-position: right 30% bottom 0;
    }

    /*---------------------
    下層ページ
    メニュー（/menu）
    ---------------------*/
    /* メニュー - リード */
    .menu-lead h2 {
        font-size: 2.6rem;
        margin-bottom: 4rem;
    }

    .menu-nail,
    .menu-eye {
        padding-top: 8rem;
    }

    .menu-block .txt-gap-24 {
        margin-bottom: 8rem;
    }

    .flex-style-attention {
        text-align: left;
        line-height: 1.5;
    }

    .menu-block .flex-style__txt h3 {
        font-size: 2rem;
    }

    .menu__item .wp-block-table td {
        padding: 1.2rem 0;
        font-size: 1.6rem;
    }

    .menu__list>.wp-block-group__inner-container {
        gap: 3.2rem;
    }

    .menu-item__title p {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    /* メニュー - お願い */
    .requests {
        margin-top: 16rem;
        margin-bottom: 4rem;
    }

    .requests .gold-block__inner>.wp-block-group__inner-container>.wp-block-group {
        row-gap: 3.2rem !important;
    }

    .requests .gold-block__item {
        padding: 4rem 5% 3.2rem;
    }


    /*---------------------
    下層ページ
    ギャラリー（/gallery）
    ---------------------*/
    .gallery-page .low-fv {
        margin-bottom: 8rem;
    }

    .gallery-filter {
        margin-bottom: 3.2rem;
    }

    .gallery-filter-inner {
        font-size: 1.6rem;
    }

    .gallery-filter-btn {
        font-size: 1.6rem;
        margin-right: 1.6rem;
    }

    .gallery-pagination .page-numbers {
        font-size: 2rem;
    }

    .gallery-pagination .page-numbers.next {
        font-size: 1.8rem;
    }

    /*---------------------
    下層ページ
    店舗案内（/information）
    ---------------------*/
    .shop-info .d-column-block {
        flex-direction: column;
    }

    .shop-info .is-layout-flex>.d-column-block__content {
        width: 100%;
        max-width: 44rem;
        margin: 0 auto;
    }

    .shop-info .d-column-block__content>.wp-block-group__inner-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shop-info .wp-block-table td {
        padding: 1.6rem 0 0;
    }

    .shop-info .d-column-block__imgs {
        width: 100%;
        margin: 1.6rem 0 0;
    }

    .shop-info .d-column-block__img--big {
        max-width: 48rem;
    }

    .shop-info .d-column-block__img--mid {
        margin-top: -18rem;
    }

    .shop-info .d-column-block__img--small {
        margin-top: -8rem;
    }

    .access {
        padding-top: 10.4rem;
    }

    .access__txt {
        padding: 0;
    }

    .staff {
        padding-top: 14.4rem;
    }

    .staff-name--ja {
        font-size: 2rem;
    }

    .staff-name--en {
        font-size: 1.8rem;
    }

    .staff-name {
        gap: 1.6rem !important;
        padding-bottom: .8rem;
        margin-bottom: 2.4rem;
    }

    .faq {
        padding-top: 14.4rem;
    }

    /*---------------------
    下層ページ
    採用情報（/recruit）
    ---------------------*/
    .recruit-charm {
        margin-top: 14.4rem;
    }

    .job-description {
        margin-top: 14.4rem;
    }

    .entry h3 {
        margin-bottom: 4rem;
    }
}



/* ==============================

    タブレット縦のみ

============================== */

@media (max-width: 1100px) and (min-width: 710px) {

    /*MVの高さ適宜変更*/
    .mainv,
    .slider-01,
    .slider-01 .slide figure.wp-block-image.size-full,
    .slider-01 .slide figure.wp-block-image.size-full img {
        height: 60vh;
    }

    .tel-menu-flex {
        max-width: 374px;
    }

    .vk_spacer-display-tablet {
        display: block !important;
    }

    .vk_spacer-display-pc,
    .vk_spacer-display-mobile {
        display: none !important;
    }

}


/* ==============================

    スマホ以下　

============================== */

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

    :root {
        /* フォント・サイズ */
        --base-font-size: 1.8rem;
        --heading-size-l: 24px;
        --heading-size-m: 18px;

        --base-line-height: 2;
        --heading-line-height: 1.5;

        /* 余白 */
        --section-padding: 40px 0 60px;
    }

    body {
        letter-spacing: 0;
    }

    .pc-tab {
        display: none;
    }

    .sp {
        display: block;
    }

    .br-pc,
    .br-tab {
        display: none;
    }

    .br-sp {
        display: block;
    }

    .fix_nav.sp_disp.sp {
        display: block;
    }

    /*スマホ版MVの高さ適宜変更*/
    .mainv,
    .slider-01,
    .slider-01 .slide figure.wp-block-image.size-full,
    .slider-01 .slide figure.wp-block-image.size-full img {
        height: 60vh;
    }

    .inner {
        width: 90%;
    }

    .vk_spacer-display-mobile {
        display: block !important;
    }

    .vk_spacer-display-pc,
    .vk_spacer-display-tablet {
        display: none !important;
    }

    .font-san-serif {
        font-size: 1.6rem;
    }


    /* ==============================
    
        特定商取引に基づく表記・テーブル

    ============================== */

    .wp-block-table tr td {
        display: block;
        width: 100%;
    }

    .wp-block-table td:first-of-type {
        width: 100%;
    }

    figure.wp-block-table td,
    figure.wp-block-table th {
        border: none;
        padding: 10px 13px;
    }


    /* ==============================
    
    個人情報保護方針
    
　============================== */

    .wp-block-group.policy-wrap p {
        margin-bottom: 23px;
    }

    .wp-block-group.policy-wrap li {
        margin-bottom: 20px;
    }

    /* ==============================
    
        以下テーマ専用CSS
    
    ============================== */
    /*---------------------
    共通
    ---------------------*/
    .flex-style {
        position: relative;
        padding-top: 4rem;
    }

    .flex-style>.wp-block-group__inner-container>.wp-block-group.is-layout-flex {
        flex-direction: column;
        gap: 2.4rem !important;
    }

    .flex-style__img,
    .flex-style__content {
        width: 100%;
    }

    .flex-style .flex-style__entitle {
        margin-bottom: 0;
        width: calc(110% - 2.5%);
        position: absolute;
        top: -1.6rem;
    }

    .flex-style:nth-child(odd) .flex-style__entitle::before,
    .flex-style:nth-child(even) .flex-style__entitle::after {
        content: unset;
    }

    .flex-style:nth-child(odd) .flex-style__entitle {
        left: 0;
    text-align: left;
    padding-left: 2.5%;
    transform: translateX(-5%);
    }

    .flex-style:nth-child(odd) h3 {
        text-align: left;
    }

    .flex-style:nth-child(even) .flex-style__entitle {
    text-align: right;
    right: 0;
    padding-right: 2.5%;
    transform: translateX(5%);
    }

    .flex-style:nth-child(even) h3 {
        text-align: right;
    }

    .flex-style-imgs {
        width: 100%;
        margin-left: 0;
    }

    .flex-style:nth-child(odd) .wp-block-group.is-layout-flex.flex-style__btns {
        justify-content: center;
    }

    .flex-style:nth-child(even) .is-layout-flex>.flex-style-img--right {
        margin-top: 0;
    }

    .flex-style:nth-child(even) .is-layout-flex>.flex-style-img--left {
        margin-top: 4rem;
    }

    /* ボタン */
    .wp-block-group.is-layout-flex.flex-style__btns {
        gap: .8rem !important;
    }

    .btn-basic>.wp-block-button__link {
        height: 4.4rem;
    }

    .wp-block-group.is-layout-flex.flex-style__btns>.wp-block-buttons {
        width: calc((100% - .8rem) / 2);
    }

    .wp-block-group.is-layout-flex.flex-style__btns .btn-basic,
    .wp-block-group.is-layout-flex.flex-style__btns .btn-basic>.wp-block-button__link {
        width: 100%;
    }

    /* フォント */
    h2.section__title--en {
        font-size: 4rem;
    }

    .section__title {
        margin-bottom: 4rem;
    }

    .gold-block__item {
        width: 100%;
    }

    /*---------------------
    ヘッダー
    ---------------------*/
    .header-inner .logo {
        width: 14rem;
    }

    /*---------------------
    フッター
    ---------------------*/
    footer {
        padding-top: 3.2rem;
        padding-bottom: 8.8rem;
    }

    .footer-flex {
        flex-direction: column;
        align-items: center !important;
    }

    .footer-logo {
        width: 20rem;
    }

    .footer__shopname>.wp-block-group.is-layout-flex {
        justify-content: center;
    }

    .copyright {
        text-align: right;
    }

    /*---------------------
    トップページ
    ---------------------*/
    /* トップ - MV */
    .mv {
        height: 90svh;
    }

    .mv .wp-block-group__inner-container {
        height: 100%;
    }

    .mv-img {
        width: 90%;
        height: 90%;
        padding-top: 0;
    }

    .mv-img.wp-block-image img {
        object-fit: cover;
        height: 100%;
    }

    .mv::before {
        height: calc(100% - 8rem);
        top: 8.8rem;
    }

    .mv__cacth {
        width: 95%;
        top: unset;
        left: 2.5%;
        bottom: 0;
    }

    .mv__cacth h1 {
        white-space: nowrap;
        letter-spacing: -.02em;
        row-gap: .8rem;
        margin-bottom: .8rem;
    }

    .mv__cacth p {
        font-size: 1.8rem;
    }

    /* トップ - リード */
    .top-lead__txt .lead__title {
        font-size: 2.4rem;
    }

    /* トップ - 強み */
    .strengths__inner::before {
        width: 100%;
        top: 4rem;
        height: calc(100% - 4rem);
    }

    .strengths-item>.wp-block-group__inner-container>.wp-block-group {
        display: flex !important;
    }

    .strengths-slider__nav {
        margin-top: 80%;
    }

    .strengths-item__num {
        font-size: 1.8rem;
        width: 3.2rem;
        height: 3.2rem;
    }

    .strengths-item.is-active .strengths-item__txt {
        width: 100%;
    }

    /* トップ - ギャラリー */
    .top-gallery .section__title {
        margin-bottom: 0;
    }

    .top-gallery-slider__inner,
    .top-gallery__block:nth-child(odd) .top-gallery-slider__inner {
        transform: translate(0);
    }

    .top-gallery-item.is-active {
        width: 90%;
        margin: 0;
    }

    .top-gallery-track {
        gap: .8rem;
    }

    .top-gallery-item {
        width: 70%;
        margin-bottom: 8.8rem;
    }

    .top-gallery-arrow {
        width: 4rem;
        top: 30%;
        transform: translateY(0);
    }

    .top-gallery-arrow.prev {
        left: 7%;
    }

    .top-gallery-arrow.next {
        left: unset;
        right: 7%;
    }

    .top-gallery__block .flex-style__entitle {
    width: 97.5%;
    padding-left: 2.5%;
    margin-left: unset;
    margin-right: auto;
    }

    .top-gallery__block:nth-child(odd) .flex-style__entitle {
        margin-left: auto;
        text-align: right;
        padding-left: 0;
        padding-right: 2.5%;
    }

    .top-gallery__block:nth-child(even) .flex-style__entitle::before,
    .top-gallery__block:nth-child(odd) .flex-style__entitle::after {
        content: unset;
    }

    .top-gallery-item.is-active .top-gallery-content,
    .top-gallery__block:nth-child(odd) .top-gallery-item.is-active .top-gallery-content {
        transform: translate(0, 0);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: unset;
        margin-top: 3.2rem;
    }


    .top-gallery-category {
        font-size: 1.8rem;
    }

    .top-gallery__block::before {
        width: 100%;
        height: 50%;
        top: unset;
        bottom: 0;
    }

    .top-gallery__block {
        margin-bottom: 8rem;
    }

    a.top-gallery-link {
        margin-left: 3.2rem;
    }

    /* トップ - 採用情報 */
    .d-column-block.wp-block-group.is-layout-flex {
        flex-direction: column-reverse;
    }

    .is-layout-flex>.d-column-block__content {
        width: 100%;
        margin: auto;
    }

    .d-column-block__imgs {
        width: 100%;
    }

    .d-column-block__img--big {
        width: 70%;
    }

    .d-column-block__img--mid {
        margin-top: -8rem;
    }

    .is-layout-flex>.d-column-block__img--small {
        margin-left: auto;
        width: 45%;
    }

    /*---------------------
    下層共通
    ---------------------*/
    .low-fv__title h1 {
        font-size: 4.8rem;
        line-height: 1;
    }

    .low-fv {
        padding-bottom: 4.8rem;
        margin-bottom: 5.6rem;
    }

    .low-fv__title {
        top: unset;
        bottom: 0;
    }

    .low-fv figure {
        width: 100%;
        aspect-ratio: 2 / 1;
    }

    .low-fv figure img {
        height: 100%;
        object-fit: cover;
    }

    .half-bg-flex__img,
    .is-layout-flex>.half-bg-flex__content {
        width: 95%;
        margin: auto;
    }

    .is-layout-flex>.half-bg-flex__content::before {
        width: 110%;
    }

    .half-bg-flex__content>.wp-block-group__inner-container {
        width: 100%;
    }

    .half-bg-flex__content h2 {
        font-size: 2.4rem;
        text-align: center;
        letter-spacing: -.02em;
    }

    .flex-style__list {
        padding-top: 2.4rem;
    }

    .flex-style {
        margin-bottom: 9.6rem;
    }

    .flex-style__img.wp-block-image img {
        aspect-ratio: 3 / 2 !important;
    }

    .flex-style--small .flex-style__img img {
        aspect-ratio: 3 / 2 !important;
    }

    .txt-gap-24>.wp-block-group__inner-container {
        gap: 1.6rem;
    }

    /*---------------------
    下層
    コンセプト
    ---------------------*/
    .concept-lead {
        overflow: hidden;
    }

    .concept-strengths .flex-style>.wp-block-group__inner-container>.wp-block-group.is-layout-flex.flex-style-imgs {
        width: 100%;
        flex-direction: row;
        gap: 0 !important;
    }

    .wp-block-cover,
    .wp-block-cover-image {
        padding: 8rem 2.5%;
    }

    .concept-message__txt>.wp-block-group__inner-container {
        gap: 2.4rem;
    }

    /*---------------------
    下層
    メニュー
    ---------------------*/
    .jump-links {
        margin-top: 8rem;
    }

    .jump-links.wp-block-group.is-layout-flex {
        gap: 1.2rem !important;
    }

    .jump-links .wp-block-buttons>.wp-block-button.btn-basic {
        margin-top: 0;
    }

    .btn-jump>.wp-block-button__link,
    .entry-btns .btn-basic>.wp-block-button__link {
        width: 17rem !important;
        height: 4.8rem !important;
        font-size: 2rem;
    }

    .btn-jump>.wp-block-button__link::after,
    .entry-btns .btn-basic>.wp-block-button__link::after {
        width: .6rem;
        height: 1.2rem;
    }

    .menu-block .txt-gap-24 {
        margin-bottom: 4rem;
    }

    .menu-block .txt-gap-24 p {
        text-align: left;
    }

    .menu__item .wp-block-table td {
        display: inline-block;
    }

    .menu__item .wp-block-table td:first-of-type {
        width: calc(100% - 7.8rem - 1.2rem);
    }

    .flex-style:nth-child(even) .menu-item__title h3 {
        text-align: left;
    }

    /*---------------------
    下層
    ギャラリー
    ---------------------*/
    .gallery-page .low-fv {
        margin-bottom: 4rem;
    }

    .gallery-filter-row {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 4rem;
    }

    .gallery-filter-row h2 {
        font-size: 2.4rem;
        line-height: 1;
    }

    .gallery-filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.6rem;
    }

    .gallery-filter-btn {
        margin-right: 0;
    }

    .gallery-list {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .gallery-modal-content {
        padding: 4rem 1.6rem;
    }

    .gallery-prev,
    .gallery-next {
        width: 3.2rem;
    }

    .gallery-prev::before,
    .gallery-next::before {
        width: 1rem;
        height: 1.6rem;
    }

    .gallery-prev {
        left: 1%;
    }

    .gallery-next {
        right: 1%;
    }


    /*---------------------
    下層
    店舗案内
    ---------------------*/
    .shop-info .d-column-block__img--mid {
        margin-top: -8rem;
    }

    .shop-info .wp-block-table td:first-of-type {
        width: 100%;
    }

    .shop-info .wp-block-table td:nth-child(2) {
        width: 100%;
        padding: 0;
    }

    .shop-info .d-column-block__img--small {
        margin-top: 0;
    }

    .access h3 {
        padding-bottom: 1.6rem;
        margin-bottom: 4.8rem;
    }

    .access>.wp-block-group__inner-container>.is-layout-flex {
        flex-direction: column;
        gap: 4.8rem !important;
    }

    .access__item {
        width: 100%;
    }

    .access-num {
        left: -2%;
    }

    .staff__inner.wp-block-group.is-layout-flex {
        flex-direction: column;
        gap: 3.2rem !important;
    }

    .staff__img,
    .staff__content {
        width: 100%;
    }

    .faq .vk_faq {
        padding: 0 2.4rem;
    }

    .faq .vk_faq.vk_faq-accordion-close .vk_faq_title,
    .faq .vk_faq.vk_faq-accordion-open .vk_faq_title {
        padding: 1.6rem 0;
    }

    .faq .vk_faq .vk_faq_title:before,
    .faq .vk_faq .vk_faq_content:before {
        font-size: 1.8rem;
        top: 2rem;
        left: -1.8rem;
        transform: translateY(0);
    }

    .faq .vk_faq.vk_faq-accordion-open .vk_faq_content {
        font-size: 1.6rem;
        padding-left: 0;
    }

    .faq .vk_faq.vk_faq-accordion-close .vk_faq_title::after,
    .faq .vk_faq.vk_faq-accordion-open .vk_faq_title::after {
        width: .8rem;
        height: .8rem;
        top: 2.6rem;
        right: 1.8rem;
    }

    /*---------------------
    下層
    採用情報
    ---------------------*/
    .recruit-lead {
        overflow: hidden;
    }

    .job-description .wp-block-table td:first-of-type {
        width: 100%;
    }

    .entry {
        margin-top: 5.6rem;
    }

    .entry h3 {
        padding-bottom: 1.6rem;
        margin-bottom: 3.2rem;
    }

    .entry__txt p {
        text-align: left !important;
    }

    .entry__table {
        flex-direction: column;
        padding: 1.6rem 2.5% 3.2rem 5%;
        width: 100%;
    }

    .entry__table p {
        border-right: unset;
        border-bottom: .1rem solid var(--border-color);
        padding: 0 0 1.6rem 0;
        margin-bottom: 1.6rem;
    }

    .entry .wp-block-list {
        margin-left: 0;
    }

    .entry-btns.wp-block-group.is-layout-flex {
        gap: 2.4rem !important;
        flex-direction: column !important;
    }

    .entry-btns .btn-basic>.wp-block-button__link {
        width: 24rem !important;
        max-width: 100%;
    }

    .entry-btns .wp-block-buttons:last-child>.wp-block-button.btn-basic {
        margin-top: 0;
    }



}


/* ==============================

  その他適宜追加する場合は下記に記述

============================== */