@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Oswald:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Design System & Variables - 髯樊ｻゑｽｽ・ｧ髣費｣ｰ繝ｻ・ｺ驛｢・ｧ繝ｻ・ｨ驛｢譎｢・ｽ・ｬ驛｢・ｧ繝ｻ・ｬ驛｢譎｢・ｽ・ｳ驛｢譎冗樟邵ｺ蜥ｲ・ｹ譎｢・ｽ・ｩ驛｢譎｢・ｽ・ｼ
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-base: #FFFFFF;       /* White */
    --clr-accent: #8D7A71;     /* Elegant Warm Brown */
    --clr-sub: #FAF7F2;        /* Light Champagne Beige */
    --clr-dark: #333333;       /* Chic Dark */
    --clr-text: #766a65;       /* Grey Text */

    /* Typography */
    --ff-jp-sans: 'Noto Sans JP', sans-serif;
    --ff-jp-serif: 'Noto Serif JP', serif;
    --ff-en-fancy: 'Cormorant Garamond', serif;
    --ff-en-cursive: 'Dancing Script', cursive;

    /* Base Values */
    --line-height: 1.8;
    --ls: 0.05em;
    --section-gap: 120px;
    --side-padding: 3vw;
    --header-height: 80px;
    --reve-section-title-size: 52px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    background-color: var(--clr-base);
    color: var(--clr-text);
    font-family: var(--ff-jp-sans);
    line-height: var(--line-height);
    letter-spacing: var(--ls);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

.reve-font-roboto {
    font-family: var(--ff-en-fancy);
    font-weight: 400;
    font-size: var(--reve-section-title-size);
    line-height: 1.1;
}
.section-title-script {
    font-family: var(--ff-en-cursive);
    font-weight: 500;
    letter-spacing: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
p, li, .about__text, .profile__text, .menu-card__desc, .contact__list li,
.text-\[14px\], .text-\[18px\] {
    font-size: 16px !important;
}
h3, h4, .profile__name, .menu-card__title, .phi-text-area__main,
.text-3xl {
    font-size: 20px !important;
}
.section-title-script::before {
    content: '';
    width: 46px;
    height: 46px;
    display: block;
    background: url('../img/icon.svg') center / contain no-repeat;
    filter: invert(78%) sepia(15%) saturate(904%) hue-rotate(308deg) brightness(88%) contrast(84%);
    opacity: 1;
}
.reve-font-serif {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
}

.section-padding { padding: 100px 0; }
.container-custom {
    max-width: 1152px;
    margin-left: auto; margin-right: auto;
    padding-left: 1.5rem; padding-right: 1.5rem;
}
@media (min-width: 768px) {
    .container-custom { padding-left: 3rem; padding-right: 3rem; }
}

.img-container { overflow: hidden; background-color: #eee; position: relative; }
.img-container img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.js-fade {
    opacity: 0; transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.js-fade.is-active { opacity: 1; transform: none; }

.anim-soft-fade {
    opacity: 0; filter: blur(12px); transform: translateY(20px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-soft-fade.is-active { opacity: 1; filter: blur(0); transform: translateY(0); }

.anim-fade-up {
    opacity: 0; transform: translateY(40px);
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-fade-up.is-active { opacity: 1; transform: translateY(0); }

.anim-img-reveal { overflow: hidden; position: relative; }
.anim-img-reveal img { transform: scale(1.15); transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1); }
.anim-img-reveal.is-active img { transform: scale(1); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid var(--clr-sub);
    transition: all 0.3s;
}
.header__container {
    width: 100%; max-width: 1562px; height: 100%; margin: 0 auto;
    padding: 0 var(--side-padding); display: flex; justify-content: space-between; align-items: center;
}
.header__logo {
    font-family: var(--ff-jp-serif); font-size: clamp(1.05rem, 2vw, 1.5rem); color: var(--clr-dark); letter-spacing: 0.08em;
}
.header__nav ul { display: flex; gap: clamp(1rem, 2vw, 2.5rem); align-items: center; }
.header__nav ul li a {
    color: var(--clr-text); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
}
.header__nav a:hover { color: var(--clr-accent); }
.header__btn--hp a, .header__btn--line a {
    display: block; padding: 0.6rem 1.4rem; color: var(--clr-text);
    border: 1px solid var(--clr-text); font-size: 0.8rem; transition: 0.3s;
}
.header__btn--hp a:hover, .header__btn--line a:hover { opacity: 0.6; color: var(--clr-accent); border-color: var(--clr-accent); }

@media (max-width: 1024px) {
    .header__nav { display: none; }
}
@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .header__logo { font-size: 20px; }
}

/* Hamburger & SP Nav */
.header__hamburger {
    width: 30px; height: 24px; position: relative; cursor: pointer; z-index: 1000;
    display: none;
}
@media (max-width: 1024px) { .header__hamburger { display: block; } }
.header__hamburger span {
    display: block; width: 100%; height: 2px; background-color: #8D7A71;
    position: absolute; left: 0; transition: all 0.3s;
}
.header__hamburger span:nth-child(1) { top: 0; }
.header__hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__hamburger span:nth-child(3) { bottom: 0; }
.header__hamburger.is-active span:nth-child(1) { transform: translateY(11px) rotate(-45deg); }
.header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.header__hamburger.is-active span:nth-child(3) { transform: translateY(-11px) rotate(45deg); }

.header__sp-nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.98); z-index: 999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: all 0.5s; opacity: 0; visibility: hidden;
}
.header__sp-nav.is-active { right: 0; opacity: 1; visibility: visible; }
.header__sp-nav li { margin-bottom: 2rem; text-align: center; }
.header__sp-nav a {
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    color: var(--clr-text);
    letter-spacing: 0.15em;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}
.header__sp-nav a span {
    display: block !important;
}

/* ==========================================================================
   FV SECTION
   ========================================================================== */
main > section {
    position: relative;
    isolation: isolate;
}
main > section > * {
    position: relative;
    z-index: 1;
}
.fv-new {
    position: relative; width: 100%; min-height: 100vh;
    background: var(--clr-base);
    display: flex; align-items: stretch; justify-content: center; padding-top: var(--header-height);
}
.fv-new__container {
    position: relative; width: 100%; max-width: none; min-height: calc(100vh - var(--header-height));
    display: block; z-index: 1;
    gap: 0; padding: 0;
}
.fv-new__image-left {
    position: relative; z-index: 1; overflow: hidden;
    width: 100%; height: calc(100vh - var(--header-height));
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.fv-new__slide { position: relative; width: 100%; height: 100%; }
.fv-new__slide img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out;
}
.fv-new__slide img.active { opacity: 1; }
.fv-new__scroll {
    position: absolute; bottom: 30px; right: 30px; writing-mode: vertical-rl;
    display: flex; align-items: center; gap: 15px; z-index: 2;
}
.fv-new__scroll-text { font-size: 0.8rem; letter-spacing: 0.2em; color: var(--clr-text); font-family: var(--ff-en-fancy); }
.fv-new__scroll::after {
    content: ''; width: 1px; height: 60px; background-color: var(--clr-text);
    animation: scrollDown 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 768px) {
    .fv-new {
        min-height: 100svh;
        overflow: hidden;
    }
    .fv-new__container {
        display: block;
        min-height: calc(100svh - var(--header-height));
    }
    .fv-new__image-left {
        width: 100%;
        height: calc(100svh - var(--header-height));
        min-height: 0;
    }
    .fv-new__scroll { display: none; }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.phi-text-area { text-align: left; padding: 120px 0 100px; position: relative; max-width: 600px; margin-left: 0; margin-right: auto; }
.about {
    background: url('../img/bg.jpg') 85% center / cover fixed;
    color: #ffffff;
}

/* SP髯懈圜・ｽ・ｺ髯橸ｽｳ陞溽ｿｫﾎ樣垓雜｣・ｽ・ｯ髯昴・・ｽ・ｾ髯滂ｽ｢郢晢ｽｻ about */
@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .about {
        background: none;
        position: relative;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
        color: #ffffff;
    }
    .about::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        /* 驛｢・ｧ繝ｻ・ｹ驛｢譎・ｽｧ・ｭ郢晢ｽｻ髫ｴ蠑ｱ・・ｹ晢ｽｻ驍ｵ・ｺ繝ｻ・ｿ鬮ｫ蜍溘・繝ｻ・ｪ髢ｧ・ｴ・つ繝ｻ・ｧ髯ｷ・ｷ陷ｿ・ｰ繝ｻ・ｸ驗呻ｽｫ郢晢ｽｻ驍ｵ・ｺ雋・∞・ｽ竏ｫ・ｸ・ｲ遶擾ｽｵ繝ｻ・ｸ繝ｻ・ｩ驍ｵ・ｺ闕ｵ譏ｶ闌憺し・ｺ繝ｻ・ｮ驍ｵ・ｺ郢ｧ繝ｻ・ｽ迢暦ｽｹ譎冗函郢晢ｽｻ驛｢・ｧ繝ｻ・ｸ驛｢譎｢・ｽ・･驛｢譎｢・ｽ・ｻ驛｢譎・§・主ｸｷ・ｹ・ｧ繝ｻ・ｦ驛｢譎｢・ｽ・ｳ鬩堺ｼ夲ｽｽ・ｻ驍ｵ・ｺ繝ｻ・ｮ驛｢・ｧ繝ｻ・ｰ驛｢譎｢・ｽ・ｩ驛｢譏ｴ繝ｻ郢晢ｽｻ驛｢・ｧ繝ｻ・ｷ驛｢譎｢・ｽ・ｧ驛｢譎｢・ｽ・ｳ鬮｢・ｹ隲帛･・ｽｽ蟶晢ｽｩ・･鬮ｦ・ｪ郢晢ｽｻ驍ｵ・ｺ繝ｻ・ｾ驍ｵ・ｺ郢晢ｽｻ*/
        background: linear-gradient(135deg, rgba(36, 30, 28, 0.65), rgba(110, 90, 85, 0.65)), url('../img/bg.jpg') 85% center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }
    .about > * {
        position: relative;
        z-index: 1;
    }
}
.phi-text-area__bg-text {
    position: absolute; top: 20px; left: 0;
    font-family: var(--ff-en-cursive); font-size: clamp(60px, 10vw, 100px);
    color: rgba(255, 255, 255, 0.08); z-index: 0; white-space: nowrap; opacity: 0;
    line-height: 1;
    animation: conceptFloatIn 1.8s ease-out forwards;
}
.phi-text-area__catch,
.phi-text-area__desc { position: relative; z-index: 1; }
.phi-text-area__main { font-family: var(--ff-jp-serif); font-size: clamp(1.5rem, 4vw, 2.2rem); color: #ffffff; letter-spacing: 0.1em; margin-top: 40px; }
@media (min-width: 769px) {
    .phi-text-area__main { font-size: 32px !important; }
}
@keyframes conceptFloatIn {
    from { opacity: 0; transform: translateY(10px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.phi-text-area__desc { margin-top: 3rem; color: rgba(255, 255, 255, 0.9); line-height: 2.2; }
.about__text { font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ==========================================================================
   RESERVATION CTA
   ========================================================================== */
.cta-bg-01 { background-color: var(--clr-sub); padding: 80px 0; }
.button-21 { flex: 1 1 0; max-width: 300px; }
.button-21 a {
    font-family: var(--ff-jp-serif); font-size: 16px; letter-spacing: 0.1em;
    color: #fff; border: 1px solid var(--clr-accent);
    display: flex; align-items: center; justify-content: center;
    padding: 16px 32px; margin: 0; width: 100%; min-height: 58px; transition: all 0.3s;
    background: var(--clr-accent);
}
.button-21 a:hover { color: var(--clr-accent); background-color: #fff; border-color: var(--clr-accent); }
.phi-reservation__btns { display: flex; justify-content: center; flex-wrap: nowrap; align-items: stretch; gap: 24px; }
@media (max-width: 768px) {
    .phi-reservation__btns { flex-direction: column; align-items: center; }
    .button-21 { width: 100%; max-width: 320px; }
    .button-21 a { width: 100%; }
}

/* ==========================================================================
   SERVICE SECTION (髫ｴ魃会ｽｽ・ｧREASONS)
   ========================================================================== */
.service-section { background-color: var(--clr-sub); padding: 120px 0 0; }
.service-title { color: var(--clr-accent); }

/* Service Parallax Layout */
.service-parallax-container {
    margin-top: 60px;
    width: 100%;
}
.service-parallax-item {
    position: relative;
    height: 90vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .service-parallax-item {
        background-attachment: scroll;
        height: 80vh;
        min-height: 600px;
    }
}
.service-parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.service-parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--side-padding);
}
.service-parallax-num {
    display: block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 12px;
}
.service-parallax-en {
    font-family: var(--ff-en-fancy);
    font-size: 32px !important;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.service-parallax-jp {
    font-family: var(--ff-jp-serif);
    font-size: 22px !important;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
}
.service-parallax-desc {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ==========================================================================
   MENU SECTION (驛｢・ｧ繝ｻ・ｫ驛｢譎｢・ｽ・ｼ驛｢譎臥櫨隴ｴ繝ｻ
   ========================================================================== */
.menu { padding: 100px 0; background-color: var(--clr-base); }
.menu__grid-cards {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
    max-width: 1120px; margin: 0 auto; padding: 0 var(--side-padding);
}
.menu-card {
    background-color: #fff; padding: 0 0 30px; border-radius: 12px;
    border: 1px solid var(--clr-sub); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease; display: flex; flex-direction: column; overflow: hidden;
}
.menu-card:hover { transform: translateY(-5px); border-color: var(--clr-accent); box-shadow: 0 10px 25px rgba(212, 165, 165, 0.15); }
.menu-card__image {
    width: 100%; aspect-ratio: 4/3; overflow: hidden; background-color: var(--clr-sub);
}
.menu-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card__image img { transform: scale(1.05); }
.menu-card__title {
    font-family: var(--ff-en-fancy), var(--ff-jp-serif); font-size: 1.35rem; color: var(--clr-accent);
    margin: 24px 24px 15px; border-bottom: 1px solid var(--clr-sub); padding-bottom: 12px;
    display: flex; align-items: center; font-weight: 500;
}
.menu-card__title::before {
    content: ''; display: inline-block; width: 6px; height: 6px;
    background-color: var(--clr-accent); border-radius: 50%; margin-right: 12px;
}
.menu-card__desc { font-size: 0.95rem; color: var(--clr-text); line-height: 1.8; flex: 1; padding: 0 24px; }
.menu-card__note { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--clr-accent); font-weight: 500; }
.menu__schedule {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.menu__schedule a {
    min-width: 280px;
    padding: 16px 32px;
    background: var(--clr-accent);
    color: #fff;
    border: 1px solid var(--clr-accent);
    text-align: center;
    font-family: var(--ff-jp-serif);
    font-size: 16px;
}
.menu__schedule a:hover { background: #fff; color: var(--clr-accent); }
@media (max-width: 1024px) {
    .menu__grid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .menu__grid-cards { grid-template-columns: 1fr; }
    .menu-card__title { font-size: 1.25rem; }
}

/* ==========================================================================
   TRIAL LESSON
   ========================================================================== */
.trial-lesson {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../img/bg.jpg') center / cover fixed;
    padding: 100px 0;
    text-align: center;
}
@media (max-width: 767px), (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .trial-lesson {
        background: none;
        position: relative;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
    .trial-lesson::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../img/bg.jpg') center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }
    .trial-lesson > * {
        position: relative;
        z-index: 1;
    }
}
.trial-lesson__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}
.trial-lesson__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background-color: var(--clr-accent);
    color: #fff;
    font-family: var(--ff-jp-serif);
    font-size: 16px;
    letter-spacing: 0.1em;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}
.trial-lesson__btn:hover {
    background-color: #fff;
    color: var(--clr-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 165, 0.3);
}

/* ==========================================================================
   FAQ & CONTACT
   ========================================================================== */
.faq-section { background-color: var(--clr-sub); padding: 100px 0; }

/* FAQ Accordion */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq__item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}
.faq__item[open] .faq__toggle::before {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
}
.faq__item[open] .faq__q {
    color: var(--clr-accent);
}
.faq__q {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-dark);
    position: relative;
    transition: color 0.3s;
}
.faq__q::-webkit-details-marker {
    display: none;
}
.faq__q-icon {
    font-family: var(--ff-en-fancy);
    font-size: 24px;
    color: var(--clr-accent);
    margin-right: 16px;
    flex-shrink: 0;
}
.faq__q-text {
    flex: 1;
    padding-right: 30px;
    line-height: 1.6;
}
.faq__toggle {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}
.faq__toggle::before,
.faq__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--clr-accent);
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
.faq__toggle::before {
    width: 2px;
    height: 14px;
}
.faq__toggle::after {
    width: 14px;
    height: 2px;
}
.faq__a {
    padding: 0 24px 24px;
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.8;
}
.faq__a-inner {
    display: flex;
    border-top: 1px dashed #eee;
    padding-top: 24px;
}
.faq__a-icon {
    font-family: var(--ff-en-fancy);
    font-size: 24px;
    color: #ccc;
    margin-right: 16px;
    flex-shrink: 0;
}
.faq__a-text {
    flex: 1;
}
.contact {
    background: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.9)), url('../img/bg.jpg') center / cover fixed;
    padding: 100px 0;
}

/* SP髯懈圜・ｽ・ｺ髯橸ｽｳ陞溽ｿｫﾎ樣垓雜｣・ｽ・ｯ髯昴・・ｽ・ｾ髯滂ｽ｢郢晢ｽｻ contact */
@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .contact {
        background: none;
        position: relative;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
    .contact::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.9)), url('../img/bg.jpg') center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }
    .contact > * {
        position: relative;
        z-index: 1;
    }
}
.contact__flex { display: flex; gap: 60px; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.contact__info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.contact__map { flex: 1; min-height: 350px; background-color: #eee; }
.contact__map iframe { width: 100%; height: 100%; display: block; }
.contact__list li { display: flex; margin-bottom: 1.2rem; color: var(--clr-text); font-size: 1.05rem; }
.contact__label { width: 6em; color: var(--clr-accent); font-weight: 500; }
.contact__value { flex: 1; line-height: 1.6; }
.contact__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid var(--clr-accent);
    background: #fff;
    color: var(--clr-accent);
    font-family: var(--ff-jp-serif);
}
.contact__button:hover { background: var(--clr-accent); color: #fff; }
@media (max-width: 768px) { 
    .contact__flex { flex-direction: column; gap: 40px; }
    .contact__list li { flex-direction: column; margin-bottom: 1.5rem; } 
    .contact__label { margin-bottom: 0.3rem; }
    .contact__actions { flex-direction: column; }
    .contact__button { width: 100%; }
    .contact__map {
        width: 100%;
        min-height: 300px;
        background-color: #ccc;
    }
    .contact__map iframe {
        width: 100%;
        height: 300px;
        display: block;
    }
}

/* ==========================================================================
   PROFILE
   ========================================================================== */
.profile { background-color: var(--clr-base); padding: 80px 0 120px; }
.profile--contents {
    background: url('../img/contents_bg.jpg') center / cover no-repeat;
}
.profile::after,
.service-section::after,
.contact::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 96px;
    z-index: 2;
    pointer-events: none;
}
.profile::after {
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--clr-sub));
}
.service-section::after {
    display: none;
}
.contact::after {
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--clr-sub));
}
.profile__flex { display: flex; align-items: center; gap: 60px; max-width: 1120px; margin: 0 auto; padding: 0 var(--side-padding); }
.profile__flex--reverse { flex-direction: row-reverse; }
.profile__image { flex: 0 0 520px; padding: 0; border: none; border-radius: 0; }
.profile__image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 0; }
.profile__content { flex: 1; }
.profile__name { font-family: var(--ff-jp-serif); font-size: 1.6rem; color: var(--clr-dark); margin-bottom: 1.5rem; border-bottom: 1px solid var(--clr-sub); padding-bottom: 10px; display: inline-block; }
.profile__text { font-size: 0.95rem; line-height: 2.2; color: var(--clr-text); }
@media (max-width: 768px) {
    .profile__flex { flex-direction: column; text-align: center; gap: 40px; }
    .profile__image { flex: 0 0 auto; width: min(100%, 360px); margin: 0 auto; }
    .profile__content { text-align: left; }
    .profile__name { text-align: center; display: block; }
}

/* ==========================================================================
   FOOTER & FLOATING & HEADER CTA
   ========================================================================== */
.footer { background-color: var(--clr-sub); color: var(--clr-text); padding: 60px 0 40px; text-align: center; }
.footer__logo { font-family: var(--ff-jp-serif); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--clr-accent); letter-spacing: 0.08em; }

.pagetop {
    position: fixed; right: 30px; bottom: 30px; width: 50px; height: 50px;
    background-color: var(--clr-accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.pagetop.is-show { opacity: 1; visibility: visible; }
.pagetop__arrow { width: 10px; height: 10px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(-45deg); margin-top: 4px; }

@media (max-width: 768px) { .sp-cta { display: flex; } .footer { padding-bottom: 100px; } .pagetop { bottom: 80px; right: 20px; } }

/* ==========================================================================
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.class-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.class-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.class-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.class-page, .class-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.class-page h1,
.class-page h2,
.class-page h3,
.class-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.class-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.class-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.class-page, .class-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.class-page h1,
.class-page h2,
.class-page h3,
.class-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.class-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.class-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.class-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .class-page .section-padding {
        padding: 80px 0;
    }

    .class-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .class-page .hero-side-links {
        display: none;
    }
}

.class-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .class-page .sp-only {
        display: block !important;
    }

    .class-page .pc-only {
        display: none !important;
    }
}

.class-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.class-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .class-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .class-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .class-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .class-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.class-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.class-page .hamburger .line-1 {
    top: 0;
}

.class-page .hamburger .line-2 {
    top: 10.5px;
}

.class-page .hamburger .line-3 {
    top: 21px;
}

.class-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.class-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.class-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.class-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-page .sp-nav.active {
    right: 0;
}

.class-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.class-page .sp-nav-list li {
    margin: 40px 0;
}

.class-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.class-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.class-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.class-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.class-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.class-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.class-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.class-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.class-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.class-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.class-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.class-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.class-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.class-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.class-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.class-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.class-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.class-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.class-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.class-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.class-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.class-page .section-title.white {
    color: #fff;
}

.class-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.class-page .title-main::before,
.class-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.class-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.class-page .section-title.white {
    color: #fff;
}

.class-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.class-page .title-main::before,
.class-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.class-page .title-main::before {
    left: 0;
}

.class-page .title-main::after {
    right: 0;
}

.class-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.class-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.class-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.class-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.class-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .class-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .class-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .class-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .class-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .class-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .class-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .class-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .class-page .hero-title-main {
        white-space: nowrap;
    }

    .class-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .class-page .hero-sub::before,
    .class-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .class-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .class-page .media-section .section-title {
        line-height: 1.6;
    }

    .class-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .class-page .voice-grid {
        padding: 0;
    }

    .class-page .voice-card {
        padding: 34px 26px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.class-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.class-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.class-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.class-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.class-page .hero-sp-fv-img {
    display: none;
}

.class-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.class-page .hero-sub::before,
.class-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.class-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.class-page #about>.container {
    position: relative;
    z-index: 1;
}

@keyframes yakinikuImpact {
    0% {
        opacity: 0;
        transform: translateY(44px) scale(0.86);
        filter: blur(8px);
    }
    62% {
        opacity: 1;
        transform: translateY(-4px) scale(1.03);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heatPulse {
    0%,
    100% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 0 rgba(197, 46, 46, 0);
    }
    50% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 28px rgba(197, 46, 46, 0.62);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.class-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.class-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.class-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.class-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.class-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.class-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.class-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.class-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.class-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.class-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.class-page .about-title-text .step-1,
.class-page .about-title-text .step-2,
.class-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.class-page .about-title-text .step-1 {
    transform: translateY(0);
}

.class-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.class-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.class-page .about-title-text .en {
    display: none;
}

.class-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.class-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.class-page .service-title-text .text {
    display: inline;
}

.class-page .service-title-text::after {
    display: none;
}

.class-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.class-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.class-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.class-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.class-page .media-section .section-header {
    text-align: center;
}

.class-page .media-section .section-label {
    color: var(--accent);
}

.class-page .media-section .section-title,
.class-page .media-section .sub-title {
    color: #fff;
}

.class-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.class-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.class-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.class-page #kodawari>.section-header,
.class-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.class-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.class-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.class-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.class-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.class-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.class-page .service-row.reverse {
    flex-direction: row-reverse;
}

.class-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.class-page .service-visual {
    flex: 1.5;
}

.class-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.class-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.class-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .class-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 髯ｷ・ｿ繝ｻ・ｳ髯句ｹ｢・ｽ・ｴ驍ｵ・ｺ繝ｻ・ｫ髮玖ｴ具ｽｻ・｣繝ｻ莨∵・繝ｻ・ｼ驍ｵ・ｺ繝ｻ・ｾ驍ｵ・ｺ陝ｶ蜷ｮﾂ・ｻ驛｢譏ｴ繝ｻ邵ｺ蜀暦ｽｹ・ｧ繝ｻ・ｹ驛｢譎冗樟遶雁ｮ壽ｰ｣闔会ｽ｣繝ｻ・ｰ鬯ｩ・･鬮ｦ・ｪ郢晢ｽｻ驛｢・ｧ郢晢ｽｻ*/
    }
}

@media (max-width: 900px) {
    .class-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .class-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .class-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .class-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .class-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .class-page .service-row,
    .class-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .class-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .class-page .recommended-special {
        padding: 24px 0;
    }

    .class-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .class-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .class-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .class-page .about-sp-title .step-1,
    .class-page .about-sp-title .step-2,
    .class-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .class-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .class-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .class-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .class-page .about-sp-title .accent-color {
        color: #fff;
    }

    .class-page .service-title-text {
        font-size: 1.3rem;
    }

    .class-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .class-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .class-page .about-sp-desc p {
        color: #fff !important;
    }

    .class-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .class-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .class-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .class-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .class-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.class-page,
.class-page body,
.class-page p,
.class-page li,
.class-page dt,
.class-page dd,
.class-page .about-sp-desc,
.class-page .about-text-content.vertical-text,
.class-page .service-desc,
.class-page .item-detail-modern,
.class-page .voice-content,
.class-page .product-description,
.class-page .product-contents {
    font-size: 16px;
}

.class-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.class-page #about::before,
.class-page #about::after {
    display: none;
}

.class-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.class-page .product-heading {
    display: block;
}

.class-page .product-price {
    margin-top: 10px;
}

.class-page .menu-cta,
.class-page .menu-cta span,
.class-page .menu-cta strong {
    color: #fff !important;
}

.class-page #message .recommended-text-area,
.class-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.class-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.class-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.class-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .class-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .class-page .service-row,
    .class-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .class-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .class-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .class-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .class-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .class-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .class-page #message .recommended-text-area,
    .class-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .class-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .class-page footer {
        padding-bottom: 92px;
    }

    .class-page .copyright,
    .class-page .copyright span {
        display: block;
    }

    .class-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.class-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.class-page #about::before,
.class-page #about::after {
    display: none;
}

.class-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.class-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.class-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.class-page .product-heading {
    display: block;
}

.class-page .product-price {
    margin-top: 10px;
}

.class-page .menu-cta,
.class-page .menu-cta span,
.class-page .menu-cta strong {
    color: #fff !important;
}

.class-page #message .recommended-flex-modern {
    align-items: center;
}

.class-page #message .recommended-text-area,
.class-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.class-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.class-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.class-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .class-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .class-page .service-row,
    .class-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .class-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .class-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .class-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .class-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .class-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .class-page #message .recommended-text-area,
    .class-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .class-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .class-page footer {
        padding-bottom: 92px;
    }

    .class-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .class-page .copyright span {
        display: block;
    }
}

.class-page .service-visual {
    position: relative;
    overflow: visible;
}

.class-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.class-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.class-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.class-page .service-title-text {
    justify-content: center;
}

.class-page .service-title-text .text {
    min-height: 230px;
}

.class-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.class-page #message>.section-header,
.class-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.class-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.class-page .product-heading {
    grid-column: 1 / -1;
}

.class-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.class-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.class-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.class-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.class-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.class-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.class-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.class-page .product-card-split .product-price {
    color: #CEA6AC;
}

.class-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.class-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.class-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.class-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.class-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.class-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.class-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.class-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.class-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.class-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.class-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.class-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.class-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.class-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.class-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.class-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.class-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.class-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.class-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.class-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.class-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.class-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.class-page .menu-cta-online {
    background: #483c38;
}

.class-page .menu-cta-tel {
    background: #7d3028;
}

.class-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .class-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .class-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .class-page .service-title-text .text {
        min-height: 205px;
    }

    .class-page #message>.section-header,
    .class-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .class-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
        padding: 30px 20px;
    }

    .class-page .product-list + .section-header {
        margin-top: 80px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(SP) */
    }

    .class-page .product-heading {
        grid-column: auto;
    }

    .class-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .class-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .class-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .class-page .product-card-split .product-image,
    .class-page .product-card-split .product-description,
    .class-page .product-card-split .product-contents-left,
    .class-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .class-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .class-page .product-card-split .product-contents-left,
    .class-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .class-page .split-card-title {
        font-size: 28px !important;
    }

    .class-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .class-page .order-information {
        grid-template-columns: 1fr;
    }

    .class-page .order-information>p {
        grid-column: auto;
    }
}

body.class-page,
.class-page body,
.class-page p,
.class-page li,
.class-page dt,
.class-page dd,
.class-page .about-sp-desc,
.class-page .about-text-content.vertical-text,
.class-page .service-desc,
.class-page .item-detail-modern,
.class-page .voice-content {
    font-size: 16px;
}

.class-page #about {
    border-bottom: 0;
}

.class-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.class-page .service-row,
.class-page .service-row.reverse,
.class-page #kodawari>.service-row:nth-of-type(2),
.class-page #kodawari>.service-row:nth-of-type(3),
.class-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.class-page .service-content {
    flex: 1 1 42%;
}

.class-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.class-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.class-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.class-page .service-title-text .num {
    padding-top: 5px;
}

.class-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.class-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.class-page .product-list,
.class-page #menu>.order-information,
.class-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.class-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.class-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.class-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.class-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.class-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.class-page .product-description p + p {
    margin-top: 22px;
}

.class-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.class-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.class-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.class-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.class-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.class-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.class-page .product-details-list dt,
.class-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.class-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.class-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.class-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.class-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.class-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.class-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.class-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .class-page .service-row,
    .class-page .service-row.reverse,
    .class-page #kodawari>.service-row:nth-of-type(2),
    .class-page #kodawari>.service-row:nth-of-type(3),
    .class-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .class-page .service-main-img {
        width: 85%;
    }

    .class-page .service-title-text .text {
        font-size: 36px;
    }

    .class-page .service-title-note {
        font-size: 27px;
    }

    .class-page .product-card {
        padding: 34px 20px;
    }

    .class-page .product-heading {
        display: block;
    }

    .class-page .product-price {
        margin-top: 12px;
    }

    .class-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .class-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.class-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.class-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .class-page .eyecatch-fixed {
        height: 350px;
    }
}

.class-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.class-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.class-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.class-page #menu>.section-header,
.class-page #menu>.recommended-special,
.class-page #menu>.menu-grid,
.class-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.class-page .product-list + .section-header {
    margin-top: 120px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(PC) */
}

.class-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.class-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.class-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .class-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .class-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .class-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .class-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .class-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .class-page .menu-item-modern * {
        text-align: left !important;
    }
}

.class-page .recommended-special * {
    color: #000 !important;
}

.class-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.class-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.class-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.class-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.class-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.class-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.class-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.class-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.class-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.class-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.class-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.class-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.class-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .class-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .class-page .section-title {
        font-size: 1rem;
    }

    .class-page .item-name-modern {
        font-size: 1.35rem;
    }

    .class-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.class-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.class-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.class-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.class-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.class-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .class-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .class-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .class-page .gold-vertical-line {
        display: none;
    }

    .class-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .class-page .horizontal-slider-track {
        height: 400px;
    }
}

.class-page .menu-category {
    margin-bottom: 80px;
}

.class-page .menu-item {
    margin-bottom: 30px;
}

.class-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.class-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.class-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.class-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.class-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.class-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.class-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.class-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.class-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.class-page #voice>.section-header,
.class-page #voice>.voice-grid,
.class-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.class-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.class-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.class-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.class-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.class-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.class-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.class-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.class-page #access .container {
    position: relative;
    z-index: 2;
}

.class-page #access .section-label {
    color: var(--accent);
}

.class-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.class-page .access-info {
    width: 100%;
}

.class-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.class-page .access-list dd {
    color: #fff;
}

.class-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.class-page .access-map {
    width: 100%;
}

.class-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.class-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.class-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .class-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .class-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .class-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .class-page .section-title.black {
        font-size: 2rem;
    }
}

.class-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.class-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.class-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.class-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.class-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.class-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.class-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.class-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.class-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.class-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.class-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.class-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .class-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.class-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.class-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.class-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.class-page .side-link-btn.hotpepper {
    background: #333;
}

.class-page #about {
    background-color: var(--accent);
}

.class-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.class-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.class-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.class-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.class-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.class-page,
.class-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.class-page,
.class-page body,
.class-page button,
.class-page input,
.class-page textarea,
.class-page .hero-nav-link,
.class-page .section-label,
.class-page .sub-title,
.class-page .category-title-modern {
    font-family: var(--font-jp);
}

.class-page h1,
.class-page h2,
.class-page h3,
.class-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.class-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.class-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.class-page .hero-nav-link .jp {
    color: #777a73;
}

.class-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.class-page .hero-title,
.class-page .hero-title-small,
.class-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.class-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.class-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.class-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.class-page .title-main::before,
.class-page .title-main::after {
    background: #a8aaa3;
}

.class-page #about,
.class-page #kodawari,
.class-page #menu,
.class-page #voice,
.class-page #access {
    background-color: #fff;
    background-image: none;
}

.class-page #about {
    border-bottom: 1px solid #ecece7;
}

.class-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.class-page .auto-slide-img {
    border-radius: 0;
}

.class-page #kodawari {
    background: #fff;
}

.class-page .service-row,
.class-page #kodawari>.service-row:nth-of-type(2),
.class-page #kodawari>.service-row:nth-of-type(3),
.class-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.class-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.class-page .service-title-text,
.class-page .service-desc {
    font-weight: 400;
}

.class-page .service-title-text .num {
    color: #e7ecff;
}

.class-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.class-page .eyecatch-fixed::before {
    z-index: 0;
}

.class-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.class-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.class-page .service-menu-eyecatch::before,
.class-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.class-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.class-page .recommended-special,
.class-page .recommended-special * {
    color: var(--text-main) !important;
}

.class-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.class-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.class-page #voice {
    background: #fafaf8;
}

.class-page #voice::before {
    opacity: 0.06;
}

.class-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.class-page .voice-title,
.class-page .voice-content,
.class-page .access-list dt,
.class-page .access-list dd {
    font-weight: 400;
}

.class-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.class-page #access .section-label,
.class-page #access .section-title.white,
.class-page #access .sub-title,
.class-page .access-list dt,
.class-page .access-list dd,
.class-page .access-list dd a {
    color: var(--text-main);
}

.class-page .access-list dt {
    border-left-color: #7d3028;
}

.class-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.class-page .btn-accent,
.class-page .read-more-btn,
.class-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .class-page .section-label {
        font-size: 2.4rem;
    }

    .class-page .service-row,
    .class-page #kodawari>.service-row:nth-of-type(2),
    .class-page #kodawari>.service-row:nth-of-type(3),
    .class-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.class-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.class-page .menu-category-full {
    grid-column: 1 / -1;
}

.class-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.class-page .item-head-tight {
    margin-bottom: 0;
}

.class-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.class-page .tabelog-access-link {
    margin-right: 15px;
}

.class-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.class-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.class-page #menu>.section-header,
.class-page #menu>.recommended-special,
.class-page #menu>.menu-grid,
.class-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.class-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.class-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.class-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .class-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .class-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .class-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .class-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .class-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .class-page .menu-item-modern * {
        text-align: left !important;
    }
}

.class-page .recommended-special * {
    color: #000 !important;
}

.class-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.class-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.class-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.class-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.class-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.class-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.class-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.class-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.class-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.class-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.class-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.class-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.class-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .class-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .class-page .section-title {
        font-size: 1rem;
    }

    .class-page .item-name-modern {
        font-size: 1.35rem;
    }

    .class-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.class-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.class-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.class-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.class-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.class-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .class-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .class-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .class-page .gold-vertical-line {
        display: none;
    }

    .class-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .class-page .horizontal-slider-track {
        height: 400px;
    }
}

.class-page .menu-category {
    margin-bottom: 80px;
}

.class-page .menu-item {
    margin-bottom: 30px;
}

.class-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.class-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.class-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.class-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.class-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.class-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.class-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.class-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.class-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.class-page #voice>.section-header,
.class-page #voice>.voice-grid,
.class-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.class-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.class-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.class-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.class-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.class-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.class-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.class-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.class-page #access .container {
    position: relative;
    z-index: 2;
}

.class-page #access .section-label {
    color: var(--accent);
}

.class-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.class-page .access-info {
    width: 100%;
}

.class-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.class-page .access-list dd {
    color: #fff;
}

.class-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.class-page .access-map {
    width: 100%;
}

.class-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.class-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.class-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .class-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .class-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .class-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .class-page .section-title.black {
        font-size: 2rem;
    }
}

.class-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.class-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.class-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.class-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.class-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.class-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.class-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.class-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.class-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.class-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.class-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.class-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .class-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.class-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.class-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.class-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.class-page .side-link-btn.hotpepper {
    background: #333;
}

.class-page #about {
    background-color: var(--accent);
}

.class-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.class-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.class-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.class-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.class-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.class-page,
.class-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.class-page,
.class-page body,
.class-page button,
.class-page input,
.class-page textarea,
.class-page .hero-nav-link,
.class-page .section-label,
.class-page .sub-title,
.class-page .category-title-modern {
    font-family: var(--font-jp);
}

.class-page h1,
.class-page h2,
.class-page h3,
.class-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.class-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.class-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.class-page .hero-nav-link .jp {
    color: #777a73;
}

.class-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.class-page .hero-title,
.class-page .hero-title-small,
.class-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.class-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.class-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.class-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.class-page .title-main::before,
.class-page .title-main::after {
    background: #a8aaa3;
}

.class-page #about,
.class-page #kodawari,
.class-page #menu,
.class-page #voice,
.class-page #access {
    background-color: #fff;
    background-image: none;
}

.class-page #about {
    border-bottom: 1px solid #ecece7;
}

.class-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.class-page .auto-slide-img {
    border-radius: 0;
}

.class-page #kodawari {
    background: #fff;
}

.class-page .service-row,
.class-page #kodawari>.service-row:nth-of-type(2),
.class-page #kodawari>.service-row:nth-of-type(3),
.class-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.class-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.class-page .service-title-text,
.class-page .service-desc {
    font-weight: 400;
}

.class-page .service-title-text .num {
    color: #e7ecff;
}

.class-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.class-page .eyecatch-fixed::before {
    z-index: 0;
}

.class-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.class-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.class-page .service-menu-eyecatch::before,
.class-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.class-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.class-page .recommended-special,
.class-page .recommended-special * {
    color: var(--text-main) !important;
}

.class-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.class-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.class-page #voice {
    background: #fafaf8;
}

.class-page #voice::before {
    opacity: 0.06;
}

.class-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.class-page .voice-title,
.class-page .voice-content,
.class-page .access-list dt,
.class-page .access-list dd {
    font-weight: 400;
}

.class-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.class-page #access .section-label,
.class-page #access .section-title.white,
.class-page #access .sub-title,
.class-page .access-list dt,
.class-page .access-list dd,
.class-page .access-list dd a {
    color: var(--text-main);
}

.class-page .access-list dt {
    border-left-color: #7d3028;
}

.class-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.class-page .btn-accent,
.class-page .read-more-btn,
.class-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .class-page .section-label {
        font-size: 2.4rem;
    }

    .class-page .service-row,
    .class-page #kodawari>.service-row:nth-of-type(2),
    .class-page #kodawari>.service-row:nth-of-type(3),
    .class-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.class-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.class-page .menu-category-full {
    grid-column: 1 / -1;
}

.class-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.class-page .item-head-tight {
    margin-bottom: 0;
}

.class-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.class-page .tabelog-access-link {
    margin-right: 15px;
}

.class-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .class-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .class-page .menu-category {
        margin-bottom: 40px;
    }

    .class-page .category-title {
        margin-bottom: 20px;
    }

    .class-page .image-separator {
        margin-top: 5px !important;
    }

    .class-page .back-to-top {
        bottom: 100px;
    }

    .class-page {
        margin-bottom: 60px;
    }
}

.class-page .about-badge-img,
.class-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.class-page #access {
    overflow: hidden;
}

.class-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.class-page,
.class-page body,
.class-page button,
.class-page input,
.class-page textarea,
.class-page .hero-nav-link,
.class-page .section-label,
.class-page .sub-title,
.class-page .category-title-modern,
.class-page .voice-title,
.class-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.class-page,
.class-page body,
.class-page .service-title-text,
.class-page .service-desc,
.class-page .voice-title,
.class-page .voice-content,
.class-page .access-list dt,
.class-page .access-list dd {
    font-weight: 400;
}

.class-page #about,
.class-page #kodawari,
.class-page #menu,
.class-page #access {
    background-color: #fff;
    background-image: none;
}

.class-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.class-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.class-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.class-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.class-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.class-page,
.class-page body,
.class-page .section-title,
.class-page .section-title.white,
.class-page .service-desc,
.class-page .voice-title,
.class-page .voice-content,
.class-page .access-list dt,
.class-page .access-list dd,
.class-page .access-list dd a {
    color: #483c38;
}

.class-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.class-page .about-text-content.vertical-text,
.class-page .about-title-text,
.class-page .about-sp-title,
.class-page .about-sp-title .accent-color,
.class-page .about-sp-desc,
.class-page .about-sp-desc p {
    color: #483c38 !important;
}

.class-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.class-page .service-row,
.class-page #kodawari>.service-row:nth-of-type(2),
.class-page #kodawari>.service-row:nth-of-type(3),
.class-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.class-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.class-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.class-page .service-title-text .text {
    display: block;
}

.class-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .class-page .service-row,
    .class-page .service-row.reverse,
    .class-page #kodawari>.service-row:nth-of-type(2),
    .class-page #kodawari>.service-row:nth-of-type(3),
    .class-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .class-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.class-page #about {
    border-bottom: 0;
}

.class-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.class-page .service-row,
.class-page .service-row.reverse,
.class-page #kodawari>.service-row:nth-of-type(2),
.class-page #kodawari>.service-row:nth-of-type(3),
.class-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.class-page .service-content {
    flex: 1 1 42%;
}

.class-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.class-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.class-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.class-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.class-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.class-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .class-page .service-row,
    .class-page .service-row.reverse,
    .class-page #kodawari>.service-row:nth-of-type(2),
    .class-page #kodawari>.service-row:nth-of-type(3),
    .class-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.class-page,
.class-page body,
.class-page p,
.class-page li,
.class-page dt,
.class-page dd,
.class-page .about-sp-desc,
.class-page .about-text-content.vertical-text,
.class-page .service-desc,
.class-page .item-detail-modern,
.class-page .voice-content,
.class-page .product-description,
.class-page .product-contents {
    font-size: 16px;
}

.class-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.class-page .hero {
    background: #111;
}

.class-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.class-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.class-page .hero-slide-1 {
    animation-delay: 0s;
}

.class-page .hero-slide-2 {
    animation-delay: 6s;
}

.class-page .hero-slide-3 {
    animation-delay: 12s;
}

@keyframes elegantHeroFade {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    8%, 30% {
        opacity: 1;
    }
    38%, 100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.class-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

@keyframes elegantHeroText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.class-page #voice::before {
    display: none;
    background-image: none;
}

.class-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.class-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.class-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.class-page #message .recommended-text-area {
    padding-right: 48px;
}

.class-page #message .recommended-slider-area-modern,
.class-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.class-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.class-page .sp-nav-link span {
    display: none;
}

.class-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.class-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .class-page .hero-slide {
        object-position: center;
    }

    .class-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .class-page #message .recommended-special,
    .class-page #message .recommended-flex-modern,
    .class-page #message .recommended-text-area,
    .class-page #message .recommended-slider-area-modern,
    .class-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .class-page #message .recommended-flex-modern {
        padding: 0;
    }

    .class-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .class-page #message .recommended-slider-area-modern,
    .class-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .class-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.class-page #about::before,
.class-page #about::after {
    display: none;
}

.class-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.class-page .product-heading {
    display: block;
}

.class-page .product-price {
    margin-top: 10px;
}

.class-page .menu-cta,
.class-page .menu-cta span,
.class-page .menu-cta strong {
    color: #fff !important;
}

.class-page #message .recommended-text-area,
.class-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.class-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.class-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.class-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .class-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .class-page .service-row,
    .class-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .class-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .class-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .class-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .class-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .class-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .class-page #message .recommended-text-area,
    .class-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .class-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .class-page footer {
        padding-bottom: 92px;
    }

    .class-page .copyright,
    .class-page .copyright span {
        display: block;
    }

    .class-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.class-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.class-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.class-page #message .recommended-text-area,
.class-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.class-page #message .recommended-text-area {
    padding-right: 48px;
}

.class-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.class-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .class-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .class-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .class-page #message .recommended-text-area,
    .class-page #message .recommended-slider-area-modern,
    .class-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .class-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.class-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.class-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.class-page .eyecatch-fixed::before,
.class-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .class-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .class-page #message .recommended-flex-modern,
    .class-page #message .recommended-text-area,
    .class-page #message .recommended-slider-area-modern,
    .class-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .class-page .eyecatch-fixed,
    .class-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .class-page .eyecatch-fixed::before,
    .class-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .class-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .class-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .class-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .class-page .eyecatch-fixed > *,
    .class-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .class-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .class-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .class-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .class-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .class-page #message .recommended-text-area,
    .class-page #message .recommended-slider-area-modern,
    .class-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .class-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .class-page #message .recommended-slider-area-modern,
    .class-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .class-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .class-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

@keyframes messageMarqueeSp {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((-62vw - 30px) * 5));
    }
}





/* ==========================================================================
   Service Page Styles (Generated from Class Page Styles)
   ========================================================================== */



/* ==========================================================================
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.service-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.service-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.service-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.service-page, .service-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.service-page h1,
.service-page h2,
.service-page h3,
.service-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.service-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.service-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.service-page, .service-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.service-page h1,
.service-page h2,
.service-page h3,
.service-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.service-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.service-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.service-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .service-page .section-padding {
        padding: 80px 0;
    }

    .service-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-page .hero-side-links {
        display: none;
    }
}

.service-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .service-page .sp-only {
        display: block !important;
    }

    .service-page .pc-only {
        display: none !important;
    }
}

.service-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.service-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .service-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .service-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .service-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .service-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.service-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.service-page .hamburger .line-1 {
    top: 0;
}

.service-page .hamburger .line-2 {
    top: 10.5px;
}

.service-page .hamburger .line-3 {
    top: 21px;
}

.service-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.service-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.service-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.service-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page .sp-nav.active {
    right: 0;
}

.service-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.service-page .sp-nav-list li {
    margin: 40px 0;
}

.service-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.service-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.service-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.service-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.service-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.service-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.service-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.service-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.service-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.service-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.service-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.service-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.service-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.service-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.service-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.service-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.service-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.service-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.service-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.service-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.service-page .section-title.white {
    color: #fff;
}

.service-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.service-page .title-main::before,
.service-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.service-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.service-page .section-title.white {
    color: #fff;
}

.service-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.service-page .title-main::before,
.service-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.service-page .title-main::before {
    left: 0;
}

.service-page .title-main::after {
    right: 0;
}

.service-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.service-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.service-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.service-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.service-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .service-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .service-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .service-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .service-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .service-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .service-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .service-page .hero-title-main {
        white-space: nowrap;
    }

    .service-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .service-page .hero-sub::before,
    .service-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .service-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .service-page .media-section .section-title {
        line-height: 1.6;
    }

    .service-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .service-page .voice-grid {
        padding: 0;
    }

    .service-page .voice-card {
        padding: 34px 26px;
    }
}

.service-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.service-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.service-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.service-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.service-page .hero-sp-fv-img {
    display: none;
}

.service-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.service-page .hero-sub::before,
.service-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.service-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.service-page #about>.container {
    position: relative;
    z-index: 1;
}

.service-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.service-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.service-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.service-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.service-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.service-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.service-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.service-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.service-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.service-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.service-page .about-title-text .step-1,
.service-page .about-title-text .step-2,
.service-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.service-page .about-title-text .step-1 {
    transform: translateY(0);
}

.service-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.service-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.service-page .about-title-text .en {
    display: none;
}

.service-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.service-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.service-page .service-title-text .text {
    display: inline;
}

.service-page .service-title-text::after {
    display: none;
}

.service-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.service-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.service-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.service-page .media-section .section-header {
    text-align: center;
}

.service-page .media-section .section-label {
    color: var(--accent);
}

.service-page .media-section .section-title,
.service-page .media-section .sub-title {
    color: #fff;
}

.service-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.service-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.service-page #kodawari>.section-header,
.service-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.service-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.service-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.service-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.service-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

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

.service-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-page .service-visual {
    flex: 1.5;
}

.service-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.service-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.service-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .service-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 髯ｷ・ｿ繝ｻ・ｳ髯句ｹ｢・ｽ・ｴ驍ｵ・ｺ繝ｻ・ｫ髮玖ｴ具ｽｻ・｣繝ｻ莨∵・繝ｻ・ｼ驍ｵ・ｺ繝ｻ・ｾ驍ｵ・ｺ陝ｶ蜷ｮﾂ・ｻ驛｢譏ｴ繝ｻ邵ｺ蜀暦ｽｹ・ｧ繝ｻ・ｹ驛｢譎冗樟遶雁ｮ壽ｰ｣闔会ｽ｣繝ｻ・ｰ鬯ｩ・･鬮ｦ・ｪ郢晢ｽｻ驛｢・ｧ郢晢ｽｻ*/
    }
}

@media (max-width: 900px) {
    .service-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .service-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .service-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .service-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .service-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .service-page .service-row,
    .service-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .service-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .service-page .recommended-special {
        padding: 24px 0;
    }

    .service-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .service-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .service-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .service-page .about-sp-title .step-1,
    .service-page .about-sp-title .step-2,
    .service-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .service-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .service-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .service-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .service-page .about-sp-title .accent-color {
        color: #fff;
    }

    .service-page .service-title-text {
        font-size: 1.3rem;
    }

    .service-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .service-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .service-page .about-sp-desc p {
        color: #fff !important;
    }

    .service-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .service-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .service-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .service-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .service-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.service-page,
.service-page body,
.service-page p,
.service-page li,
.service-page dt,
.service-page dd,
.service-page .about-sp-desc,
.service-page .about-text-content.vertical-text,
.service-page .service-desc,
.service-page .item-detail-modern,
.service-page .voice-content,
.service-page .product-description,
.service-page .product-contents {
    font-size: 16px;
}

.service-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.service-page #about::before,
.service-page #about::after {
    display: none;
}

.service-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.service-page .product-heading {
    display: block;
}

.service-page .product-price {
    margin-top: 10px;
}

.service-page .menu-cta,
.service-page .menu-cta span,
.service-page .menu-cta strong {
    color: #fff !important;
}

.service-page #message .recommended-text-area,
.service-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.service-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.service-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.service-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .service-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .service-page .service-row,
    .service-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .service-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .service-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .service-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .service-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .service-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .service-page #message .recommended-text-area,
    .service-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .service-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .service-page footer {
        padding-bottom: 92px;
    }

    .service-page .copyright,
    .service-page .copyright span {
        display: block;
    }

    .service-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.service-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.service-page #about::before,
.service-page #about::after {
    display: none;
}

.service-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.service-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.service-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.service-page .product-heading {
    display: block;
}

.service-page .product-price {
    margin-top: 10px;
}

.service-page .menu-cta,
.service-page .menu-cta span,
.service-page .menu-cta strong {
    color: #fff !important;
}

.service-page #message .recommended-flex-modern {
    align-items: center;
}

.service-page #message .recommended-text-area,
.service-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.service-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.service-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.service-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .service-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .service-page .service-row,
    .service-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .service-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .service-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .service-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .service-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .service-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .service-page #message .recommended-text-area,
    .service-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .service-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .service-page footer {
        padding-bottom: 92px;
    }

    .service-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .service-page .copyright span {
        display: block;
    }
}

.service-page .service-visual {
    position: relative;
    overflow: visible;
}

.service-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.service-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.service-page .service-title-text {
    justify-content: center;
}

.service-page .service-title-text .text {
    min-height: auto;
}

.service-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.service-page #message>.section-header,
.service-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.service-page .product-heading {
    grid-column: 1 / -1;
}

.service-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.service-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.service-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.service-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.service-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.service-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.service-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.service-page .product-card-split .product-price {
    color: #CEA6AC;
}

.service-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.service-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.service-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.service-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.service-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.service-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.service-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.service-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.service-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.service-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.service-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.service-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.service-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.service-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.service-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.service-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.service-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.service-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.service-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.service-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.service-page .menu-cta-online {
    background: #483c38;
}

.service-page .menu-cta-tel {
    background: #7d3028;
}

.service-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .service-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .service-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .service-page .service-title-text .text {
        min-height: 205px;
    }

    .service-page #message>.section-header,
    .service-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .service-page .product-list + .section-header {
        margin-top: 80px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(SP) */
    }

    .service-page .product-heading {
        grid-column: auto;
    }

    .service-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .service-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .service-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .service-page .product-card-split .product-image,
    .service-page .product-card-split .product-description,
    .service-page .product-card-split .product-contents-left,
    .service-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .service-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .service-page .product-card-split .product-contents-left,
    .service-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .service-page .split-card-title {
        font-size: 28px !important;
    }

    .service-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .service-page .order-information {
        grid-template-columns: 1fr;
    }

    .service-page .order-information>p {
        grid-column: auto;
    }
}

body.service-page,
.service-page body,
.service-page p,
.service-page li,
.service-page dt,
.service-page dd,
.service-page .about-sp-desc,
.service-page .about-text-content.vertical-text,
.service-page .service-desc,
.service-page .item-detail-modern,
.service-page .voice-content {
    font-size: 16px;
}

.service-page #about {
    border-bottom: 0;
}

.service-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.service-page .service-row,
.service-page .service-row.reverse,
.service-page #kodawari>.service-row:nth-of-type(2),
.service-page #kodawari>.service-row:nth-of-type(3),
.service-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.service-page .service-content {
    flex: 1 1 42%;
}

.service-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.service-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.service-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.service-page .service-title-text .num {
    padding-top: 5px;
}

.service-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.service-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.service-page #menu>.product-list,
.service-page #menu>.order-information,
.service-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.service-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.service-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.service-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.service-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.service-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.service-page .product-description p + p {
    margin-top: 22px;
}

.service-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.service-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.service-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.service-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.service-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.service-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.service-page .product-details-list dt,
.service-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.service-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.service-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.service-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.service-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.service-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.service-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.service-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .service-page .service-row,
    .service-page .service-row.reverse,
    .service-page #kodawari>.service-row:nth-of-type(2),
    .service-page #kodawari>.service-row:nth-of-type(3),
    .service-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .service-page .service-main-img {
        width: 85%;
    }

    .service-page .service-title-text .text {
        font-size: 36px;
    }

    .service-page .service-title-note {
        font-size: 27px;
    }

    .service-page .product-card {
        padding: 34px 20px;
    }

    .service-page .product-heading {
        display: block;
    }

    .service-page .product-price {
        margin-top: 12px;
    }

    .service-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.service-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.service-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .service-page .eyecatch-fixed {
        height: 350px;
    }
}

.service-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.service-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.service-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.service-page #menu>.section-header,
.service-page #menu>.recommended-special,
.service-page #menu>.menu-grid,
.service-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.service-page .product-list + .section-header {
    margin-top: 120px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(PC) */
}

.service-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.service-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.service-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .service-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .service-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .service-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .service-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .service-page .menu-item-modern * {
        text-align: left !important;
    }
}

.service-page .recommended-special * {
    color: #000 !important;
}

.service-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.service-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.service-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.service-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.service-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.service-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.service-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.service-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.service-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.service-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.service-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .service-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .service-page .section-title {
        font-size: 1rem;
    }

    .service-page .item-name-modern {
        font-size: 1.35rem;
    }

    .service-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.service-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.service-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.service-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.service-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.service-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .service-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .service-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .service-page .gold-vertical-line {
        display: none;
    }

    .service-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .service-page .horizontal-slider-track {
        height: 400px;
    }
}

.service-page .menu-category {
    margin-bottom: 80px;
}

.service-page .menu-item {
    margin-bottom: 30px;
}

.service-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.service-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.service-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.service-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.service-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.service-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.service-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.service-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.service-page #voice>.section-header,
.service-page #voice>.voice-grid,
.service-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.service-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.service-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.service-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.service-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.service-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.service-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.service-page #access .container {
    position: relative;
    z-index: 2;
}

.service-page #access .section-label {
    color: var(--accent);
}

.service-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.service-page .access-info {
    width: 100%;
}

.service-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.service-page .access-list dd {
    color: #fff;
}

.service-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.service-page .access-map {
    width: 100%;
}

.service-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.service-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .service-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .service-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .service-page .section-title.black {
        font-size: 2rem;
    }
}

.service-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.service-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.service-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.service-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.service-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.service-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.service-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.service-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.service-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.service-page .read-more-btn:hover {
    color: #000;
}

.service-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .service-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.service-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.service-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.service-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.service-page .side-link-btn.hotpepper {
    background: #333;
}

.service-page #about {
    background-color: var(--accent);
}

.service-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.service-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.service-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.service-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.service-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.service-page,
.service-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.service-page,
.service-page body,
.service-page button,
.service-page input,
.service-page textarea,
.service-page .hero-nav-link,
.service-page .section-label,
.service-page .sub-title,
.service-page .category-title-modern {
    font-family: var(--font-jp);
}

.service-page h1,
.service-page h2,
.service-page h3,
.service-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.service-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.service-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.service-page .hero-nav-link .jp {
    color: #777a73;
}

.service-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.service-page .hero-title,
.service-page .hero-title-small,
.service-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.service-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.service-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.service-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.service-page .title-main::before,
.service-page .title-main::after {
    background: #a8aaa3;
}

.service-page #about,
.service-page #kodawari,
.service-page #menu,
.service-page #voice,
.service-page #access {
    background-color: #fff;
    background-image: none;
}

.service-page #about {
    border-bottom: 1px solid #ecece7;
}

.service-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.service-page .auto-slide-img {
    border-radius: 0;
}

.service-page #kodawari {
    background: #fff;
}

.service-page .service-row,
.service-page #kodawari>.service-row:nth-of-type(2),
.service-page #kodawari>.service-row:nth-of-type(3),
.service-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.service-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.service-page .service-title-text,
.service-page .service-desc {
    font-weight: 400;
}

.service-page .service-title-text .num {
    color: #e7ecff;
}

.service-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.service-page .eyecatch-fixed::before {
    z-index: 0;
}

.service-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.service-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.service-page .service-menu-eyecatch::before,
.service-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.service-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.service-page .recommended-special,
.service-page .recommended-special * {
    color: var(--text-main) !important;
}

.service-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.service-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.service-page #voice {
    background: #fafaf8;
}

.service-page #voice::before {
    opacity: 0.06;
}

.service-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.service-page .voice-title,
.service-page .voice-content,
.service-page .access-list dt,
.service-page .access-list dd {
    font-weight: 400;
}

.service-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.service-page #access .section-label,
.service-page #access .section-title.white,
.service-page #access .sub-title,
.service-page .access-list dt,
.service-page .access-list dd,
.service-page .access-list dd a {
    color: var(--text-main);
}

.service-page .access-list dt {
    border-left-color: #7d3028;
}

.service-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.service-page .btn-accent,
.service-page .read-more-btn,
.service-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .service-page .section-label {
        font-size: 2.4rem;
    }

    .service-page .service-row,
    .service-page #kodawari>.service-row:nth-of-type(2),
    .service-page #kodawari>.service-row:nth-of-type(3),
    .service-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.service-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.service-page .menu-category-full {
    grid-column: 1 / -1;
}

.service-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.service-page .item-head-tight {
    margin-bottom: 0;
}

.service-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.service-page .tabelog-access-link {
    margin-right: 15px;
}

.service-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.service-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.service-page #menu>.section-header,
.service-page #menu>.recommended-special,
.service-page #menu>.menu-grid,
.service-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.service-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.service-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .service-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .service-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .service-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .service-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .service-page .menu-item-modern * {
        text-align: left !important;
    }
}

.service-page .recommended-special * {
    color: #000 !important;
}

.service-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.service-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.service-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.service-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.service-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.service-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.service-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.service-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.service-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.service-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.service-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .service-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .service-page .section-title {
        font-size: 1rem;
    }

    .service-page .item-name-modern {
        font-size: 1.35rem;
    }

    .service-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.service-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.service-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.service-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.service-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.service-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .service-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .service-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .service-page .gold-vertical-line {
        display: none;
    }

    .service-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .service-page .horizontal-slider-track {
        height: 400px;
    }
}

.service-page .menu-category {
    margin-bottom: 80px;
}

.service-page .menu-item {
    margin-bottom: 30px;
}

.service-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.service-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.service-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.service-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.service-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.service-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.service-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.service-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.service-page #voice>.section-header,
.service-page #voice>.voice-grid,
.service-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.service-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.service-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.service-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.service-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.service-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.service-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.service-page #access .container {
    position: relative;
    z-index: 2;
}

.service-page #access .section-label {
    color: var(--accent);
}

.service-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.service-page .access-info {
    width: 100%;
}

.service-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.service-page .access-list dd {
    color: #fff;
}

.service-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.service-page .access-map {
    width: 100%;
}

.service-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.service-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .service-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .service-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .service-page .section-title.black {
        font-size: 2rem;
    }
}

.service-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.service-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.service-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.service-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.service-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.service-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.service-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.service-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.service-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.service-page .read-more-btn:hover {
    color: #000;
}

.service-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .service-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.service-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.service-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.service-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.service-page .side-link-btn.hotpepper {
    background: #333;
}

.service-page #about {
    background-color: var(--accent);
}

.service-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.service-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.service-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.service-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.service-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.service-page,
.service-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.service-page,
.service-page body,
.service-page button,
.service-page input,
.service-page textarea,
.service-page .hero-nav-link,
.service-page .section-label,
.service-page .sub-title,
.service-page .category-title-modern {
    font-family: var(--font-jp);
}

.service-page h1,
.service-page h2,
.service-page h3,
.service-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.service-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.service-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.service-page .hero-nav-link .jp {
    color: #777a73;
}

.service-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.service-page .hero-title,
.service-page .hero-title-small,
.service-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.service-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.service-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.service-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.service-page .title-main::before,
.service-page .title-main::after {
    background: #a8aaa3;
}

.service-page #about,
.service-page #kodawari,
.service-page #menu,
.service-page #voice,
.service-page #access {
    background-color: #fff;
    background-image: none;
}

.service-page #about {
    border-bottom: 1px solid #ecece7;
}

.service-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.service-page .auto-slide-img {
    border-radius: 0;
}

.service-page #kodawari {
    background: #fff;
}

.service-page .service-row,
.service-page #kodawari>.service-row:nth-of-type(2),
.service-page #kodawari>.service-row:nth-of-type(3),
.service-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.service-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.service-page .service-title-text,
.service-page .service-desc {
    font-weight: 400;
}

.service-page .service-title-text .num {
    color: #e7ecff;
}

.service-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.service-page .eyecatch-fixed::before {
    z-index: 0;
}

.service-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.service-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.service-page .service-menu-eyecatch::before,
.service-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.service-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.service-page .recommended-special,
.service-page .recommended-special * {
    color: var(--text-main) !important;
}

.service-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.service-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.service-page #voice {
    background: #fafaf8;
}

.service-page #voice::before {
    opacity: 0.06;
}

.service-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.service-page .voice-title,
.service-page .voice-content,
.service-page .access-list dt,
.service-page .access-list dd {
    font-weight: 400;
}

.service-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.service-page #access .section-label,
.service-page #access .section-title.white,
.service-page #access .sub-title,
.service-page .access-list dt,
.service-page .access-list dd,
.service-page .access-list dd a {
    color: var(--text-main);
}

.service-page .access-list dt {
    border-left-color: #7d3028;
}

.service-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.service-page .btn-accent,
.service-page .read-more-btn,
.service-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .service-page .section-label {
        font-size: 2.4rem;
    }

    .service-page .service-row,
    .service-page #kodawari>.service-row:nth-of-type(2),
    .service-page #kodawari>.service-row:nth-of-type(3),
    .service-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.service-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.service-page .menu-category-full {
    grid-column: 1 / -1;
}

.service-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.service-page .item-head-tight {
    margin-bottom: 0;
}

.service-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.service-page .tabelog-access-link {
    margin-right: 15px;
}

.service-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .service-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .service-page .menu-category {
        margin-bottom: 40px;
    }

    .service-page .category-title {
        margin-bottom: 20px;
    }

    .service-page .image-separator {
        margin-top: 5px !important;
    }

    .service-page .back-to-top {
        bottom: 100px;
    }

    .service-page {
        margin-bottom: 60px;
    }
}

.service-page .about-badge-img,
.service-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.service-page #access {
    overflow: hidden;
}

.service-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.service-page,
.service-page body,
.service-page button,
.service-page input,
.service-page textarea,
.service-page .hero-nav-link,
.service-page .section-label,
.service-page .sub-title,
.service-page .category-title-modern,
.service-page .voice-title,
.service-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.service-page,
.service-page body,
.service-page .service-title-text,
.service-page .service-desc,
.service-page .voice-title,
.service-page .voice-content,
.service-page .access-list dt,
.service-page .access-list dd {
    font-weight: 400;
}

.service-page #about,
.service-page #kodawari,
.service-page #menu,
.service-page #access {
    background-color: #fff;
    background-image: none;
}

.service-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.service-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.service-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.service-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.service-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.service-page,
.service-page body,
.service-page .section-title,
.service-page .section-title.white,
.service-page .service-desc,
.service-page .voice-title,
.service-page .voice-content,
.service-page .access-list dt,
.service-page .access-list dd,
.service-page .access-list dd a {
    color: #483c38;
}

.service-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.service-page .about-text-content.vertical-text,
.service-page .about-title-text,
.service-page .about-sp-title,
.service-page .about-sp-title .accent-color,
.service-page .about-sp-desc,
.service-page .about-sp-desc p {
    color: #483c38 !important;
}

.service-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.service-page .service-row,
.service-page #kodawari>.service-row:nth-of-type(2),
.service-page #kodawari>.service-row:nth-of-type(3),
.service-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.service-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.service-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.service-page .service-title-text .text {
    display: block;
}

.service-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .service-page .service-row,
    .service-page .service-row.reverse,
    .service-page #kodawari>.service-row:nth-of-type(2),
    .service-page #kodawari>.service-row:nth-of-type(3),
    .service-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .service-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.service-page #about {
    border-bottom: 0;
}

.service-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.service-page .service-row,
.service-page .service-row.reverse,
.service-page #kodawari>.service-row:nth-of-type(2),
.service-page #kodawari>.service-row:nth-of-type(3),
.service-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.service-page .service-content {
    flex: 1 1 42%;
}

.service-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.service-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.service-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.service-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.service-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.service-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .service-page .service-row,
    .service-page .service-row.reverse,
    .service-page #kodawari>.service-row:nth-of-type(2),
    .service-page #kodawari>.service-row:nth-of-type(3),
    .service-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.service-page,
.service-page body,
.service-page p,
.service-page li,
.service-page dt,
.service-page dd,
.service-page .about-sp-desc,
.service-page .about-text-content.vertical-text,
.service-page .service-desc,
.service-page .item-detail-modern,
.service-page .voice-content,
.service-page .product-description,
.service-page .product-contents {
    font-size: 16px;
}

.service-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.service-page .hero {
    background: #111;
}

.service-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.service-page .hero-slide-1 {
    animation-delay: 0s;
}

.service-page .hero-slide-2 {
    animation-delay: 6s;
}

.service-page .hero-slide-3 {
    animation-delay: 12s;
}

.service-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

.service-page #voice::before {
    display: none;
    background-image: none;
}

.service-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.service-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.service-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.service-page #message .recommended-text-area {
    padding-right: 48px;
}

.service-page #message .recommended-slider-area-modern,
.service-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.service-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.service-page .sp-nav-link span {
    display: none;
}

.service-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.service-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .service-page .hero-slide {
        object-position: center;
    }

    .service-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .service-page #message .recommended-special,
    .service-page #message .recommended-flex-modern,
    .service-page #message .recommended-text-area,
    .service-page #message .recommended-slider-area-modern,
    .service-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .service-page #message .recommended-flex-modern {
        padding: 0;
    }

    .service-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .service-page #message .recommended-slider-area-modern,
    .service-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .service-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.service-page #about::before,
.service-page #about::after {
    display: none;
}

.service-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.service-page .product-heading {
    display: block;
}

.service-page .product-price {
    margin-top: 10px;
}

.service-page .menu-cta,
.service-page .menu-cta span,
.service-page .menu-cta strong {
    color: #fff !important;
}

.service-page #message .recommended-text-area,
.service-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.service-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.service-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.service-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .service-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .service-page .service-row,
    .service-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .service-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .service-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .service-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .service-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .service-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .service-page #message .recommended-text-area,
    .service-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .service-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .service-page footer {
        padding-bottom: 92px;
    }

    .service-page .copyright,
    .service-page .copyright span {
        display: block;
    }

    .service-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.service-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.service-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.service-page #message .recommended-text-area,
.service-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.service-page #message .recommended-text-area {
    padding-right: 48px;
}

.service-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.service-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .service-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .service-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .service-page #message .recommended-text-area,
    .service-page #message .recommended-slider-area-modern,
    .service-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .service-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.service-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.service-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.service-page .eyecatch-fixed::before,
.service-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .service-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .service-page #message .recommended-flex-modern,
    .service-page #message .recommended-text-area,
    .service-page #message .recommended-slider-area-modern,
    .service-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .service-page .eyecatch-fixed,
    .service-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .service-page .eyecatch-fixed::before,
    .service-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .service-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .service-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .service-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .service-page .eyecatch-fixed > *,
    .service-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .service-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .service-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .service-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .service-page #message .recommended-text-area,
    .service-page #message .recommended-slider-area-modern,
    .service-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .service-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .service-page #message .recommended-slider-area-modern,
    .service-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .service-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .service-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

/* ==========================================================================
   FAQ Page Styles (Generated from Class Page Styles)
   ========================================================================== */



/* ==========================================================================
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.faq-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.faq-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.faq-page, .faq-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.faq-page h1,
.faq-page h2,
.faq-page h3,
.faq-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.faq-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.faq-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.faq-page, .faq-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.faq-page h1,
.faq-page h2,
.faq-page h3,
.faq-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.faq-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.faq-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.faq-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .faq-page .section-padding {
        padding: 80px 0;
    }

    .faq-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-page .hero-side-links {
        display: none;
    }
}

.faq-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .faq-page .sp-only {
        display: block !important;
    }

    .faq-page .pc-only {
        display: none !important;
    }
}

.faq-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.faq-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .faq-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .faq-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .faq-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .faq-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.faq-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.faq-page .hamburger .line-1 {
    top: 0;
}

.faq-page .hamburger .line-2 {
    top: 10.5px;
}

.faq-page .hamburger .line-3 {
    top: 21px;
}

.faq-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.faq-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.faq-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.faq-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-page .sp-nav.active {
    right: 0;
}

.faq-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.faq-page .sp-nav-list li {
    margin: 40px 0;
}

.faq-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.faq-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.faq-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.faq-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.faq-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.faq-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.faq-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.faq-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.faq-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.faq-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.faq-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.faq-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.faq-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.faq-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.faq-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.faq-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.faq-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.faq-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.faq-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.faq-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.faq-page .section-title.white {
    color: #fff;
}

.faq-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.faq-page .title-main::before,
.faq-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.faq-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.faq-page .section-title.white {
    color: #fff;
}

.faq-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.faq-page .title-main::before,
.faq-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.faq-page .title-main::before {
    left: 0;
}

.faq-page .title-main::after {
    right: 0;
}

.faq-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.faq-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.faq-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.faq-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.faq-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .faq-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .faq-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .faq-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .faq-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .faq-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .faq-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .faq-page .hero-title-main {
        white-space: nowrap;
    }

    .faq-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .faq-page .hero-sub::before,
    .faq-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .faq-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .faq-page .media-section .section-title {
        line-height: 1.6;
    }

    .faq-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .faq-page .voice-grid {
        padding: 0;
    }

    .faq-page .voice-card {
        padding: 34px 26px;
    }
}

.faq-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.faq-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.faq-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.faq-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.faq-page .hero-sp-fv-img {
    display: none;
}

.faq-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.faq-page .hero-sub::before,
.faq-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.faq-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.faq-page #about>.container {
    position: relative;
    z-index: 1;
}

.faq-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.faq-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.faq-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.faq-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.faq-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.faq-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.faq-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.faq-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.faq-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.faq-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.faq-page .about-title-text .step-1,
.faq-page .about-title-text .step-2,
.faq-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.faq-page .about-title-text .step-1 {
    transform: translateY(0);
}

.faq-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.faq-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.faq-page .about-title-text .en {
    display: none;
}

.faq-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.faq-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.faq-page .service-title-text .text {
    display: inline;
}

.faq-page .service-title-text::after {
    display: none;
}

.faq-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.faq-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.faq-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.faq-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-page .media-section .section-header {
    text-align: center;
}

.faq-page .media-section .section-label {
    color: var(--accent);
}

.faq-page .media-section .section-title,
.faq-page .media-section .sub-title {
    color: #fff;
}

.faq-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.faq-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.faq-page #kodawari>.section-header,
.faq-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.faq-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.faq-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.faq-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.faq-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.faq-page .service-row.reverse {
    flex-direction: row-reverse;
}

.faq-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-page .service-visual {
    flex: 1.5;
}

.faq-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.faq-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.faq-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .faq-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 髯ｷ・ｿ繝ｻ・ｳ髯句ｹ｢・ｽ・ｴ驍ｵ・ｺ繝ｻ・ｫ髮玖ｴ具ｽｻ・｣繝ｻ莨∵・繝ｻ・ｼ驍ｵ・ｺ繝ｻ・ｾ驍ｵ・ｺ陝ｶ蜷ｮﾂ・ｻ驛｢譏ｴ繝ｻ邵ｺ蜀暦ｽｹ・ｧ繝ｻ・ｹ驛｢譎冗樟遶雁ｮ壽ｰ｣闔会ｽ｣繝ｻ・ｰ鬯ｩ・･鬮ｦ・ｪ郢晢ｽｻ驛｢・ｧ郢晢ｽｻ*/
    }
}

@media (max-width: 900px) {
    .faq-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .faq-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .faq-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .faq-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .faq-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .faq-page .service-row,
    .faq-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .faq-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .faq-page .recommended-special {
        padding: 24px 0;
    }

    .faq-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .faq-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .faq-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .faq-page .about-sp-title .step-1,
    .faq-page .about-sp-title .step-2,
    .faq-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .faq-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .faq-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .faq-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .faq-page .about-sp-title .accent-color {
        color: #fff;
    }

    .faq-page .service-title-text {
        font-size: 1.3rem;
    }

    .faq-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .faq-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .faq-page .about-sp-desc p {
        color: #fff !important;
    }

    .faq-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .faq-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .faq-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .faq-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .faq-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.faq-page,
.faq-page body,
.faq-page p,
.faq-page li,
.faq-page dt,
.faq-page dd,
.faq-page .about-sp-desc,
.faq-page .about-text-content.vertical-text,
.faq-page .service-desc,
.faq-page .item-detail-modern,
.faq-page .voice-content,
.faq-page .product-description,
.faq-page .product-contents {
    font-size: 16px;
}

.faq-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.faq-page #about::before,
.faq-page #about::after {
    display: none;
}

.faq-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-page .product-heading {
    display: block;
}

.faq-page .product-price {
    margin-top: 10px;
}

.faq-page .menu-cta,
.faq-page .menu-cta span,
.faq-page .menu-cta strong {
    color: #fff !important;
}

.faq-page #message .recommended-text-area,
.faq-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.faq-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.faq-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.faq-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .faq-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .faq-page .service-row,
    .faq-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .faq-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .faq-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .faq-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .faq-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .faq-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .faq-page #message .recommended-text-area,
    .faq-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .faq-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .faq-page footer {
        padding-bottom: 92px;
    }

    .faq-page .copyright,
    .faq-page .copyright span {
        display: block;
    }

    .faq-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.faq-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.faq-page #about::before,
.faq-page #about::after {
    display: none;
}

.faq-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.faq-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.faq-page .product-heading {
    display: block;
}

.faq-page .product-price {
    margin-top: 10px;
}

.faq-page .menu-cta,
.faq-page .menu-cta span,
.faq-page .menu-cta strong {
    color: #fff !important;
}

.faq-page #message .recommended-flex-modern {
    align-items: center;
}

.faq-page #message .recommended-text-area,
.faq-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.faq-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.faq-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.faq-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .faq-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .faq-page .service-row,
    .faq-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .faq-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .faq-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .faq-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .faq-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .faq-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .faq-page #message .recommended-text-area,
    .faq-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .faq-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .faq-page footer {
        padding-bottom: 92px;
    }

    .faq-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .faq-page .copyright span {
        display: block;
    }
}

.faq-page .service-visual {
    position: relative;
    overflow: visible;
}

.faq-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.faq-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.faq-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.faq-page .service-title-text {
    justify-content: center;
}

.faq-page .service-title-text .text {
    min-height: 230px;
}

.faq-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.faq-page #message>.section-header,
.faq-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.faq-page .product-heading {
    grid-column: 1 / -1;
}

.faq-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.faq-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.faq-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.faq-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.faq-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.faq-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.faq-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.faq-page .product-card-split .product-price {
    color: #CEA6AC;
}

.faq-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.faq-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.faq-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.faq-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.faq-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.faq-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.faq-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.faq-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.faq-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.faq-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.faq-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.faq-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.faq-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.faq-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.faq-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.faq-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.faq-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.faq-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.faq-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.faq-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.faq-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.faq-page .menu-cta-online {
    background: #483c38;
}

.faq-page .menu-cta-tel {
    background: #7d3028;
}

.faq-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .faq-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .faq-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .faq-page .service-title-text .text {
        min-height: 205px;
    }

    .faq-page #message>.section-header,
    .faq-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .faq-page .product-list + .section-header {
        margin-top: 80px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(SP) */
    }

    .faq-page .product-heading {
        grid-column: auto;
    }

    .faq-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .faq-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .faq-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .faq-page .product-card-split .product-image,
    .faq-page .product-card-split .product-description,
    .faq-page .product-card-split .product-contents-left,
    .faq-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .faq-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .faq-page .product-card-split .product-contents-left,
    .faq-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .faq-page .split-card-title {
        font-size: 28px !important;
    }

    .faq-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .faq-page .order-information {
        grid-template-columns: 1fr;
    }

    .faq-page .order-information>p {
        grid-column: auto;
    }
}

body.faq-page,
.faq-page body,
.faq-page p,
.faq-page li,
.faq-page dt,
.faq-page dd,
.faq-page .about-sp-desc,
.faq-page .about-text-content.vertical-text,
.faq-page .service-desc,
.faq-page .item-detail-modern,
.faq-page .voice-content {
    font-size: 16px;
}

.faq-page #about {
    border-bottom: 0;
}

.faq-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.faq-page .service-row,
.faq-page .service-row.reverse,
.faq-page #kodawari>.service-row:nth-of-type(2),
.faq-page #kodawari>.service-row:nth-of-type(3),
.faq-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.faq-page .service-content {
    flex: 1 1 42%;
}

.faq-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.faq-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.faq-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.faq-page .service-title-text .num {
    padding-top: 5px;
}

.faq-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.faq-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.faq-page #menu>.product-list,
.faq-page #menu>.order-information,
.faq-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.faq-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.faq-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.faq-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.faq-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.faq-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.faq-page .product-description p + p {
    margin-top: 22px;
}

.faq-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.faq-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.faq-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.faq-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.faq-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.faq-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.faq-page .product-details-list dt,
.faq-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.faq-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.faq-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.faq-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.faq-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.faq-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.faq-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.faq-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .faq-page .service-row,
    .faq-page .service-row.reverse,
    .faq-page #kodawari>.service-row:nth-of-type(2),
    .faq-page #kodawari>.service-row:nth-of-type(3),
    .faq-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .faq-page .service-main-img {
        width: 85%;
    }

    .faq-page .service-title-text .text {
        font-size: 36px;
    }

    .faq-page .service-title-note {
        font-size: 27px;
    }

    .faq-page .product-card {
        padding: 34px 20px;
    }

    .faq-page .product-heading {
        display: block;
    }

    .faq-page .product-price {
        margin-top: 12px;
    }

    .faq-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.faq-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.faq-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .faq-page .eyecatch-fixed {
        height: 350px;
    }
}

.faq-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.faq-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.faq-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.faq-page #menu>.section-header,
.faq-page #menu>.recommended-special,
.faq-page #menu>.menu-grid,
.faq-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page .product-list + .section-header {
    margin-top: 120px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(PC) */
}

.faq-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.faq-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.faq-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .faq-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .faq-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .faq-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .faq-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .faq-page .menu-item-modern * {
        text-align: left !important;
    }
}

.faq-page .recommended-special * {
    color: #000 !important;
}

.faq-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.faq-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.faq-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.faq-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.faq-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.faq-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.faq-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.faq-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.faq-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.faq-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.faq-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.faq-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.faq-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .faq-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .faq-page .section-title {
        font-size: 1rem;
    }

    .faq-page .item-name-modern {
        font-size: 1.35rem;
    }

    .faq-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.faq-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.faq-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.faq-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.faq-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.faq-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .faq-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .faq-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .faq-page .gold-vertical-line {
        display: none;
    }

    .faq-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .faq-page .horizontal-slider-track {
        height: 400px;
    }
}

.faq-page .menu-category {
    margin-bottom: 80px;
}

.faq-page .menu-item {
    margin-bottom: 30px;
}

.faq-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.faq-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.faq-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.faq-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.faq-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.faq-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.faq-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.faq-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.faq-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.faq-page #voice>.section-header,
.faq-page #voice>.voice-grid,
.faq-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.faq-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.faq-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.faq-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.faq-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.faq-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.faq-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-page #access .container {
    position: relative;
    z-index: 2;
}

.faq-page #access .section-label {
    color: var(--accent);
}

.faq-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-page .access-info {
    width: 100%;
}

.faq-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.faq-page .access-list dd {
    color: #fff;
}

.faq-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.faq-page .access-map {
    width: 100%;
}

.faq-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.faq-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .faq-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .faq-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .faq-page .section-title.black {
        font-size: 2rem;
    }
}

.faq-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.faq-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.faq-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.faq-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.faq-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.faq-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.faq-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.faq-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.faq-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.faq-page .read-more-btn:hover {
    color: #000;
}

.faq-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .faq-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.faq-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.faq-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.faq-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.faq-page .side-link-btn.hotpepper {
    background: #333;
}

.faq-page #about {
    background-color: var(--accent);
}

.faq-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.faq-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.faq-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.faq-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.faq-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.faq-page,
.faq-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.faq-page,
.faq-page body,
.faq-page button,
.faq-page input,
.faq-page textarea,
.faq-page .hero-nav-link,
.faq-page .section-label,
.faq-page .sub-title,
.faq-page .category-title-modern {
    font-family: var(--font-jp);
}

.faq-page h1,
.faq-page h2,
.faq-page h3,
.faq-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.faq-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.faq-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.faq-page .hero-nav-link .jp {
    color: #777a73;
}

.faq-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.faq-page .hero-title,
.faq-page .hero-title-small,
.faq-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.faq-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.faq-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.faq-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.faq-page .title-main::before,
.faq-page .title-main::after {
    background: #a8aaa3;
}

.faq-page #about,
.faq-page #kodawari,
.faq-page #menu,
.faq-page #voice,
.faq-page #access {
    background-color: #fff;
    background-image: none;
}

.faq-page #about {
    border-bottom: 1px solid #ecece7;
}

.faq-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.faq-page .auto-slide-img {
    border-radius: 0;
}

.faq-page #kodawari {
    background: #fff;
}

.faq-page .service-row,
.faq-page #kodawari>.service-row:nth-of-type(2),
.faq-page #kodawari>.service-row:nth-of-type(3),
.faq-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.faq-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.faq-page .service-title-text,
.faq-page .service-desc {
    font-weight: 400;
}

.faq-page .service-title-text .num {
    color: #e7ecff;
}

.faq-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.faq-page .eyecatch-fixed::before {
    z-index: 0;
}

.faq-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.faq-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.faq-page .service-menu-eyecatch::before,
.faq-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.faq-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.faq-page .recommended-special,
.faq-page .recommended-special * {
    color: var(--text-main) !important;
}

.faq-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.faq-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.faq-page #voice {
    background: #fafaf8;
}

.faq-page #voice::before {
    opacity: 0.06;
}

.faq-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.faq-page .voice-title,
.faq-page .voice-content,
.faq-page .access-list dt,
.faq-page .access-list dd {
    font-weight: 400;
}

.faq-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.faq-page #access .section-label,
.faq-page #access .section-title.white,
.faq-page #access .sub-title,
.faq-page .access-list dt,
.faq-page .access-list dd,
.faq-page .access-list dd a {
    color: var(--text-main);
}

.faq-page .access-list dt {
    border-left-color: #7d3028;
}

.faq-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.faq-page .btn-accent,
.faq-page .read-more-btn,
.faq-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .faq-page .section-label {
        font-size: 2.4rem;
    }

    .faq-page .service-row,
    .faq-page #kodawari>.service-row:nth-of-type(2),
    .faq-page #kodawari>.service-row:nth-of-type(3),
    .faq-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.faq-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.faq-page .menu-category-full {
    grid-column: 1 / -1;
}

.faq-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.faq-page .item-head-tight {
    margin-bottom: 0;
}

.faq-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-page .tabelog-access-link {
    margin-right: 15px;
}

.faq-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.faq-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.faq-page #menu>.section-header,
.faq-page #menu>.recommended-special,
.faq-page #menu>.menu-grid,
.faq-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.faq-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.faq-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .faq-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .faq-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .faq-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .faq-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .faq-page .menu-item-modern * {
        text-align: left !important;
    }
}

.faq-page .recommended-special * {
    color: #000 !important;
}

.faq-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.faq-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.faq-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.faq-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.faq-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.faq-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.faq-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.faq-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.faq-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.faq-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.faq-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.faq-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.faq-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .faq-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .faq-page .section-title {
        font-size: 1rem;
    }

    .faq-page .item-name-modern {
        font-size: 1.35rem;
    }

    .faq-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.faq-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.faq-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.faq-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.faq-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.faq-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .faq-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .faq-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .faq-page .gold-vertical-line {
        display: none;
    }

    .faq-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .faq-page .horizontal-slider-track {
        height: 400px;
    }
}

.faq-page .menu-category {
    margin-bottom: 80px;
}

.faq-page .menu-item {
    margin-bottom: 30px;
}

.faq-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.faq-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.faq-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.faq-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.faq-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.faq-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.faq-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.faq-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.faq-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.faq-page #voice>.section-header,
.faq-page #voice>.voice-grid,
.faq-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.faq-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.faq-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.faq-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.faq-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.faq-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.faq-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-page #access .container {
    position: relative;
    z-index: 2;
}

.faq-page #access .section-label {
    color: var(--accent);
}

.faq-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-page .access-info {
    width: 100%;
}

.faq-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.faq-page .access-list dd {
    color: #fff;
}

.faq-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.faq-page .access-map {
    width: 100%;
}

.faq-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.faq-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .faq-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .faq-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .faq-page .section-title.black {
        font-size: 2rem;
    }
}

.faq-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.faq-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.faq-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.faq-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.faq-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.faq-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.faq-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.faq-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.faq-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.faq-page .read-more-btn:hover {
    color: #000;
}

.faq-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .faq-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.faq-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.faq-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.faq-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.faq-page .side-link-btn.hotpepper {
    background: #333;
}

.faq-page #about {
    background-color: var(--accent);
}

.faq-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.faq-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.faq-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.faq-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.faq-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.faq-page,
.faq-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.faq-page,
.faq-page body,
.faq-page button,
.faq-page input,
.faq-page textarea,
.faq-page .hero-nav-link,
.faq-page .section-label,
.faq-page .sub-title,
.faq-page .category-title-modern {
    font-family: var(--font-jp);
}

.faq-page h1,
.faq-page h2,
.faq-page h3,
.faq-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.faq-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.faq-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.faq-page .hero-nav-link .jp {
    color: #777a73;
}

.faq-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.faq-page .hero-title,
.faq-page .hero-title-small,
.faq-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.faq-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.faq-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.faq-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.faq-page .title-main::before,
.faq-page .title-main::after {
    background: #a8aaa3;
}

.faq-page #about,
.faq-page #kodawari,
.faq-page #menu,
.faq-page #voice,
.faq-page #access {
    background-color: #fff;
    background-image: none;
}

.faq-page #about {
    border-bottom: 1px solid #ecece7;
}

.faq-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.faq-page .auto-slide-img {
    border-radius: 0;
}

.faq-page #kodawari {
    background: #fff;
}

.faq-page .service-row,
.faq-page #kodawari>.service-row:nth-of-type(2),
.faq-page #kodawari>.service-row:nth-of-type(3),
.faq-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.faq-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.faq-page .service-title-text,
.faq-page .service-desc {
    font-weight: 400;
}

.faq-page .service-title-text .num {
    color: #e7ecff;
}

.faq-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.faq-page .eyecatch-fixed::before {
    z-index: 0;
}

.faq-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.faq-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.faq-page .service-menu-eyecatch::before,
.faq-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.faq-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.faq-page .recommended-special,
.faq-page .recommended-special * {
    color: var(--text-main) !important;
}

.faq-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.faq-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.faq-page #voice {
    background: #fafaf8;
}

.faq-page #voice::before {
    opacity: 0.06;
}

.faq-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.faq-page .voice-title,
.faq-page .voice-content,
.faq-page .access-list dt,
.faq-page .access-list dd {
    font-weight: 400;
}

.faq-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.faq-page #access .section-label,
.faq-page #access .section-title.white,
.faq-page #access .sub-title,
.faq-page .access-list dt,
.faq-page .access-list dd,
.faq-page .access-list dd a {
    color: var(--text-main);
}

.faq-page .access-list dt {
    border-left-color: #7d3028;
}

.faq-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.faq-page .btn-accent,
.faq-page .read-more-btn,
.faq-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .faq-page .section-label {
        font-size: 2.4rem;
    }

    .faq-page .service-row,
    .faq-page #kodawari>.service-row:nth-of-type(2),
    .faq-page #kodawari>.service-row:nth-of-type(3),
    .faq-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.faq-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.faq-page .menu-category-full {
    grid-column: 1 / -1;
}

.faq-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.faq-page .item-head-tight {
    margin-bottom: 0;
}

.faq-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-page .tabelog-access-link {
    margin-right: 15px;
}

.faq-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .faq-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .faq-page .menu-category {
        margin-bottom: 40px;
    }

    .faq-page .category-title {
        margin-bottom: 20px;
    }

    .faq-page .image-separator {
        margin-top: 5px !important;
    }

    .faq-page .back-to-top {
        bottom: 100px;
    }

    .faq-page {
        margin-bottom: 60px;
    }
}

.faq-page .about-badge-img,
.faq-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.faq-page #access {
    overflow: hidden;
}

.faq-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.faq-page,
.faq-page body,
.faq-page button,
.faq-page input,
.faq-page textarea,
.faq-page .hero-nav-link,
.faq-page .section-label,
.faq-page .sub-title,
.faq-page .category-title-modern,
.faq-page .voice-title,
.faq-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.faq-page,
.faq-page body,
.faq-page .service-title-text,
.faq-page .service-desc,
.faq-page .voice-title,
.faq-page .voice-content,
.faq-page .access-list dt,
.faq-page .access-list dd {
    font-weight: 400;
}

.faq-page #about,
.faq-page #kodawari,
.faq-page #menu,
.faq-page #access {
    background-color: #fff;
    background-image: none;
}

.faq-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.faq-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.faq-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.faq-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.faq-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.faq-page,
.faq-page body,
.faq-page .section-title,
.faq-page .section-title.white,
.faq-page .service-desc,
.faq-page .voice-title,
.faq-page .voice-content,
.faq-page .access-list dt,
.faq-page .access-list dd,
.faq-page .access-list dd a {
    color: #483c38;
}

.faq-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.faq-page .about-text-content.vertical-text,
.faq-page .about-title-text,
.faq-page .about-sp-title,
.faq-page .about-sp-title .accent-color,
.faq-page .about-sp-desc,
.faq-page .about-sp-desc p {
    color: #483c38 !important;
}

.faq-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.faq-page .service-row,
.faq-page #kodawari>.service-row:nth-of-type(2),
.faq-page #kodawari>.service-row:nth-of-type(3),
.faq-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.faq-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.faq-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.faq-page .service-title-text .text {
    display: block;
}

.faq-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .faq-page .service-row,
    .faq-page .service-row.reverse,
    .faq-page #kodawari>.service-row:nth-of-type(2),
    .faq-page #kodawari>.service-row:nth-of-type(3),
    .faq-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .faq-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.faq-page #about {
    border-bottom: 0;
}

.faq-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.faq-page .service-row,
.faq-page .service-row.reverse,
.faq-page #kodawari>.service-row:nth-of-type(2),
.faq-page #kodawari>.service-row:nth-of-type(3),
.faq-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.faq-page .service-content {
    flex: 1 1 42%;
}

.faq-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.faq-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.faq-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.faq-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.faq-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.faq-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .faq-page .service-row,
    .faq-page .service-row.reverse,
    .faq-page #kodawari>.service-row:nth-of-type(2),
    .faq-page #kodawari>.service-row:nth-of-type(3),
    .faq-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.faq-page,
.faq-page body,
.faq-page p,
.faq-page li,
.faq-page dt,
.faq-page dd,
.faq-page .about-sp-desc,
.faq-page .about-text-content.vertical-text,
.faq-page .service-desc,
.faq-page .item-detail-modern,
.faq-page .voice-content,
.faq-page .product-description,
.faq-page .product-contents {
    font-size: 16px;
}

.faq-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.faq-page .hero {
    background: #111;
}

.faq-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.faq-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.faq-page .hero-slide-1 {
    animation-delay: 0s;
}

.faq-page .hero-slide-2 {
    animation-delay: 6s;
}

.faq-page .hero-slide-3 {
    animation-delay: 12s;
}

.faq-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

.faq-page #voice::before {
    display: none;
    background-image: none;
}

.faq-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.faq-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.faq-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.faq-page #message .recommended-text-area {
    padding-right: 48px;
}

.faq-page #message .recommended-slider-area-modern,
.faq-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.faq-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.faq-page .sp-nav-link span {
    display: none;
}

.faq-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.faq-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .faq-page .hero-slide {
        object-position: center;
    }

    .faq-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .faq-page #message .recommended-special,
    .faq-page #message .recommended-flex-modern,
    .faq-page #message .recommended-text-area,
    .faq-page #message .recommended-slider-area-modern,
    .faq-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .faq-page #message .recommended-flex-modern {
        padding: 0;
    }

    .faq-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .faq-page #message .recommended-slider-area-modern,
    .faq-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .faq-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.faq-page #about::before,
.faq-page #about::after {
    display: none;
}

.faq-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.faq-page .product-heading {
    display: block;
}

.faq-page .product-price {
    margin-top: 10px;
}

.faq-page .menu-cta,
.faq-page .menu-cta span,
.faq-page .menu-cta strong {
    color: #fff !important;
}

.faq-page #message .recommended-text-area,
.faq-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.faq-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.faq-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.faq-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .faq-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .faq-page .service-row,
    .faq-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .faq-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .faq-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .faq-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .faq-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .faq-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .faq-page #message .recommended-text-area,
    .faq-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .faq-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .faq-page footer {
        padding-bottom: 92px;
    }

    .faq-page .copyright,
    .faq-page .copyright span {
        display: block;
    }

    .faq-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.faq-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.faq-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.faq-page #message .recommended-text-area,
.faq-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.faq-page #message .recommended-text-area {
    padding-right: 48px;
}

.faq-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.faq-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .faq-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .faq-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .faq-page #message .recommended-text-area,
    .faq-page #message .recommended-slider-area-modern,
    .faq-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .faq-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.faq-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.faq-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.faq-page .eyecatch-fixed::before,
.faq-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .faq-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .faq-page #message .recommended-flex-modern,
    .faq-page #message .recommended-text-area,
    .faq-page #message .recommended-slider-area-modern,
    .faq-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .faq-page .eyecatch-fixed,
    .faq-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .faq-page .eyecatch-fixed::before,
    .faq-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .faq-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .faq-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .faq-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .faq-page .eyecatch-fixed > *,
    .faq-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .faq-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .faq-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .faq-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .faq-page #message .recommended-text-area,
    .faq-page #message .recommended-slider-area-modern,
    .faq-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .faq-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .faq-page #message .recommended-slider-area-modern,
    .faq-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .faq-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .faq-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

/* ==========================================================================
   Instructor Page Styles (Generated from Class Page Styles)
   ========================================================================== */



/* ==========================================================================
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.instructor-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.instructor-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.instructor-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.instructor-page, .instructor-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.instructor-page h1,
.instructor-page h2,
.instructor-page h3,
.instructor-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.instructor-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.instructor-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.instructor-page, .instructor-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.instructor-page h1,
.instructor-page h2,
.instructor-page h3,
.instructor-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.instructor-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.instructor-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.instructor-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .instructor-page .section-padding {
        padding: 80px 0;
    }

    .instructor-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .instructor-page .hero-side-links {
        display: none;
    }
}

.instructor-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .instructor-page .sp-only {
        display: block !important;
    }

    .instructor-page .pc-only {
        display: none !important;
    }
}

.instructor-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.instructor-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .instructor-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .instructor-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .instructor-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .instructor-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.instructor-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.instructor-page .hamburger .line-1 {
    top: 0;
}

.instructor-page .hamburger .line-2 {
    top: 10.5px;
}

.instructor-page .hamburger .line-3 {
    top: 21px;
}

.instructor-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.instructor-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.instructor-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.instructor-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructor-page .sp-nav.active {
    right: 0;
}

.instructor-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.instructor-page .sp-nav-list li {
    margin: 40px 0;
}

.instructor-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.instructor-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.instructor-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.instructor-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.instructor-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.instructor-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.instructor-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.instructor-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.instructor-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.instructor-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.instructor-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.instructor-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.instructor-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.instructor-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.instructor-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.instructor-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.instructor-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.instructor-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.instructor-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.instructor-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.instructor-page .section-title.white {
    color: #fff;
}

.instructor-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.instructor-page .title-main::before,
.instructor-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.instructor-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.instructor-page .section-title.white {
    color: #fff;
}

.instructor-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.instructor-page .title-main::before,
.instructor-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.instructor-page .title-main::before {
    left: 0;
}

.instructor-page .title-main::after {
    right: 0;
}

.instructor-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.instructor-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.instructor-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructor-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.instructor-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.instructor-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .instructor-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .instructor-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .instructor-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .instructor-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .instructor-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .instructor-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .instructor-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .instructor-page .hero-title-main {
        white-space: nowrap;
    }

    .instructor-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .instructor-page .hero-sub::before,
    .instructor-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .instructor-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .instructor-page .media-section .section-title {
        line-height: 1.6;
    }

    .instructor-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .instructor-page .voice-grid {
        padding: 0;
    }

    .instructor-page .voice-card {
        padding: 34px 26px;
    }
}

.instructor-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.instructor-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.instructor-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.instructor-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.instructor-page .hero-sp-fv-img {
    display: none;
}

.instructor-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.instructor-page .hero-sub::before,
.instructor-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.instructor-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.instructor-page #about>.container {
    position: relative;
    z-index: 1;
}

.instructor-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.instructor-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.instructor-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.instructor-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.instructor-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.instructor-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.instructor-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.instructor-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.instructor-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.instructor-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.instructor-page .about-title-text .step-1,
.instructor-page .about-title-text .step-2,
.instructor-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.instructor-page .about-title-text .step-1 {
    transform: translateY(0);
}

.instructor-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.instructor-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.instructor-page .about-title-text .en {
    display: none;
}

.instructor-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.instructor-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.instructor-page .service-title-text .text {
    display: inline;
}

.instructor-page .service-title-text::after {
    display: none;
}

.instructor-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.instructor-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.instructor-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.instructor-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.instructor-page .media-section .section-header {
    text-align: center;
}

.instructor-page .media-section .section-label {
    color: var(--accent);
}

.instructor-page .media-section .section-title,
.instructor-page .media-section .sub-title {
    color: #fff;
}

.instructor-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.instructor-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.instructor-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.instructor-page #kodawari>.section-header,
.instructor-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instructor-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.instructor-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.instructor-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.instructor-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.instructor-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.instructor-page .service-row.reverse {
    flex-direction: row-reverse;
}

.instructor-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.instructor-page .service-visual {
    flex: 1.5;
}

.instructor-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.instructor-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.instructor-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .instructor-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 髯ｷ・ｿ繝ｻ・ｳ髯句ｹ｢・ｽ・ｴ驍ｵ・ｺ繝ｻ・ｫ髮玖ｴ具ｽｻ・｣繝ｻ莨∵・繝ｻ・ｼ驍ｵ・ｺ繝ｻ・ｾ驍ｵ・ｺ陝ｶ蜷ｮﾂ・ｻ驛｢譏ｴ繝ｻ邵ｺ蜀暦ｽｹ・ｧ繝ｻ・ｹ驛｢譎冗樟遶雁ｮ壽ｰ｣闔会ｽ｣繝ｻ・ｰ鬯ｩ・･鬮ｦ・ｪ郢晢ｽｻ驛｢・ｧ郢晢ｽｻ*/
    }
}

@media (max-width: 900px) {
    .instructor-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .instructor-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .instructor-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .instructor-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .instructor-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .instructor-page .service-row,
    .instructor-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .instructor-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .instructor-page .recommended-special {
        padding: 24px 0;
    }

    .instructor-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .instructor-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .instructor-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .instructor-page .about-sp-title .step-1,
    .instructor-page .about-sp-title .step-2,
    .instructor-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .instructor-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .instructor-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .instructor-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .instructor-page .about-sp-title .accent-color {
        color: #fff;
    }

    .instructor-page .service-title-text {
        font-size: 1.3rem;
    }

    .instructor-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .instructor-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .instructor-page .about-sp-desc p {
        color: #fff !important;
    }

    .instructor-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .instructor-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .instructor-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .instructor-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .instructor-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.instructor-page,
.instructor-page body,
.instructor-page p,
.instructor-page li,
.instructor-page dt,
.instructor-page dd,
.instructor-page .about-sp-desc,
.instructor-page .about-text-content.vertical-text,
.instructor-page .service-desc,
.instructor-page .item-detail-modern,
.instructor-page .voice-content,
.instructor-page .product-description,
.instructor-page .product-contents {
    font-size: 16px;
}

.instructor-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.instructor-page #about::before,
.instructor-page #about::after {
    display: none;
}

.instructor-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.instructor-page .product-heading {
    display: block;
}

.instructor-page .product-price {
    margin-top: 10px;
}

.instructor-page .menu-cta,
.instructor-page .menu-cta span,
.instructor-page .menu-cta strong {
    color: #fff !important;
}

.instructor-page #message .recommended-text-area,
.instructor-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.instructor-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.instructor-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.instructor-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .instructor-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .instructor-page .service-row,
    .instructor-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .instructor-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .instructor-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .instructor-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .instructor-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .instructor-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .instructor-page #message .recommended-text-area,
    .instructor-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .instructor-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .instructor-page footer {
        padding-bottom: 92px;
    }

    .instructor-page .copyright,
    .instructor-page .copyright span {
        display: block;
    }

    .instructor-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.instructor-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.instructor-page #about::before,
.instructor-page #about::after {
    display: none;
}

.instructor-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.instructor-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.instructor-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.instructor-page .product-heading {
    display: block;
}

.instructor-page .product-price {
    margin-top: 10px;
}

.instructor-page .menu-cta,
.instructor-page .menu-cta span,
.instructor-page .menu-cta strong {
    color: #fff !important;
}

.instructor-page #message .recommended-flex-modern {
    align-items: center;
}

.instructor-page #message .recommended-text-area,
.instructor-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.instructor-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.instructor-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.instructor-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .instructor-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .instructor-page .service-row,
    .instructor-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .instructor-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .instructor-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .instructor-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .instructor-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .instructor-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .instructor-page #message .recommended-text-area,
    .instructor-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .instructor-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .instructor-page footer {
        padding-bottom: 92px;
    }

    .instructor-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .instructor-page .copyright span {
        display: block;
    }
}

.instructor-page .service-visual {
    position: relative;
    overflow: visible;
}

.instructor-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.instructor-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.instructor-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.instructor-page .service-title-text {
    justify-content: center;
}

.instructor-page .service-title-text .text {
    min-height: 230px;
}

.instructor-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.instructor-page #message>.section-header,
.instructor-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instructor-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.instructor-page .product-heading {
    grid-column: 1 / -1;
}

.instructor-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.instructor-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.instructor-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.instructor-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.instructor-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.instructor-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.instructor-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.instructor-page .product-card-split .product-price {
    color: #CEA6AC;
}

.instructor-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.instructor-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.instructor-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.instructor-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.instructor-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.instructor-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.instructor-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.instructor-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.instructor-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.instructor-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.instructor-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.instructor-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.instructor-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.instructor-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.instructor-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.instructor-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.instructor-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.instructor-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.instructor-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.instructor-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.instructor-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.instructor-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.instructor-page .menu-cta-online {
    background: #483c38;
}

.instructor-page .menu-cta-tel {
    background: #7d3028;
}

.instructor-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .instructor-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .instructor-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .instructor-page .service-title-text .text {
        min-height: 205px;
    }

    .instructor-page #message>.section-header,
    .instructor-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .instructor-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .instructor-page .product-list + .section-header {
        margin-top: 80px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(SP) */
    }

    .instructor-page .product-heading {
        grid-column: auto;
    }

    .instructor-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .instructor-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .instructor-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .instructor-page .product-card-split .product-image,
    .instructor-page .product-card-split .product-description,
    .instructor-page .product-card-split .product-contents-left,
    .instructor-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .instructor-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .instructor-page .product-card-split .product-contents-left,
    .instructor-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .instructor-page .split-card-title {
        font-size: 28px !important;
    }

    .instructor-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .instructor-page .order-information {
        grid-template-columns: 1fr;
    }

    .instructor-page .order-information>p {
        grid-column: auto;
    }
}

body.instructor-page,
.instructor-page body,
.instructor-page p,
.instructor-page li,
.instructor-page dt,
.instructor-page dd,
.instructor-page .about-sp-desc,
.instructor-page .about-text-content.vertical-text,
.instructor-page .service-desc,
.instructor-page .item-detail-modern,
.instructor-page .voice-content {
    font-size: 16px;
}

.instructor-page #about {
    border-bottom: 0;
}

.instructor-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.instructor-page .service-row,
.instructor-page .service-row.reverse,
.instructor-page #kodawari>.service-row:nth-of-type(2),
.instructor-page #kodawari>.service-row:nth-of-type(3),
.instructor-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.instructor-page .service-content {
    flex: 1 1 42%;
}

.instructor-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.instructor-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.instructor-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.instructor-page .service-title-text .num {
    padding-top: 5px;
}

.instructor-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.instructor-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.instructor-page #menu>.product-list,
.instructor-page #menu>.order-information,
.instructor-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.instructor-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.instructor-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.instructor-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.instructor-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.instructor-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.instructor-page .product-description p + p {
    margin-top: 22px;
}

.instructor-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.instructor-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.instructor-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.instructor-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.instructor-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.instructor-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.instructor-page .product-details-list dt,
.instructor-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.instructor-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.instructor-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.instructor-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.instructor-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.instructor-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.instructor-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.instructor-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .instructor-page .service-row,
    .instructor-page .service-row.reverse,
    .instructor-page #kodawari>.service-row:nth-of-type(2),
    .instructor-page #kodawari>.service-row:nth-of-type(3),
    .instructor-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .instructor-page .service-main-img {
        width: 85%;
    }

    .instructor-page .service-title-text .text {
        font-size: 36px;
    }

    .instructor-page .service-title-note {
        font-size: 27px;
    }

    .instructor-page .product-card {
        padding: 34px 20px;
    }

    .instructor-page .product-heading {
        display: block;
    }

    .instructor-page .product-price {
        margin-top: 12px;
    }

    .instructor-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .instructor-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.instructor-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.instructor-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .instructor-page .eyecatch-fixed {
        height: 350px;
    }
}

.instructor-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.instructor-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.instructor-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.instructor-page #menu>.section-header,
.instructor-page #menu>.recommended-special,
.instructor-page #menu>.menu-grid,
.instructor-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.instructor-page .product-list + .section-header {
    margin-top: 120px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(PC) */
}

.instructor-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.instructor-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.instructor-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .instructor-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .instructor-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .instructor-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .instructor-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .instructor-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .instructor-page .menu-item-modern * {
        text-align: left !important;
    }
}

.instructor-page .recommended-special * {
    color: #000 !important;
}

.instructor-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.instructor-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.instructor-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.instructor-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.instructor-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.instructor-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.instructor-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.instructor-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.instructor-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.instructor-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.instructor-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.instructor-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.instructor-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .instructor-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .instructor-page .section-title {
        font-size: 1rem;
    }

    .instructor-page .item-name-modern {
        font-size: 1.35rem;
    }

    .instructor-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.instructor-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.instructor-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.instructor-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.instructor-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.instructor-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .instructor-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .instructor-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .instructor-page .gold-vertical-line {
        display: none;
    }

    .instructor-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .instructor-page .horizontal-slider-track {
        height: 400px;
    }
}

.instructor-page .menu-category {
    margin-bottom: 80px;
}

.instructor-page .menu-item {
    margin-bottom: 30px;
}

.instructor-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.instructor-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.instructor-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.instructor-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.instructor-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.instructor-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.instructor-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.instructor-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.instructor-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.instructor-page #voice>.section-header,
.instructor-page #voice>.voice-grid,
.instructor-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.instructor-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.instructor-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.instructor-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.instructor-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.instructor-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.instructor-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.instructor-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.instructor-page #access .container {
    position: relative;
    z-index: 2;
}

.instructor-page #access .section-label {
    color: var(--accent);
}

.instructor-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.instructor-page .access-info {
    width: 100%;
}

.instructor-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.instructor-page .access-list dd {
    color: #fff;
}

.instructor-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.instructor-page .access-map {
    width: 100%;
}

.instructor-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.instructor-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.instructor-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .instructor-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .instructor-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .instructor-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .instructor-page .section-title.black {
        font-size: 2rem;
    }
}

.instructor-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.instructor-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.instructor-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.instructor-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.instructor-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.instructor-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.instructor-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.instructor-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.instructor-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.instructor-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.instructor-page .read-more-btn:hover {
    color: #000;
}

.instructor-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .instructor-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.instructor-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.instructor-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.instructor-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.instructor-page .side-link-btn.hotpepper {
    background: #333;
}

.instructor-page #about {
    background-color: var(--accent);
}

.instructor-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.instructor-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.instructor-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.instructor-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.instructor-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.instructor-page,
.instructor-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.instructor-page,
.instructor-page body,
.instructor-page button,
.instructor-page input,
.instructor-page textarea,
.instructor-page .hero-nav-link,
.instructor-page .section-label,
.instructor-page .sub-title,
.instructor-page .category-title-modern {
    font-family: var(--font-jp);
}

.instructor-page h1,
.instructor-page h2,
.instructor-page h3,
.instructor-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.instructor-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.instructor-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.instructor-page .hero-nav-link .jp {
    color: #777a73;
}

.instructor-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.instructor-page .hero-title,
.instructor-page .hero-title-small,
.instructor-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.instructor-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.instructor-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.instructor-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.instructor-page .title-main::before,
.instructor-page .title-main::after {
    background: #a8aaa3;
}

.instructor-page #about,
.instructor-page #kodawari,
.instructor-page #menu,
.instructor-page #voice,
.instructor-page #access {
    background-color: #fff;
    background-image: none;
}

.instructor-page #about {
    border-bottom: 1px solid #ecece7;
}

.instructor-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.instructor-page .auto-slide-img {
    border-radius: 0;
}

.instructor-page #kodawari {
    background: #fff;
}

.instructor-page .service-row,
.instructor-page #kodawari>.service-row:nth-of-type(2),
.instructor-page #kodawari>.service-row:nth-of-type(3),
.instructor-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.instructor-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.instructor-page .service-title-text,
.instructor-page .service-desc {
    font-weight: 400;
}

.instructor-page .service-title-text .num {
    color: #e7ecff;
}

.instructor-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.instructor-page .eyecatch-fixed::before {
    z-index: 0;
}

.instructor-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.instructor-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.instructor-page .service-menu-eyecatch::before,
.instructor-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.instructor-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.instructor-page .recommended-special,
.instructor-page .recommended-special * {
    color: var(--text-main) !important;
}

.instructor-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.instructor-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.instructor-page #voice {
    background: #fafaf8;
}

.instructor-page #voice::before {
    opacity: 0.06;
}

.instructor-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.instructor-page .voice-title,
.instructor-page .voice-content,
.instructor-page .access-list dt,
.instructor-page .access-list dd {
    font-weight: 400;
}

.instructor-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.instructor-page #access .section-label,
.instructor-page #access .section-title.white,
.instructor-page #access .sub-title,
.instructor-page .access-list dt,
.instructor-page .access-list dd,
.instructor-page .access-list dd a {
    color: var(--text-main);
}

.instructor-page .access-list dt {
    border-left-color: #7d3028;
}

.instructor-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.instructor-page .btn-accent,
.instructor-page .read-more-btn,
.instructor-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .instructor-page .section-label {
        font-size: 2.4rem;
    }

    .instructor-page .service-row,
    .instructor-page #kodawari>.service-row:nth-of-type(2),
    .instructor-page #kodawari>.service-row:nth-of-type(3),
    .instructor-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.instructor-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.instructor-page .menu-category-full {
    grid-column: 1 / -1;
}

.instructor-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.instructor-page .item-head-tight {
    margin-bottom: 0;
}

.instructor-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.instructor-page .tabelog-access-link {
    margin-right: 15px;
}

.instructor-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.instructor-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.instructor-page #menu>.section-header,
.instructor-page #menu>.recommended-special,
.instructor-page #menu>.menu-grid,
.instructor-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instructor-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.instructor-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.instructor-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .instructor-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .instructor-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .instructor-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .instructor-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .instructor-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .instructor-page .menu-item-modern * {
        text-align: left !important;
    }
}

.instructor-page .recommended-special * {
    color: #000 !important;
}

.instructor-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.instructor-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.instructor-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.instructor-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.instructor-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.instructor-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.instructor-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.instructor-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.instructor-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.instructor-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.instructor-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.instructor-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.instructor-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .instructor-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .instructor-page .section-title {
        font-size: 1rem;
    }

    .instructor-page .item-name-modern {
        font-size: 1.35rem;
    }

    .instructor-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.instructor-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.instructor-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.instructor-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.instructor-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.instructor-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .instructor-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .instructor-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .instructor-page .gold-vertical-line {
        display: none;
    }

    .instructor-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .instructor-page .horizontal-slider-track {
        height: 400px;
    }
}

.instructor-page .menu-category {
    margin-bottom: 80px;
}

.instructor-page .menu-item {
    margin-bottom: 30px;
}

.instructor-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.instructor-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.instructor-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.instructor-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.instructor-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.instructor-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.instructor-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.instructor-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.instructor-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.instructor-page #voice>.section-header,
.instructor-page #voice>.voice-grid,
.instructor-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.instructor-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.instructor-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.instructor-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.instructor-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.instructor-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.instructor-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.instructor-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.instructor-page #access .container {
    position: relative;
    z-index: 2;
}

.instructor-page #access .section-label {
    color: var(--accent);
}

.instructor-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.instructor-page .access-info {
    width: 100%;
}

.instructor-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.instructor-page .access-list dd {
    color: #fff;
}

.instructor-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.instructor-page .access-map {
    width: 100%;
}

.instructor-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.instructor-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.instructor-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .instructor-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .instructor-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .instructor-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .instructor-page .section-title.black {
        font-size: 2rem;
    }
}

.instructor-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.instructor-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.instructor-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.instructor-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.instructor-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.instructor-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.instructor-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.instructor-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.instructor-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.instructor-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.instructor-page .read-more-btn:hover {
    color: #000;
}

.instructor-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .instructor-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.instructor-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.instructor-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.instructor-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.instructor-page .side-link-btn.hotpepper {
    background: #333;
}

.instructor-page #about {
    background-color: var(--accent);
}

.instructor-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.instructor-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.instructor-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.instructor-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.instructor-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.instructor-page,
.instructor-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.instructor-page,
.instructor-page body,
.instructor-page button,
.instructor-page input,
.instructor-page textarea,
.instructor-page .hero-nav-link,
.instructor-page .section-label,
.instructor-page .sub-title,
.instructor-page .category-title-modern {
    font-family: var(--font-jp);
}

.instructor-page h1,
.instructor-page h2,
.instructor-page h3,
.instructor-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.instructor-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.instructor-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.instructor-page .hero-nav-link .jp {
    color: #777a73;
}

.instructor-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.instructor-page .hero-title,
.instructor-page .hero-title-small,
.instructor-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.instructor-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.instructor-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.instructor-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.instructor-page .title-main::before,
.instructor-page .title-main::after {
    background: #a8aaa3;
}

.instructor-page #about,
.instructor-page #kodawari,
.instructor-page #menu,
.instructor-page #voice,
.instructor-page #access {
    background-color: #fff;
    background-image: none;
}

.instructor-page #about {
    border-bottom: 1px solid #ecece7;
}

.instructor-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.instructor-page .auto-slide-img {
    border-radius: 0;
}

.instructor-page #kodawari {
    background: #fff;
}

.instructor-page .service-row,
.instructor-page #kodawari>.service-row:nth-of-type(2),
.instructor-page #kodawari>.service-row:nth-of-type(3),
.instructor-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.instructor-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.instructor-page .service-title-text,
.instructor-page .service-desc {
    font-weight: 400;
}

.instructor-page .service-title-text .num {
    color: #e7ecff;
}

.instructor-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.instructor-page .eyecatch-fixed::before {
    z-index: 0;
}

.instructor-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.instructor-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.instructor-page .service-menu-eyecatch::before,
.instructor-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.instructor-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.instructor-page .recommended-special,
.instructor-page .recommended-special * {
    color: var(--text-main) !important;
}

.instructor-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.instructor-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.instructor-page #voice {
    background: #fafaf8;
}

.instructor-page #voice::before {
    opacity: 0.06;
}

.instructor-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.instructor-page .voice-title,
.instructor-page .voice-content,
.instructor-page .access-list dt,
.instructor-page .access-list dd {
    font-weight: 400;
}

.instructor-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.instructor-page #access .section-label,
.instructor-page #access .section-title.white,
.instructor-page #access .sub-title,
.instructor-page .access-list dt,
.instructor-page .access-list dd,
.instructor-page .access-list dd a {
    color: var(--text-main);
}

.instructor-page .access-list dt {
    border-left-color: #7d3028;
}

.instructor-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.instructor-page .btn-accent,
.instructor-page .read-more-btn,
.instructor-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .instructor-page .section-label {
        font-size: 2.4rem;
    }

    .instructor-page .service-row,
    .instructor-page #kodawari>.service-row:nth-of-type(2),
    .instructor-page #kodawari>.service-row:nth-of-type(3),
    .instructor-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.instructor-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.instructor-page .menu-category-full {
    grid-column: 1 / -1;
}

.instructor-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.instructor-page .item-head-tight {
    margin-bottom: 0;
}

.instructor-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.instructor-page .tabelog-access-link {
    margin-right: 15px;
}

.instructor-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .instructor-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .instructor-page .menu-category {
        margin-bottom: 40px;
    }

    .instructor-page .category-title {
        margin-bottom: 20px;
    }

    .instructor-page .image-separator {
        margin-top: 5px !important;
    }

    .instructor-page .back-to-top {
        bottom: 100px;
    }

    .instructor-page {
        margin-bottom: 60px;
    }
}

.instructor-page .about-badge-img,
.instructor-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.instructor-page #access {
    overflow: hidden;
}

.instructor-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.instructor-page,
.instructor-page body,
.instructor-page button,
.instructor-page input,
.instructor-page textarea,
.instructor-page .hero-nav-link,
.instructor-page .section-label,
.instructor-page .sub-title,
.instructor-page .category-title-modern,
.instructor-page .voice-title,
.instructor-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.instructor-page,
.instructor-page body,
.instructor-page .service-title-text,
.instructor-page .service-desc,
.instructor-page .voice-title,
.instructor-page .voice-content,
.instructor-page .access-list dt,
.instructor-page .access-list dd {
    font-weight: 400;
}

.instructor-page #about,
.instructor-page #kodawari,
.instructor-page #menu,
.instructor-page #access {
    background-color: #fff;
    background-image: none;
}

.instructor-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.instructor-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.instructor-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.instructor-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.instructor-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.instructor-page,
.instructor-page body,
.instructor-page .section-title,
.instructor-page .section-title.white,
.instructor-page .service-desc,
.instructor-page .voice-title,
.instructor-page .voice-content,
.instructor-page .access-list dt,
.instructor-page .access-list dd,
.instructor-page .access-list dd a {
    color: #483c38;
}

.instructor-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.instructor-page .about-text-content.vertical-text,
.instructor-page .about-title-text,
.instructor-page .about-sp-title,
.instructor-page .about-sp-title .accent-color,
.instructor-page .about-sp-desc,
.instructor-page .about-sp-desc p {
    color: #483c38 !important;
}

.instructor-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.instructor-page .service-row,
.instructor-page #kodawari>.service-row:nth-of-type(2),
.instructor-page #kodawari>.service-row:nth-of-type(3),
.instructor-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.instructor-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.instructor-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.instructor-page .service-title-text .text {
    display: block;
}

.instructor-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .instructor-page .service-row,
    .instructor-page .service-row.reverse,
    .instructor-page #kodawari>.service-row:nth-of-type(2),
    .instructor-page #kodawari>.service-row:nth-of-type(3),
    .instructor-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .instructor-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.instructor-page #about {
    border-bottom: 0;
}

.instructor-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.instructor-page .service-row,
.instructor-page .service-row.reverse,
.instructor-page #kodawari>.service-row:nth-of-type(2),
.instructor-page #kodawari>.service-row:nth-of-type(3),
.instructor-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.instructor-page .service-content {
    flex: 1 1 42%;
}

.instructor-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.instructor-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.instructor-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.instructor-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.instructor-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.instructor-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .instructor-page .service-row,
    .instructor-page .service-row.reverse,
    .instructor-page #kodawari>.service-row:nth-of-type(2),
    .instructor-page #kodawari>.service-row:nth-of-type(3),
    .instructor-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.instructor-page,
.instructor-page body,
.instructor-page p,
.instructor-page li,
.instructor-page dt,
.instructor-page dd,
.instructor-page .about-sp-desc,
.instructor-page .about-text-content.vertical-text,
.instructor-page .service-desc,
.instructor-page .item-detail-modern,
.instructor-page .voice-content,
.instructor-page .product-description,
.instructor-page .product-contents {
    font-size: 16px;
}

.instructor-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.instructor-page .hero {
    background: #111;
}

.instructor-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.instructor-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.instructor-page .hero-slide-1 {
    animation-delay: 0s;
}

.instructor-page .hero-slide-2 {
    animation-delay: 6s;
}

.instructor-page .hero-slide-3 {
    animation-delay: 12s;
}

.instructor-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

.instructor-page #voice::before {
    display: none;
    background-image: none;
}

.instructor-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.instructor-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.instructor-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.instructor-page #message .recommended-text-area {
    padding-right: 48px;
}

.instructor-page #message .recommended-slider-area-modern,
.instructor-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.instructor-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.instructor-page .sp-nav-link span {
    display: none;
}

.instructor-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.instructor-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .instructor-page .hero-slide {
        object-position: center;
    }

    .instructor-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .instructor-page #message .recommended-special,
    .instructor-page #message .recommended-flex-modern,
    .instructor-page #message .recommended-text-area,
    .instructor-page #message .recommended-slider-area-modern,
    .instructor-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .instructor-page #message .recommended-flex-modern {
        padding: 0;
    }

    .instructor-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .instructor-page #message .recommended-slider-area-modern,
    .instructor-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .instructor-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.instructor-page #about::before,
.instructor-page #about::after {
    display: none;
}

.instructor-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.instructor-page .product-heading {
    display: block;
}

.instructor-page .product-price {
    margin-top: 10px;
}

.instructor-page .menu-cta,
.instructor-page .menu-cta span,
.instructor-page .menu-cta strong {
    color: #fff !important;
}

.instructor-page #message .recommended-text-area,
.instructor-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.instructor-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.instructor-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.instructor-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .instructor-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .instructor-page .service-row,
    .instructor-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .instructor-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .instructor-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .instructor-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .instructor-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .instructor-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .instructor-page #message .recommended-text-area,
    .instructor-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .instructor-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .instructor-page footer {
        padding-bottom: 92px;
    }

    .instructor-page .copyright,
    .instructor-page .copyright span {
        display: block;
    }

    .instructor-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.instructor-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.instructor-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.instructor-page #message .recommended-text-area,
.instructor-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.instructor-page #message .recommended-text-area {
    padding-right: 48px;
}

.instructor-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.instructor-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .instructor-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .instructor-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .instructor-page #message .recommended-text-area,
    .instructor-page #message .recommended-slider-area-modern,
    .instructor-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .instructor-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.instructor-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.instructor-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.instructor-page .eyecatch-fixed::before,
.instructor-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .instructor-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .instructor-page #message .recommended-flex-modern,
    .instructor-page #message .recommended-text-area,
    .instructor-page #message .recommended-slider-area-modern,
    .instructor-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .instructor-page .eyecatch-fixed,
    .instructor-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .instructor-page .eyecatch-fixed::before,
    .instructor-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .instructor-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .instructor-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .instructor-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .instructor-page .eyecatch-fixed > *,
    .instructor-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .instructor-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .instructor-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .instructor-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .instructor-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .instructor-page #message .recommended-text-area,
    .instructor-page #message .recommended-slider-area-modern,
    .instructor-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .instructor-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .instructor-page #message .recommended-slider-area-modern,
    .instructor-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .instructor-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .instructor-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

/* ==========================================================================
   Contents Page Styles (Generated from Class Page Styles)
   ========================================================================== */



/* ==========================================================================
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.contents-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.contents-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.contents-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.contents-page, .contents-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.contents-page h1,
.contents-page h2,
.contents-page h3,
.contents-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.contents-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.contents-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.contents-page, .contents-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.contents-page h1,
.contents-page h2,
.contents-page h3,
.contents-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.contents-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.contents-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.contents-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .contents-page .section-padding {
        padding: 80px 0;
    }

    .contents-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contents-page .hero-side-links {
        display: none;
    }
}

.contents-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .contents-page .sp-only {
        display: block !important;
    }

    .contents-page .pc-only {
        display: none !important;
    }
}

.contents-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.contents-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .contents-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .contents-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .contents-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .contents-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.contents-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.contents-page .hamburger .line-1 {
    top: 0;
}

.contents-page .hamburger .line-2 {
    top: 10.5px;
}

.contents-page .hamburger .line-3 {
    top: 21px;
}

.contents-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.contents-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.contents-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.contents-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contents-page .sp-nav.active {
    right: 0;
}

.contents-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.contents-page .sp-nav-list li {
    margin: 40px 0;
}

.contents-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contents-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.contents-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.contents-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.contents-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.contents-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.contents-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.contents-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.contents-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.contents-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.contents-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.contents-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.contents-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.contents-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.contents-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.contents-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.contents-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.contents-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contents-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.contents-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.contents-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.contents-page .section-title.white {
    color: #fff;
}

.contents-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.contents-page .title-main::before,
.contents-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.contents-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.contents-page .section-title.white {
    color: #fff;
}

.contents-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.contents-page .title-main::before,
.contents-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.contents-page .title-main::before {
    left: 0;
}

.contents-page .title-main::after {
    right: 0;
}

.contents-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.contents-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.contents-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contents-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.contents-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.contents-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .contents-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .contents-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .contents-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .contents-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .contents-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .contents-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .contents-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .contents-page .hero-title-main {
        white-space: nowrap;
    }

    .contents-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .contents-page .hero-sub::before,
    .contents-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .contents-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .contents-page .media-section .section-title {
        line-height: 1.6;
    }

    .contents-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .contents-page .voice-grid {
        padding: 0;
    }

    .contents-page .voice-card {
        padding: 34px 26px;
    }
}

.contents-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.contents-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.contents-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.contents-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.contents-page .hero-sp-fv-img {
    display: none;
}

.contents-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.contents-page .hero-sub::before,
.contents-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.contents-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.contents-page #about>.container {
    position: relative;
    z-index: 1;
}

.contents-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.contents-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.contents-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.contents-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.contents-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.contents-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.contents-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.contents-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.contents-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.contents-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.contents-page .about-title-text .step-1,
.contents-page .about-title-text .step-2,
.contents-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.contents-page .about-title-text .step-1 {
    transform: translateY(0);
}

.contents-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.contents-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.contents-page .about-title-text .en {
    display: none;
}

.contents-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.contents-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.contents-page .service-title-text .text {
    display: inline;
}

.contents-page .service-title-text::after {
    display: none;
}

.contents-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.contents-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.contents-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.contents-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contents-page .media-section .section-header {
    text-align: center;
}

.contents-page .media-section .section-label {
    color: var(--accent);
}

.contents-page .media-section .section-title,
.contents-page .media-section .sub-title {
    color: #fff;
}

.contents-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contents-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.contents-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.contents-page #kodawari>.section-header,
.contents-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contents-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.contents-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.contents-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.contents-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.contents-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.contents-page .service-row.reverse {
    flex-direction: row-reverse;
}

.contents-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contents-page .service-visual {
    flex: 1.5;
}

.contents-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.contents-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.contents-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .contents-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 髯ｷ・ｿ繝ｻ・ｳ髯句ｹ｢・ｽ・ｴ驍ｵ・ｺ繝ｻ・ｫ髮玖ｴ具ｽｻ・｣繝ｻ莨∵・繝ｻ・ｼ驍ｵ・ｺ繝ｻ・ｾ驍ｵ・ｺ陝ｶ蜷ｮﾂ・ｻ驛｢譏ｴ繝ｻ邵ｺ蜀暦ｽｹ・ｧ繝ｻ・ｹ驛｢譎冗樟遶雁ｮ壽ｰ｣闔会ｽ｣繝ｻ・ｰ鬯ｩ・･鬮ｦ・ｪ郢晢ｽｻ驛｢・ｧ郢晢ｽｻ*/
    }
}

@media (max-width: 900px) {
    .contents-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .contents-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .contents-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .contents-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .contents-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .contents-page .service-row,
    .contents-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .contents-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .contents-page .recommended-special {
        padding: 24px 0;
    }

    .contents-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .contents-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .contents-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .contents-page .about-sp-title .step-1,
    .contents-page .about-sp-title .step-2,
    .contents-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .contents-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .contents-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .contents-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .contents-page .about-sp-title .accent-color {
        color: #fff;
    }

    .contents-page .service-title-text {
        font-size: 1.3rem;
    }

    .contents-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .contents-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .contents-page .about-sp-desc p {
        color: #fff !important;
    }

    .contents-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .contents-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .contents-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .contents-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .contents-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.contents-page,
.contents-page body,
.contents-page p,
.contents-page li,
.contents-page dt,
.contents-page dd,
.contents-page .about-sp-desc,
.contents-page .about-text-content.vertical-text,
.contents-page .service-desc,
.contents-page .item-detail-modern,
.contents-page .voice-content,
.contents-page .product-description,
.contents-page .product-contents {
    font-size: 16px;
}

.contents-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.contents-page #about::before,
.contents-page #about::after {
    display: none;
}

.contents-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contents-page .product-heading {
    display: block;
}

.contents-page .product-price {
    margin-top: 10px;
}

.contents-page .menu-cta,
.contents-page .menu-cta span,
.contents-page .menu-cta strong {
    color: #fff !important;
}

.contents-page #message .recommended-text-area,
.contents-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contents-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.contents-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.contents-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .contents-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .contents-page .service-row,
    .contents-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .contents-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .contents-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .contents-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .contents-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .contents-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .contents-page #message .recommended-text-area,
    .contents-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .contents-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .contents-page footer {
        padding-bottom: 92px;
    }

    .contents-page .copyright,
    .contents-page .copyright span {
        display: block;
    }

    .contents-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.contents-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.contents-page #about::before,
.contents-page #about::after {
    display: none;
}

.contents-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.contents-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contents-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.contents-page .product-heading {
    display: block;
}

.contents-page .product-price {
    margin-top: 10px;
}

.contents-page .menu-cta,
.contents-page .menu-cta span,
.contents-page .menu-cta strong {
    color: #fff !important;
}

.contents-page #message .recommended-flex-modern {
    align-items: center;
}

.contents-page #message .recommended-text-area,
.contents-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contents-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.contents-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.contents-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .contents-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .contents-page .service-row,
    .contents-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .contents-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .contents-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .contents-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .contents-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .contents-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .contents-page #message .recommended-text-area,
    .contents-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .contents-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .contents-page footer {
        padding-bottom: 92px;
    }

    .contents-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .contents-page .copyright span {
        display: block;
    }
}

.contents-page .service-visual {
    position: relative;
    overflow: visible;
}

.contents-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.contents-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.contents-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.contents-page .service-title-text {
    justify-content: center;
}

.contents-page .service-title-text .text {
    min-height: 230px;
}

.contents-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.contents-page #message>.section-header,
.contents-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contents-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.contents-page .product-heading {
    grid-column: 1 / -1;
}

.contents-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.contents-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.contents-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.contents-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.contents-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.contents-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.contents-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.contents-page .product-card-split .product-price {
    color: #CEA6AC;
}

.contents-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.contents-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.contents-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.contents-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.contents-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.contents-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.contents-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.contents-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.contents-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.contents-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.contents-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.contents-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.contents-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.contents-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.contents-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.contents-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.contents-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.contents-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contents-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contents-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.contents-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.contents-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.contents-page .menu-cta-online {
    background: #483c38;
}

.contents-page .menu-cta-tel {
    background: #7d3028;
}

.contents-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .contents-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .contents-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .contents-page .service-title-text .text {
        min-height: 205px;
    }

    .contents-page #message>.section-header,
    .contents-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contents-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .contents-page .product-list + .section-header {
        margin-top: 80px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(SP) */
    }

    .contents-page .product-heading {
        grid-column: auto;
    }

    .contents-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .contents-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .contents-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .contents-page .product-card-split .product-image,
    .contents-page .product-card-split .product-description,
    .contents-page .product-card-split .product-contents-left,
    .contents-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .contents-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .contents-page .product-card-split .product-contents-left,
    .contents-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .contents-page .split-card-title {
        font-size: 28px !important;
    }

    .contents-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .contents-page .order-information {
        grid-template-columns: 1fr;
    }

    .contents-page .order-information>p {
        grid-column: auto;
    }
}

body.contents-page,
.contents-page body,
.contents-page p,
.contents-page li,
.contents-page dt,
.contents-page dd,
.contents-page .about-sp-desc,
.contents-page .about-text-content.vertical-text,
.contents-page .service-desc,
.contents-page .item-detail-modern,
.contents-page .voice-content {
    font-size: 16px;
}

.contents-page #about {
    border-bottom: 0;
}

.contents-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.contents-page .service-row,
.contents-page .service-row.reverse,
.contents-page #kodawari>.service-row:nth-of-type(2),
.contents-page #kodawari>.service-row:nth-of-type(3),
.contents-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.contents-page .service-content {
    flex: 1 1 42%;
}

.contents-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.contents-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.contents-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.contents-page .service-title-text .num {
    padding-top: 5px;
}

.contents-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.contents-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.contents-page #menu>.product-list,
.contents-page #menu>.order-information,
.contents-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.contents-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.contents-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.contents-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.contents-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.contents-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.contents-page .product-description p + p {
    margin-top: 22px;
}

.contents-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.contents-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.contents-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.contents-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.contents-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.contents-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.contents-page .product-details-list dt,
.contents-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.contents-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.contents-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.contents-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.contents-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.contents-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.contents-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.contents-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .contents-page .service-row,
    .contents-page .service-row.reverse,
    .contents-page #kodawari>.service-row:nth-of-type(2),
    .contents-page #kodawari>.service-row:nth-of-type(3),
    .contents-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .contents-page .service-main-img {
        width: 85%;
    }

    .contents-page .service-title-text .text {
        font-size: 36px;
    }

    .contents-page .service-title-note {
        font-size: 27px;
    }

    .contents-page .product-card {
        padding: 34px 20px;
    }

    .contents-page .product-heading {
        display: block;
    }

    .contents-page .product-price {
        margin-top: 12px;
    }

    .contents-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .contents-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.contents-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.contents-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .contents-page .eyecatch-fixed {
        height: 350px;
    }
}

.contents-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.contents-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.contents-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.contents-page #menu>.section-header,
.contents-page #menu>.recommended-special,
.contents-page #menu>.menu-grid,
.contents-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.contents-page .product-list + .section-header {
    margin-top: 120px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(PC) */
}

.contents-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.contents-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.contents-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contents-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .contents-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .contents-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .contents-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .contents-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .contents-page .menu-item-modern * {
        text-align: left !important;
    }
}

.contents-page .recommended-special * {
    color: #000 !important;
}

.contents-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.contents-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.contents-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.contents-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contents-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.contents-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.contents-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.contents-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.contents-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.contents-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.contents-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contents-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.contents-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contents-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .contents-page .section-title {
        font-size: 1rem;
    }

    .contents-page .item-name-modern {
        font-size: 1.35rem;
    }

    .contents-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.contents-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.contents-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.contents-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.contents-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.contents-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .contents-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .contents-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .contents-page .gold-vertical-line {
        display: none;
    }

    .contents-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .contents-page .horizontal-slider-track {
        height: 400px;
    }
}

.contents-page .menu-category {
    margin-bottom: 80px;
}

.contents-page .menu-item {
    margin-bottom: 30px;
}

.contents-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.contents-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.contents-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.contents-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.contents-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.contents-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.contents-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.contents-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.contents-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.contents-page #voice>.section-header,
.contents-page #voice>.voice-grid,
.contents-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contents-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contents-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.contents-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.contents-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.contents-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.contents-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.contents-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contents-page #access .container {
    position: relative;
    z-index: 2;
}

.contents-page #access .section-label {
    color: var(--accent);
}

.contents-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contents-page .access-info {
    width: 100%;
}

.contents-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.contents-page .access-list dd {
    color: #fff;
}

.contents-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.contents-page .access-map {
    width: 100%;
}

.contents-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contents-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.contents-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .contents-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contents-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .contents-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .contents-page .section-title.black {
        font-size: 2rem;
    }
}

.contents-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contents-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.contents-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.contents-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.contents-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.contents-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.contents-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.contents-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.contents-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.contents-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.contents-page .read-more-btn:hover {
    color: #000;
}

.contents-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .contents-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.contents-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.contents-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.contents-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.contents-page .side-link-btn.hotpepper {
    background: #333;
}

.contents-page #about {
    background-color: var(--accent);
}

.contents-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.contents-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.contents-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.contents-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.contents-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.contents-page,
.contents-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.contents-page,
.contents-page body,
.contents-page button,
.contents-page input,
.contents-page textarea,
.contents-page .hero-nav-link,
.contents-page .section-label,
.contents-page .sub-title,
.contents-page .category-title-modern {
    font-family: var(--font-jp);
}

.contents-page h1,
.contents-page h2,
.contents-page h3,
.contents-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.contents-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.contents-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.contents-page .hero-nav-link .jp {
    color: #777a73;
}

.contents-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.contents-page .hero-title,
.contents-page .hero-title-small,
.contents-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.contents-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.contents-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.contents-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.contents-page .title-main::before,
.contents-page .title-main::after {
    background: #a8aaa3;
}

.contents-page #about,
.contents-page #kodawari,
.contents-page #menu,
.contents-page #voice,
.contents-page #access {
    background-color: #fff;
    background-image: none;
}

.contents-page #about {
    border-bottom: 1px solid #ecece7;
}

.contents-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.contents-page .auto-slide-img {
    border-radius: 0;
}

.contents-page #kodawari {
    background: #fff;
}

.contents-page .service-row,
.contents-page #kodawari>.service-row:nth-of-type(2),
.contents-page #kodawari>.service-row:nth-of-type(3),
.contents-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.contents-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.contents-page .service-title-text,
.contents-page .service-desc {
    font-weight: 400;
}

.contents-page .service-title-text .num {
    color: #e7ecff;
}

.contents-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.contents-page .eyecatch-fixed::before {
    z-index: 0;
}

.contents-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.contents-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.contents-page .service-menu-eyecatch::before,
.contents-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.contents-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.contents-page .recommended-special,
.contents-page .recommended-special * {
    color: var(--text-main) !important;
}

.contents-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.contents-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.contents-page #voice {
    background: #fafaf8;
}

.contents-page #voice::before {
    opacity: 0.06;
}

.contents-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.contents-page .voice-title,
.contents-page .voice-content,
.contents-page .access-list dt,
.contents-page .access-list dd {
    font-weight: 400;
}

.contents-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.contents-page #access .section-label,
.contents-page #access .section-title.white,
.contents-page #access .sub-title,
.contents-page .access-list dt,
.contents-page .access-list dd,
.contents-page .access-list dd a {
    color: var(--text-main);
}

.contents-page .access-list dt {
    border-left-color: #7d3028;
}

.contents-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.contents-page .btn-accent,
.contents-page .read-more-btn,
.contents-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .contents-page .section-label {
        font-size: 2.4rem;
    }

    .contents-page .service-row,
    .contents-page #kodawari>.service-row:nth-of-type(2),
    .contents-page #kodawari>.service-row:nth-of-type(3),
    .contents-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.contents-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.contents-page .menu-category-full {
    grid-column: 1 / -1;
}

.contents-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.contents-page .item-head-tight {
    margin-bottom: 0;
}

.contents-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.contents-page .tabelog-access-link {
    margin-right: 15px;
}

.contents-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.contents-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.contents-page #menu>.section-header,
.contents-page #menu>.recommended-special,
.contents-page #menu>.menu-grid,
.contents-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contents-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.contents-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.contents-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contents-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .contents-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .contents-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .contents-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .contents-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .contents-page .menu-item-modern * {
        text-align: left !important;
    }
}

.contents-page .recommended-special * {
    color: #000 !important;
}

.contents-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.contents-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.contents-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.contents-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contents-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.contents-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.contents-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.contents-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.contents-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.contents-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.contents-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contents-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.contents-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contents-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .contents-page .section-title {
        font-size: 1rem;
    }

    .contents-page .item-name-modern {
        font-size: 1.35rem;
    }

    .contents-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.contents-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.contents-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.contents-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.contents-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.contents-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .contents-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .contents-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .contents-page .gold-vertical-line {
        display: none;
    }

    .contents-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .contents-page .horizontal-slider-track {
        height: 400px;
    }
}

.contents-page .menu-category {
    margin-bottom: 80px;
}

.contents-page .menu-item {
    margin-bottom: 30px;
}

.contents-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.contents-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.contents-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.contents-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.contents-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.contents-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.contents-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.contents-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.contents-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.contents-page #voice>.section-header,
.contents-page #voice>.voice-grid,
.contents-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contents-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contents-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.contents-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.contents-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.contents-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.contents-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.contents-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contents-page #access .container {
    position: relative;
    z-index: 2;
}

.contents-page #access .section-label {
    color: var(--accent);
}

.contents-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contents-page .access-info {
    width: 100%;
}

.contents-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.contents-page .access-list dd {
    color: #fff;
}

.contents-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.contents-page .access-map {
    width: 100%;
}

.contents-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contents-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.contents-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .contents-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contents-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .contents-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .contents-page .section-title.black {
        font-size: 2rem;
    }
}

.contents-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contents-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.contents-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.contents-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.contents-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.contents-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.contents-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.contents-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.contents-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.contents-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.contents-page .read-more-btn:hover {
    color: #000;
}

.contents-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .contents-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.contents-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.contents-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.contents-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.contents-page .side-link-btn.hotpepper {
    background: #333;
}

.contents-page #about {
    background-color: var(--accent);
}

.contents-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.contents-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.contents-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.contents-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.contents-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.contents-page,
.contents-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.contents-page,
.contents-page body,
.contents-page button,
.contents-page input,
.contents-page textarea,
.contents-page .hero-nav-link,
.contents-page .section-label,
.contents-page .sub-title,
.contents-page .category-title-modern {
    font-family: var(--font-jp);
}

.contents-page h1,
.contents-page h2,
.contents-page h3,
.contents-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.contents-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.contents-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.contents-page .hero-nav-link .jp {
    color: #777a73;
}

.contents-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.contents-page .hero-title,
.contents-page .hero-title-small,
.contents-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.contents-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.contents-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.contents-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.contents-page .title-main::before,
.contents-page .title-main::after {
    background: #a8aaa3;
}

.contents-page #about,
.contents-page #kodawari,
.contents-page #menu,
.contents-page #voice,
.contents-page #access {
    background-color: #fff;
    background-image: none;
}

.contents-page #about {
    border-bottom: 1px solid #ecece7;
}

.contents-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.contents-page .auto-slide-img {
    border-radius: 0;
}

.contents-page #kodawari {
    background: #fff;
}

.contents-page .service-row,
.contents-page #kodawari>.service-row:nth-of-type(2),
.contents-page #kodawari>.service-row:nth-of-type(3),
.contents-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.contents-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.contents-page .service-title-text,
.contents-page .service-desc {
    font-weight: 400;
}

.contents-page .service-title-text .num {
    color: #e7ecff;
}

.contents-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.contents-page .eyecatch-fixed::before {
    z-index: 0;
}

.contents-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.contents-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.contents-page .service-menu-eyecatch::before,
.contents-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.contents-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.contents-page .recommended-special,
.contents-page .recommended-special * {
    color: var(--text-main) !important;
}

.contents-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.contents-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.contents-page #voice {
    background: #fafaf8;
}

.contents-page #voice::before {
    opacity: 0.06;
}

.contents-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.contents-page .voice-title,
.contents-page .voice-content,
.contents-page .access-list dt,
.contents-page .access-list dd {
    font-weight: 400;
}

.contents-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.contents-page #access .section-label,
.contents-page #access .section-title.white,
.contents-page #access .sub-title,
.contents-page .access-list dt,
.contents-page .access-list dd,
.contents-page .access-list dd a {
    color: var(--text-main);
}

.contents-page .access-list dt {
    border-left-color: #7d3028;
}

.contents-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.contents-page .btn-accent,
.contents-page .read-more-btn,
.contents-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .contents-page .section-label {
        font-size: 2.4rem;
    }

    .contents-page .service-row,
    .contents-page #kodawari>.service-row:nth-of-type(2),
    .contents-page #kodawari>.service-row:nth-of-type(3),
    .contents-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.contents-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.contents-page .menu-category-full {
    grid-column: 1 / -1;
}

.contents-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.contents-page .item-head-tight {
    margin-bottom: 0;
}

.contents-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.contents-page .tabelog-access-link {
    margin-right: 15px;
}

.contents-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .contents-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .contents-page .menu-category {
        margin-bottom: 40px;
    }

    .contents-page .category-title {
        margin-bottom: 20px;
    }

    .contents-page .image-separator {
        margin-top: 5px !important;
    }

    .contents-page .back-to-top {
        bottom: 100px;
    }

    .contents-page {
        margin-bottom: 60px;
    }
}

.contents-page .about-badge-img,
.contents-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.contents-page #access {
    overflow: hidden;
}

.contents-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.contents-page,
.contents-page body,
.contents-page button,
.contents-page input,
.contents-page textarea,
.contents-page .hero-nav-link,
.contents-page .section-label,
.contents-page .sub-title,
.contents-page .category-title-modern,
.contents-page .voice-title,
.contents-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.contents-page,
.contents-page body,
.contents-page .service-title-text,
.contents-page .service-desc,
.contents-page .voice-title,
.contents-page .voice-content,
.contents-page .access-list dt,
.contents-page .access-list dd {
    font-weight: 400;
}

.contents-page #about,
.contents-page #kodawari,
.contents-page #menu,
.contents-page #access {
    background-color: #fff;
    background-image: none;
}

.contents-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.contents-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.contents-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.contents-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.contents-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.contents-page,
.contents-page body,
.contents-page .section-title,
.contents-page .section-title.white,
.contents-page .service-desc,
.contents-page .voice-title,
.contents-page .voice-content,
.contents-page .access-list dt,
.contents-page .access-list dd,
.contents-page .access-list dd a {
    color: #483c38;
}

.contents-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.contents-page .about-text-content.vertical-text,
.contents-page .about-title-text,
.contents-page .about-sp-title,
.contents-page .about-sp-title .accent-color,
.contents-page .about-sp-desc,
.contents-page .about-sp-desc p {
    color: #483c38 !important;
}

.contents-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.contents-page .service-row,
.contents-page #kodawari>.service-row:nth-of-type(2),
.contents-page #kodawari>.service-row:nth-of-type(3),
.contents-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.contents-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.contents-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.contents-page .service-title-text .text {
    display: block;
}

.contents-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .contents-page .service-row,
    .contents-page .service-row.reverse,
    .contents-page #kodawari>.service-row:nth-of-type(2),
    .contents-page #kodawari>.service-row:nth-of-type(3),
    .contents-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .contents-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.contents-page #about {
    border-bottom: 0;
}

.contents-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.contents-page .service-row,
.contents-page .service-row.reverse,
.contents-page #kodawari>.service-row:nth-of-type(2),
.contents-page #kodawari>.service-row:nth-of-type(3),
.contents-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.contents-page .service-content {
    flex: 1 1 42%;
}

.contents-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.contents-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.contents-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.contents-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.contents-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.contents-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .contents-page .service-row,
    .contents-page .service-row.reverse,
    .contents-page #kodawari>.service-row:nth-of-type(2),
    .contents-page #kodawari>.service-row:nth-of-type(3),
    .contents-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.contents-page,
.contents-page body,
.contents-page p,
.contents-page li,
.contents-page dt,
.contents-page dd,
.contents-page .about-sp-desc,
.contents-page .about-text-content.vertical-text,
.contents-page .service-desc,
.contents-page .item-detail-modern,
.contents-page .voice-content,
.contents-page .product-description,
.contents-page .product-contents {
    font-size: 16px;
}

.contents-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.contents-page .hero {
    background: #111;
}

.contents-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contents-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.contents-page .hero-slide-1 {
    animation-delay: 0s;
}

.contents-page .hero-slide-2 {
    animation-delay: 6s;
}

.contents-page .hero-slide-3 {
    animation-delay: 12s;
}

.contents-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

.contents-page #voice::before {
    display: none;
    background-image: none;
}

.contents-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.contents-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.contents-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.contents-page #message .recommended-text-area {
    padding-right: 48px;
}

.contents-page #message .recommended-slider-area-modern,
.contents-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.contents-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.contents-page .sp-nav-link span {
    display: none;
}

.contents-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.contents-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .contents-page .hero-slide {
        object-position: center;
    }

    .contents-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .contents-page #message .recommended-special,
    .contents-page #message .recommended-flex-modern,
    .contents-page #message .recommended-text-area,
    .contents-page #message .recommended-slider-area-modern,
    .contents-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .contents-page #message .recommended-flex-modern {
        padding: 0;
    }

    .contents-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .contents-page #message .recommended-slider-area-modern,
    .contents-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .contents-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.contents-page #about::before,
.contents-page #about::after {
    display: none;
}

.contents-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.contents-page .product-heading {
    display: block;
}

.contents-page .product-price {
    margin-top: 10px;
}

.contents-page .menu-cta,
.contents-page .menu-cta span,
.contents-page .menu-cta strong {
    color: #fff !important;
}

.contents-page #message .recommended-text-area,
.contents-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contents-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.contents-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.contents-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .contents-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .contents-page .service-row,
    .contents-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .contents-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .contents-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .contents-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .contents-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .contents-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .contents-page #message .recommended-text-area,
    .contents-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .contents-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .contents-page footer {
        padding-bottom: 92px;
    }

    .contents-page .copyright,
    .contents-page .copyright span {
        display: block;
    }

    .contents-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.contents-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.contents-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.contents-page #message .recommended-text-area,
.contents-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contents-page #message .recommended-text-area {
    padding-right: 48px;
}

.contents-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.contents-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .contents-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .contents-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .contents-page #message .recommended-text-area,
    .contents-page #message .recommended-slider-area-modern,
    .contents-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .contents-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.contents-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.contents-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.contents-page .eyecatch-fixed::before,
.contents-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .contents-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .contents-page #message .recommended-flex-modern,
    .contents-page #message .recommended-text-area,
    .contents-page #message .recommended-slider-area-modern,
    .contents-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .contents-page .eyecatch-fixed,
    .contents-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .contents-page .eyecatch-fixed::before,
    .contents-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .contents-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .contents-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .contents-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .contents-page .eyecatch-fixed > *,
    .contents-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .contents-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .contents-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contents-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .contents-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .contents-page #message .recommended-text-area,
    .contents-page #message .recommended-slider-area-modern,
    .contents-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .contents-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .contents-page #message .recommended-slider-area-modern,
    .contents-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .contents-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .contents-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

/* ==========================================================================
   Concept Page Styles (Generated from Class Page Styles)
   ========================================================================== */



/* ==========================================================================
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.concept-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.concept-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.concept-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.concept-page, .concept-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.concept-page h1,
.concept-page h2,
.concept-page h3,
.concept-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.concept-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.concept-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.concept-page, .concept-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.concept-page h1,
.concept-page h2,
.concept-page h3,
.concept-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.concept-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.concept-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.concept-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .concept-page .section-padding {
        padding: 80px 0;
    }

    .concept-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .concept-page .hero-side-links {
        display: none;
    }
}

.concept-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .concept-page .sp-only {
        display: block !important;
    }

    .concept-page .pc-only {
        display: none !important;
    }
}

.concept-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.concept-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .concept-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .concept-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .concept-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .concept-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.concept-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.concept-page .hamburger .line-1 {
    top: 0;
}

.concept-page .hamburger .line-2 {
    top: 10.5px;
}

.concept-page .hamburger .line-3 {
    top: 21px;
}

.concept-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.concept-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.concept-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.concept-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-page .sp-nav.active {
    right: 0;
}

.concept-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.concept-page .sp-nav-list li {
    margin: 40px 0;
}

.concept-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.concept-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.concept-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.concept-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.concept-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.concept-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.concept-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.concept-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.concept-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.concept-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.concept-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.concept-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.concept-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.concept-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.concept-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.concept-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.concept-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.concept-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.concept-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.concept-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.concept-page .section-title.white {
    color: #fff;
}

.concept-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.concept-page .title-main::before,
.concept-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.concept-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.concept-page .section-title.white {
    color: #fff;
}

.concept-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.concept-page .title-main::before,
.concept-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.concept-page .title-main::before {
    left: 0;
}

.concept-page .title-main::after {
    right: 0;
}

.concept-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.concept-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.concept-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.concept-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.concept-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .concept-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .concept-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .concept-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .concept-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .concept-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .concept-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .concept-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .concept-page .hero-title-main {
        white-space: nowrap;
    }

    .concept-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .concept-page .hero-sub::before,
    .concept-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .concept-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .concept-page .media-section .section-title {
        line-height: 1.6;
    }

    .concept-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .concept-page .voice-grid {
        padding: 0;
    }

    .concept-page .voice-card {
        padding: 34px 26px;
    }
}

.concept-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.concept-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.concept-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.concept-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.concept-page .hero-sp-fv-img {
    display: none;
}

.concept-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.concept-page .hero-sub::before,
.concept-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.concept-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.concept-page #about>.container {
    position: relative;
    z-index: 1;
}

.concept-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.concept-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.concept-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.concept-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.concept-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.concept-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.concept-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.concept-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.concept-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.concept-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.concept-page .about-title-text .step-1,
.concept-page .about-title-text .step-2,
.concept-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.concept-page .about-title-text .step-1 {
    transform: translateY(0);
}

.concept-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.concept-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.concept-page .about-title-text .en {
    display: none;
}

.concept-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.concept-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.concept-page .service-title-text .text {
    display: inline;
}

.concept-page .service-title-text::after {
    display: none;
}

.concept-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.concept-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
    animation-fill-mode: both;
    transform: translateX(0);
    will-change: transform;
    position: relative;
    z-index: 2;
}

.concept-page .auto-slider-mask {
    width: 100vw;
    max-width: none;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    box-sizing: border-box;
}

.concept-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.concept-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.concept-page .media-section .section-header {
    text-align: center;
}

.concept-page .media-section .section-label {
    color: var(--accent);
}

.concept-page .media-section .section-title,
.concept-page .media-section .sub-title {
    color: #fff;
}

.concept-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.concept-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.concept-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.concept-page #kodawari>.section-header,
.concept-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.concept-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.concept-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.concept-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.concept-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.concept-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.concept-page .service-row.reverse {
    flex-direction: row-reverse;
}

.concept-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.concept-page .service-visual {
    flex: 1.5;
}

.concept-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.concept-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.concept-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .concept-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 髯ｷ・ｿ繝ｻ・ｳ髯句ｹ｢・ｽ・ｴ驍ｵ・ｺ繝ｻ・ｫ髮玖ｴ具ｽｻ・｣繝ｻ莨∵・繝ｻ・ｼ驍ｵ・ｺ繝ｻ・ｾ驍ｵ・ｺ陝ｶ蜷ｮﾂ・ｻ驛｢譏ｴ繝ｻ邵ｺ蜀暦ｽｹ・ｧ繝ｻ・ｹ驛｢譎冗樟遶雁ｮ壽ｰ｣闔会ｽ｣繝ｻ・ｰ鬯ｩ・･鬮ｦ・ｪ郢晢ｽｻ驛｢・ｧ郢晢ｽｻ*/
    }
}

@media (max-width: 900px) {
    .concept-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .concept-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .concept-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .concept-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .concept-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .concept-page .service-row,
    .concept-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .concept-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .concept-page .recommended-special {
        padding: 24px 0;
    }

    .concept-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .concept-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .concept-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .concept-page .about-sp-title .step-1,
    .concept-page .about-sp-title .step-2,
    .concept-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .concept-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .concept-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .concept-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .concept-page .about-sp-title .accent-color {
        color: #fff;
    }

    .concept-page .service-title-text {
        font-size: 1.3rem;
    }

    .concept-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .concept-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .concept-page .about-sp-desc p {
        color: #fff !important;
    }

    .concept-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .concept-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .concept-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .concept-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .concept-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.concept-page,
.concept-page body,
.concept-page p,
.concept-page li,
.concept-page dt,
.concept-page dd,
.concept-page .about-sp-desc,
.concept-page .about-text-content.vertical-text,
.concept-page .service-desc,
.concept-page .item-detail-modern,
.concept-page .voice-content,
.concept-page .product-description,
.concept-page .product-contents {
    font-size: 16px;
}

.concept-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.concept-page #about::before,
.concept-page #about::after {
    display: none;
}

.concept-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.concept-page .product-heading {
    display: block;
}

.concept-page .product-price {
    margin-top: 10px;
}

.concept-page .menu-cta,
.concept-page .menu-cta span,
.concept-page .menu-cta strong {
    color: #fff !important;
}

.concept-page #message .recommended-text-area,
.concept-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.concept-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.concept-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.concept-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .concept-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .concept-page .service-row,
    .concept-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .concept-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .concept-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .concept-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .concept-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .concept-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .concept-page #message .recommended-text-area,
    .concept-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .concept-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .concept-page footer {
        padding-bottom: 92px;
    }

    .concept-page .copyright,
    .concept-page .copyright span {
        display: block;
    }

    .concept-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.concept-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.concept-page #about::before,
.concept-page #about::after {
    display: none;
}

.concept-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.concept-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.concept-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.concept-page .product-heading {
    display: block;
}

.concept-page .product-price {
    margin-top: 10px;
}

.concept-page .menu-cta,
.concept-page .menu-cta span,
.concept-page .menu-cta strong {
    color: #fff !important;
}

.concept-page #message .recommended-flex-modern {
    align-items: center;
}

.concept-page #message .recommended-text-area,
.concept-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.concept-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.concept-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.concept-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .concept-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .concept-page .service-row,
    .concept-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .concept-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .concept-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .concept-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .concept-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .concept-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .concept-page #message .recommended-text-area,
    .concept-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .concept-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .concept-page footer {
        padding-bottom: 92px;
    }

    .concept-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .concept-page .copyright span {
        display: block;
    }
}

.concept-page .service-visual {
    position: relative;
    overflow: visible;
}

.concept-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.concept-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.concept-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.concept-page .service-title-text {
    justify-content: center;
}

.concept-page .service-title-text .text {
    min-height: 230px;
}

.concept-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.concept-page #message>.section-header,
.concept-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.concept-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.concept-page .product-heading {
    grid-column: 1 / -1;
}

.concept-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.concept-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.concept-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.concept-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.concept-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.concept-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.concept-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.concept-page .product-card-split .product-price {
    color: #CEA6AC;
}

.concept-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.concept-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.concept-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.concept-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.concept-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.concept-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.concept-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.concept-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.concept-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.concept-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.concept-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.concept-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.concept-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.concept-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.concept-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.concept-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.concept-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.concept-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.concept-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.concept-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.concept-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.concept-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.concept-page .menu-cta-online {
    background: #483c38;
}

.concept-page .menu-cta-tel {
    background: #7d3028;
}

.concept-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .concept-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .concept-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .concept-page .service-title-text .text {
        min-height: 205px;
    }

    .concept-page #message>.section-header,
    .concept-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .concept-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .concept-page .product-list + .section-header {
        margin-top: 80px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(SP) */
    }

    .concept-page .product-heading {
        grid-column: auto;
    }

    .concept-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .concept-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .concept-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .concept-page .product-card-split .product-image,
    .concept-page .product-card-split .product-description,
    .concept-page .product-card-split .product-contents-left,
    .concept-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .concept-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .concept-page .product-card-split .product-contents-left,
    .concept-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .concept-page .split-card-title {
        font-size: 28px !important;
    }

    .concept-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .concept-page .order-information {
        grid-template-columns: 1fr;
    }

    .concept-page .order-information>p {
        grid-column: auto;
    }
}

body.concept-page,
.concept-page body,
.concept-page p,
.concept-page li,
.concept-page dt,
.concept-page dd,
.concept-page .about-sp-desc,
.concept-page .about-text-content.vertical-text,
.concept-page .service-desc,
.concept-page .item-detail-modern,
.concept-page .voice-content {
    font-size: 16px;
}

.concept-page #about {
    border-bottom: 0;
}

.concept-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.concept-page .service-row,
.concept-page .service-row.reverse,
.concept-page #kodawari>.service-row:nth-of-type(2),
.concept-page #kodawari>.service-row:nth-of-type(3),
.concept-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.concept-page .service-content {
    flex: 1 1 42%;
}

.concept-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.concept-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.concept-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.concept-page .service-title-text .num {
    padding-top: 5px;
}

.concept-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.concept-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.concept-page #menu>.product-list,
.concept-page #menu>.order-information,
.concept-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.concept-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.concept-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.concept-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.concept-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.concept-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.concept-page .product-description p + p {
    margin-top: 22px;
}

.concept-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.concept-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.concept-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.concept-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.concept-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.concept-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.concept-page .product-details-list dt,
.concept-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.concept-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.concept-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.concept-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.concept-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.concept-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.concept-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.concept-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .concept-page .service-row,
    .concept-page .service-row.reverse,
    .concept-page #kodawari>.service-row:nth-of-type(2),
    .concept-page #kodawari>.service-row:nth-of-type(3),
    .concept-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .concept-page .service-main-img {
        width: 85%;
    }

    .concept-page .service-title-text .text {
        font-size: 36px;
    }

    .concept-page .service-title-note {
        font-size: 27px;
    }

    .concept-page .product-card {
        padding: 34px 20px;
    }

    .concept-page .product-heading {
        display: block;
    }

    .concept-page .product-price {
        margin-top: 12px;
    }

    .concept-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .concept-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.concept-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.concept-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .concept-page .eyecatch-fixed {
        height: 350px;
    }
}

.concept-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.concept-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.concept-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.concept-page #menu>.section-header,
.concept-page #menu>.recommended-special,
.concept-page #menu>.menu-grid,
.concept-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.concept-page .product-list + .section-header {
    margin-top: 120px; /* 驍ｵ・ｺ驗呻ｽｫ遶雁､・ｸ・ｺ繝ｻ・ｪ驛｢・ｧ繝ｻ・ｯ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ驛｢譎丞ｹｲ・主ｸｷ・ｹ・ｧ繝ｻ・､驛｢譎冗函郢晢ｽｻ驛｢譎冗樟邵ｺ驢搾ｽｹ譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ驗呻ｽｫ郢晢ｽｻ髣厄ｽｴ陷･荳樣・(PC) */
}

.concept-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.concept-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.concept-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .concept-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .concept-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .concept-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .concept-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .concept-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .concept-page .menu-item-modern * {
        text-align: left !important;
    }
}

.concept-page .recommended-special * {
    color: #000 !important;
}

.concept-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.concept-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.concept-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.concept-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.concept-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.concept-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.concept-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.concept-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.concept-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.concept-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.concept-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.concept-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.concept-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .concept-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .concept-page .section-title {
        font-size: 1rem;
    }

    .concept-page .item-name-modern {
        font-size: 1.35rem;
    }

    .concept-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.concept-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.concept-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.concept-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.concept-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.concept-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .concept-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .concept-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .concept-page .gold-vertical-line {
        display: none;
    }

    .concept-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .concept-page .horizontal-slider-track {
        height: 400px;
    }
}

.concept-page .menu-category {
    margin-bottom: 80px;
}

.concept-page .menu-item {
    margin-bottom: 30px;
}

.concept-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.concept-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.concept-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.concept-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.concept-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.concept-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.concept-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.concept-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.concept-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.concept-page #voice>.section-header,
.concept-page #voice>.voice-grid,
.concept-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.concept-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.concept-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.concept-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.concept-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.concept-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.concept-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.concept-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.concept-page #access .container {
    position: relative;
    z-index: 2;
}

.concept-page #access .section-label {
    color: var(--accent);
}

.concept-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.concept-page .access-info {
    width: 100%;
}

.concept-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.concept-page .access-list dd {
    color: #fff;
}

.concept-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.concept-page .access-map {
    width: 100%;
}

.concept-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.concept-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.concept-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .concept-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .concept-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .concept-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .concept-page .section-title.black {
        font-size: 2rem;
    }
}

.concept-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.concept-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.concept-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.concept-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.concept-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.concept-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.concept-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.concept-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.concept-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.concept-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.concept-page .read-more-btn:hover {
    color: #000;
}

.concept-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .concept-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.concept-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.concept-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.concept-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.concept-page .side-link-btn.hotpepper {
    background: #333;
}

.concept-page #about {
    background-color: var(--accent);
}

.concept-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.concept-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.concept-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.concept-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.concept-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.concept-page,
.concept-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.concept-page,
.concept-page body,
.concept-page button,
.concept-page input,
.concept-page textarea,
.concept-page .hero-nav-link,
.concept-page .section-label,
.concept-page .sub-title,
.concept-page .category-title-modern {
    font-family: var(--font-jp);
}

.concept-page h1,
.concept-page h2,
.concept-page h3,
.concept-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.concept-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.concept-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.concept-page .hero-nav-link .jp {
    color: #777a73;
}

.concept-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.concept-page .hero-title,
.concept-page .hero-title-small,
.concept-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.concept-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.concept-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.concept-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.concept-page .title-main::before,
.concept-page .title-main::after {
    background: #a8aaa3;
}

.concept-page #about,
.concept-page #kodawari,
.concept-page #menu,
.concept-page #voice,
.concept-page #access {
    background-color: #fff;
    background-image: none;
}

.concept-page #about {
    border-bottom: 1px solid #ecece7;
}

.concept-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.concept-page .auto-slide-img {
    border-radius: 0;
}

.concept-page #kodawari {
    background: #fff;
}

.concept-page .service-row,
.concept-page #kodawari>.service-row:nth-of-type(2),
.concept-page #kodawari>.service-row:nth-of-type(3),
.concept-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.concept-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.concept-page .service-title-text,
.concept-page .service-desc {
    font-weight: 400;
}

.concept-page .service-title-text .num {
    color: #e7ecff;
}

.concept-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.concept-page .eyecatch-fixed::before {
    z-index: 0;
}

.concept-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.concept-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.concept-page .service-menu-eyecatch::before,
.concept-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.concept-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.concept-page .recommended-special,
.concept-page .recommended-special * {
    color: var(--text-main) !important;
}

.concept-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.concept-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.concept-page #voice {
    background: #fafaf8;
}

.concept-page #voice::before {
    opacity: 0.06;
}

.concept-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.concept-page .voice-title,
.concept-page .voice-content,
.concept-page .access-list dt,
.concept-page .access-list dd {
    font-weight: 400;
}

.concept-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.concept-page #access .section-label,
.concept-page #access .section-title.white,
.concept-page #access .sub-title,
.concept-page .access-list dt,
.concept-page .access-list dd,
.concept-page .access-list dd a {
    color: var(--text-main);
}

.concept-page .access-list dt {
    border-left-color: #7d3028;
}

.concept-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.concept-page .btn-accent,
.concept-page .read-more-btn,
.concept-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .concept-page .section-label {
        font-size: 2.4rem;
    }

    .concept-page .service-row,
    .concept-page #kodawari>.service-row:nth-of-type(2),
    .concept-page #kodawari>.service-row:nth-of-type(3),
    .concept-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.concept-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.concept-page .menu-category-full {
    grid-column: 1 / -1;
}

.concept-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.concept-page .item-head-tight {
    margin-bottom: 0;
}

.concept-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.concept-page .tabelog-access-link {
    margin-right: 15px;
}

.concept-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.concept-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.concept-page #menu>.section-header,
.concept-page #menu>.recommended-special,
.concept-page #menu>.menu-grid,
.concept-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.concept-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.concept-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.concept-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .concept-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .concept-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .concept-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .concept-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .concept-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .concept-page .menu-item-modern * {
        text-align: left !important;
    }
}

.concept-page .recommended-special * {
    color: #000 !important;
}

.concept-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.concept-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.concept-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.concept-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.concept-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.concept-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.concept-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.concept-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.concept-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.concept-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.concept-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.concept-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

.concept-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .concept-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .concept-page .section-title {
        font-size: 1rem;
    }

    .concept-page .item-name-modern {
        font-size: 1.35rem;
    }

    .concept-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.concept-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.concept-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.concept-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.concept-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.concept-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@media (max-width: 1200px) {
    .concept-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .concept-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .concept-page .gold-vertical-line {
        display: none;
    }

    .concept-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .concept-page .horizontal-slider-track {
        height: 400px;
    }
}

.concept-page .menu-category {
    margin-bottom: 80px;
}

.concept-page .menu-item {
    margin-bottom: 30px;
}

.concept-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.concept-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.concept-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.concept-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.concept-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.concept-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.concept-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.concept-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.concept-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.concept-page #voice>.section-header,
.concept-page #voice>.voice-grid,
.concept-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.concept-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.concept-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.concept-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.concept-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.concept-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.concept-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.concept-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.concept-page #access .container {
    position: relative;
    z-index: 2;
}

.concept-page #access .section-label {
    color: var(--accent);
}

.concept-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.concept-page .access-info {
    width: 100%;
}

.concept-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.concept-page .access-list dd {
    color: #fff;
}

.concept-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.concept-page .access-map {
    width: 100%;
}

.concept-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.concept-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.concept-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .concept-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .concept-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .concept-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .concept-page .section-title.black {
        font-size: 2rem;
    }
}

.concept-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.concept-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.concept-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.concept-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.concept-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.concept-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.concept-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.concept-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.concept-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.concept-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.concept-page .read-more-btn:hover {
    color: #000;
}

.concept-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .concept-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.concept-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.concept-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.concept-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.concept-page .side-link-btn.hotpepper {
    background: #333;
}

.concept-page #about {
    background-color: var(--accent);
}

.concept-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.concept-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.concept-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.concept-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.concept-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.concept-page,
.concept-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.concept-page,
.concept-page body,
.concept-page button,
.concept-page input,
.concept-page textarea,
.concept-page .hero-nav-link,
.concept-page .section-label,
.concept-page .sub-title,
.concept-page .category-title-modern {
    font-family: var(--font-jp);
}

.concept-page h1,
.concept-page h2,
.concept-page h3,
.concept-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.concept-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.concept-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.concept-page .hero-nav-link .jp {
    color: #777a73;
}

.concept-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.concept-page .hero-title,
.concept-page .hero-title-small,
.concept-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.concept-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.concept-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.concept-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.concept-page .title-main::before,
.concept-page .title-main::after {
    background: #a8aaa3;
}

.concept-page #about,
.concept-page #kodawari,
.concept-page #menu,
.concept-page #voice,
.concept-page #access {
    background-color: #fff;
    background-image: none;
}

.concept-page #about {
    border-bottom: 1px solid #ecece7;
}

.concept-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.concept-page .auto-slide-img {
    border-radius: 0;
}

.concept-page #kodawari {
    background: #fff;
}

.concept-page .service-row,
.concept-page #kodawari>.service-row:nth-of-type(2),
.concept-page #kodawari>.service-row:nth-of-type(3),
.concept-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.concept-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.concept-page .service-title-text,
.concept-page .service-desc {
    font-weight: 400;
}

.concept-page .service-title-text .num {
    color: #e7ecff;
}

.concept-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.concept-page .eyecatch-fixed::before {
    z-index: 0;
}

.concept-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.concept-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.concept-page .service-menu-eyecatch::before,
.concept-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.concept-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.concept-page .recommended-special,
.concept-page .recommended-special * {
    color: var(--text-main) !important;
}

.concept-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.concept-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.concept-page #voice {
    background: #fafaf8;
}

.concept-page #voice::before {
    opacity: 0.06;
}

.concept-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.concept-page .voice-title,
.concept-page .voice-content,
.concept-page .access-list dt,
.concept-page .access-list dd {
    font-weight: 400;
}

.concept-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.concept-page #access .section-label,
.concept-page #access .section-title.white,
.concept-page #access .sub-title,
.concept-page .access-list dt,
.concept-page .access-list dd,
.concept-page .access-list dd a {
    color: var(--text-main);
}

.concept-page .access-list dt {
    border-left-color: #7d3028;
}

.concept-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.concept-page .btn-accent,
.concept-page .read-more-btn,
.concept-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .concept-page .section-label {
        font-size: 2.4rem;
    }

    .concept-page .service-row,
    .concept-page #kodawari>.service-row:nth-of-type(2),
    .concept-page #kodawari>.service-row:nth-of-type(3),
    .concept-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.concept-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.concept-page .menu-category-full {
    grid-column: 1 / -1;
}

.concept-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.concept-page .item-head-tight {
    margin-bottom: 0;
}

.concept-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.concept-page .tabelog-access-link {
    margin-right: 15px;
}

.concept-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .concept-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .concept-page .menu-category {
        margin-bottom: 40px;
    }

    .concept-page .category-title {
        margin-bottom: 20px;
    }

    .concept-page .image-separator {
        margin-top: 5px !important;
    }

    .concept-page .back-to-top {
        bottom: 100px;
    }

    .concept-page {
        margin-bottom: 60px;
    }
}

.concept-page .about-badge-img,
.concept-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.concept-page #access {
    overflow: hidden;
}

.concept-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.concept-page,
.concept-page body,
.concept-page button,
.concept-page input,
.concept-page textarea,
.concept-page .hero-nav-link,
.concept-page .section-label,
.concept-page .sub-title,
.concept-page .category-title-modern,
.concept-page .voice-title,
.concept-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.concept-page,
.concept-page body,
.concept-page .service-title-text,
.concept-page .service-desc,
.concept-page .voice-title,
.concept-page .voice-content,
.concept-page .access-list dt,
.concept-page .access-list dd {
    font-weight: 400;
}

.concept-page #about,
.concept-page #kodawari,
.concept-page #menu,
.concept-page #access {
    background-color: #fff;
    background-image: none;
}

.concept-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.concept-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.concept-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.concept-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.concept-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.concept-page,
.concept-page body,
.concept-page .section-title,
.concept-page .section-title.white,
.concept-page .service-desc,
.concept-page .voice-title,
.concept-page .voice-content,
.concept-page .access-list dt,
.concept-page .access-list dd,
.concept-page .access-list dd a {
    color: #483c38;
}

.concept-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.concept-page .about-text-content.vertical-text,
.concept-page .about-title-text,
.concept-page .about-sp-title,
.concept-page .about-sp-title .accent-color,
.concept-page .about-sp-desc,
.concept-page .about-sp-desc p {
    color: #483c38 !important;
}

.concept-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.concept-page .service-row,
.concept-page #kodawari>.service-row:nth-of-type(2),
.concept-page #kodawari>.service-row:nth-of-type(3),
.concept-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.concept-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.concept-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.concept-page .service-title-text .text {
    display: block;
}

.concept-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .concept-page .service-row,
    .concept-page .service-row.reverse,
    .concept-page #kodawari>.service-row:nth-of-type(2),
    .concept-page #kodawari>.service-row:nth-of-type(3),
    .concept-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .concept-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.concept-page #about {
    border-bottom: 0;
}

.concept-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.concept-page .service-row,
.concept-page .service-row.reverse,
.concept-page #kodawari>.service-row:nth-of-type(2),
.concept-page #kodawari>.service-row:nth-of-type(3),
.concept-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.concept-page .service-content {
    flex: 1 1 42%;
}

.concept-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.concept-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.concept-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.concept-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.concept-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.concept-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .concept-page .service-row,
    .concept-page .service-row.reverse,
    .concept-page #kodawari>.service-row:nth-of-type(2),
    .concept-page #kodawari>.service-row:nth-of-type(3),
    .concept-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.concept-page,
.concept-page body,
.concept-page p,
.concept-page li,
.concept-page dt,
.concept-page dd,
.concept-page .about-sp-desc,
.concept-page .about-text-content.vertical-text,
.concept-page .service-desc,
.concept-page .item-detail-modern,
.concept-page .voice-content,
.concept-page .product-description,
.concept-page .product-contents {
    font-size: 16px;
}

.concept-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.concept-page .hero {
    background: #111;
}

.concept-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.concept-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.concept-page .hero-slide-1 {
    animation-delay: 0s;
}

.concept-page .hero-slide-2 {
    animation-delay: 6s;
}

.concept-page .hero-slide-3 {
    animation-delay: 12s;
}

.concept-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

.concept-page #voice::before {
    display: none;
    background-image: none;
}

.concept-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.concept-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.concept-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.concept-page #message .recommended-text-area {
    padding-right: 48px;
}

.concept-page #message .recommended-slider-area-modern,
.concept-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.concept-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.concept-page .sp-nav-link span {
    display: none;
}

.concept-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.concept-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .concept-page .hero-slide {
        object-position: center;
    }

    .concept-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .concept-page #message .recommended-special,
    .concept-page #message .recommended-flex-modern,
    .concept-page #message .recommended-text-area,
    .concept-page #message .recommended-slider-area-modern,
    .concept-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .concept-page #message .recommended-flex-modern {
        padding: 0;
    }

    .concept-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .concept-page #message .recommended-slider-area-modern,
    .concept-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .concept-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.concept-page #about::before,
.concept-page #about::after {
    display: none;
}

.concept-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.concept-page .product-heading {
    display: block;
}

.concept-page .product-price {
    margin-top: 10px;
}

.concept-page .menu-cta,
.concept-page .menu-cta span,
.concept-page .menu-cta strong {
    color: #fff !important;
}

.concept-page #message .recommended-text-area,
.concept-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.concept-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.concept-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.concept-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .concept-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .concept-page .service-row,
    .concept-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .concept-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .concept-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .concept-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .concept-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .concept-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .concept-page #message .recommended-text-area,
    .concept-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .concept-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .concept-page footer {
        padding-bottom: 92px;
    }

    .concept-page .copyright,
    .concept-page .copyright span {
        display: block;
    }

    .concept-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.concept-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.concept-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.concept-page #message .recommended-text-area,
.concept-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.concept-page #message .recommended-text-area {
    padding-right: 48px;
}

.concept-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.concept-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .concept-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .concept-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .concept-page #message .recommended-text-area,
    .concept-page #message .recommended-slider-area-modern,
    .concept-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .concept-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.concept-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.concept-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.concept-page .eyecatch-fixed::before,
.concept-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .concept-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .concept-page #message .recommended-flex-modern,
    .concept-page #message .recommended-text-area,
    .concept-page #message .recommended-slider-area-modern,
    .concept-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .concept-page .eyecatch-fixed,
    .concept-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .concept-page .eyecatch-fixed::before,
    .concept-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .concept-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .concept-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .concept-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .concept-page .eyecatch-fixed > *,
    .concept-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .concept-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .concept-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .concept-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .concept-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .concept-page #message .recommended-text-area,
    .concept-page #message .recommended-slider-area-modern,
    .concept-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .concept-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .concept-page #message .recommended-slider-area-modern,
    .concept-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .concept-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .concept-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

/* ==========================================================================
   Gallery Page Styles (Generated from Class Page Styles)
   ========================================================================== */
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.gallery-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.gallery-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.gallery-page, .gallery-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.gallery-page h1,
.gallery-page h2,
.gallery-page h3,
.gallery-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.gallery-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.gallery-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.gallery-page, .gallery-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.gallery-page h1,
.gallery-page h2,
.gallery-page h3,
.gallery-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.gallery-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.gallery-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.gallery-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .gallery-page .section-padding {
        padding: 80px 0;
    }

    .gallery-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-page .hero-side-links {
        display: none;
    }
}

.gallery-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .gallery-page .sp-only {
        display: block !important;
    }

    .gallery-page .pc-only {
        display: none !important;
    }
}

.gallery-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.gallery-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .gallery-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .gallery-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .gallery-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .gallery-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.gallery-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.gallery-page .hamburger .line-1 {
    top: 0;
}

.gallery-page .hamburger .line-2 {
    top: 10.5px;
}

.gallery-page .hamburger .line-3 {
    top: 21px;
}

.gallery-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.gallery-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.gallery-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.gallery-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page .sp-nav.active {
    right: 0;
}

.gallery-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.gallery-page .sp-nav-list li {
    margin: 40px 0;
}

.gallery-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.gallery-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.gallery-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.gallery-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.gallery-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.gallery-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.gallery-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.gallery-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.gallery-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.gallery-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.gallery-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.gallery-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.gallery-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.gallery-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.gallery-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.gallery-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.gallery-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.gallery-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.gallery-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.gallery-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.gallery-page .section-title.white {
    color: #fff;
}

.gallery-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.gallery-page .title-main::before,
.gallery-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.gallery-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.gallery-page .section-title.white {
    color: #fff;
}

.gallery-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.gallery-page .title-main::before,
.gallery-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.gallery-page .title-main::before {
    left: 0;
}

.gallery-page .title-main::after {
    right: 0;
}

.gallery-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.gallery-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.gallery-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.gallery-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.gallery-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .gallery-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .gallery-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .gallery-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .gallery-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .gallery-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .gallery-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .gallery-page .hero-title-main {
        white-space: nowrap;
    }

    .gallery-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .gallery-page .hero-sub::before,
    .gallery-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .gallery-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .gallery-page .media-section .section-title {
        line-height: 1.6;
    }

    .gallery-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .gallery-page .voice-grid {
        padding: 0;
    }

    .gallery-page .voice-card {
        padding: 34px 26px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.gallery-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.gallery-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.gallery-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.gallery-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.gallery-page .hero-sp-fv-img {
    display: none;
}

.gallery-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.gallery-page .hero-sub::before,
.gallery-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.gallery-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.gallery-page #about>.container {
    position: relative;
    z-index: 1;
}

@keyframes yakinikuImpact {
    0% {
        opacity: 0;
        transform: translateY(44px) scale(0.86);
        filter: blur(8px);
    }
    62% {
        opacity: 1;
        transform: translateY(-4px) scale(1.03);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heatPulse {
    0%,
    100% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 0 rgba(197, 46, 46, 0);
    }
    50% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 28px rgba(197, 46, 46, 0.62);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.gallery-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.gallery-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.gallery-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.gallery-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.gallery-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.gallery-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.gallery-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.gallery-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.gallery-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.gallery-page .about-title-text .step-1,
.gallery-page .about-title-text .step-2,
.gallery-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.gallery-page .about-title-text .step-1 {
    transform: translateY(0);
}

.gallery-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.gallery-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.gallery-page .about-title-text .en {
    display: none;
}

.gallery-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.gallery-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.gallery-page .service-title-text .text {
    display: inline;
}

.gallery-page .service-title-text::after {
    display: none;
}

.gallery-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.gallery-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.gallery-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-page .media-section .section-header {
    text-align: center;
}

.gallery-page .media-section .section-label {
    color: var(--accent);
}

.gallery-page .media-section .section-title,
.gallery-page .media-section .sub-title {
    color: #fff;
}

.gallery-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.gallery-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.gallery-page #kodawari>.section-header,
.gallery-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.gallery-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.gallery-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.gallery-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.gallery-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.gallery-page .service-row.reverse {
    flex-direction: row-reverse;
}

.gallery-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-page .service-visual {
    flex: 1.5;
}

.gallery-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.gallery-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.gallery-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .gallery-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 鬮ｯ・ｷ繝ｻ・ｿ郢晢ｽｻ繝ｻ・ｳ鬮ｯ蜿･・ｹ・｢繝ｻ・ｽ繝ｻ・ｴ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｫ鬮ｮ邇厄ｽｴ蜈ｷ・ｽ・ｻ繝ｻ・｣郢晢ｽｻ闔ｨ竏ｵ繝ｻ郢晢ｽｻ繝ｻ・ｼ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｾ鬩搾ｽｵ繝ｻ・ｺ髯晢ｽｶ陷ｷ・ｮ・つ繝ｻ・ｻ鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ驍ｵ・ｺ陷證ｦ・ｽ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴主・讓滄・髮・ｽｮ螢ｽ・ｰ・｣髣比ｼ夲ｽｽ・｣郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｩ繝ｻ・･鬯ｮ・ｦ繝ｻ・ｪ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢繝ｻ・ｧ驛｢譎｢・ｽ・ｻ*/
    }
}

@media (max-width: 900px) {
    .gallery-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .gallery-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .gallery-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .gallery-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .gallery-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .gallery-page .service-row,
    .gallery-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .gallery-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .gallery-page .recommended-special {
        padding: 24px 0;
    }

    .gallery-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .gallery-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .gallery-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .gallery-page .about-sp-title .step-1,
    .gallery-page .about-sp-title .step-2,
    .gallery-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .gallery-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .gallery-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .gallery-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .gallery-page .about-sp-title .accent-color {
        color: #fff;
    }

    .gallery-page .service-title-text {
        font-size: 1.3rem;
    }

    .gallery-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .gallery-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .gallery-page .about-sp-desc p {
        color: #fff !important;
    }

    .gallery-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .gallery-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .gallery-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .gallery-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .gallery-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.gallery-page,
.gallery-page body,
.gallery-page p,
.gallery-page li,
.gallery-page dt,
.gallery-page dd,
.gallery-page .about-sp-desc,
.gallery-page .about-text-content.vertical-text,
.gallery-page .service-desc,
.gallery-page .item-detail-modern,
.gallery-page .voice-content,
.gallery-page .product-description,
.gallery-page .product-contents {
    font-size: 16px;
}

.gallery-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.gallery-page #about::before,
.gallery-page #about::after {
    display: none;
}

.gallery-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-page .product-heading {
    display: block;
}

.gallery-page .product-price {
    margin-top: 10px;
}

.gallery-page .menu-cta,
.gallery-page .menu-cta span,
.gallery-page .menu-cta strong {
    color: #fff !important;
}

.gallery-page #message .recommended-text-area,
.gallery-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.gallery-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.gallery-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.gallery-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .gallery-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .gallery-page .service-row,
    .gallery-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .gallery-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .gallery-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .gallery-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .gallery-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .gallery-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .gallery-page #message .recommended-text-area,
    .gallery-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .gallery-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .gallery-page footer {
        padding-bottom: 92px;
    }

    .gallery-page .copyright,
    .gallery-page .copyright span {
        display: block;
    }

    .gallery-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.gallery-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.gallery-page #about::before,
.gallery-page #about::after {
    display: none;
}

.gallery-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.gallery-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.gallery-page .product-heading {
    display: block;
}

.gallery-page .product-price {
    margin-top: 10px;
}

.gallery-page .menu-cta,
.gallery-page .menu-cta span,
.gallery-page .menu-cta strong {
    color: #fff !important;
}

.gallery-page #message .recommended-flex-modern {
    align-items: center;
}

.gallery-page #message .recommended-text-area,
.gallery-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.gallery-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.gallery-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.gallery-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .gallery-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .gallery-page .service-row,
    .gallery-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .gallery-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .gallery-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .gallery-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .gallery-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .gallery-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .gallery-page #message .recommended-text-area,
    .gallery-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .gallery-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .gallery-page footer {
        padding-bottom: 92px;
    }

    .gallery-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .gallery-page .copyright span {
        display: block;
    }
}

.gallery-page .service-visual {
    position: relative;
    overflow: visible;
}

.gallery-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.gallery-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.gallery-page .service-title-text {
    justify-content: center;
}

.gallery-page .service-title-text .text {
    min-height: 230px;
}

.gallery-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.gallery-page #message>.section-header,
.gallery-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.gallery-page .product-heading {
    grid-column: 1 / -1;
}

.gallery-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.gallery-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.gallery-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.gallery-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.gallery-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.gallery-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.gallery-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.gallery-page .product-card-split .product-price {
    color: #CEA6AC;
}

.gallery-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.gallery-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.gallery-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.gallery-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.gallery-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.gallery-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.gallery-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.gallery-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.gallery-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.gallery-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.gallery-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.gallery-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.gallery-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.gallery-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.gallery-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.gallery-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.gallery-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.gallery-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.gallery-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.gallery-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.gallery-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.gallery-page .menu-cta-online {
    background: #483c38;
}

.gallery-page .menu-cta-tel {
    background: #7d3028;
}

.gallery-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .gallery-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .gallery-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .gallery-page .service-title-text .text {
        min-height: 205px;
    }

    .gallery-page #message>.section-header,
    .gallery-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .gallery-page .product-list + .section-header {
        margin-top: 80px; /* 鬩搾ｽｵ繝ｻ・ｺ鬩怜遜・ｽ・ｫ驕ｶ髮・｣ｰ・､繝ｻ・ｸ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｪ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｯ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴惹ｸ橸ｽｹ・ｲ繝ｻ荳ｻ・ｸ・ｷ繝ｻ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・､鬩幢ｽ｢隴主・蜃ｽ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴主・讓滄し・ｺ鬩｢謳ｾ・ｽ・ｹ隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｮ鬮｣蛹・ｽｽ・ｳ鬩怜遜・ｽ・ｫ驛｢譎｢・ｽ・ｻ鬮｣蜴・ｽｽ・ｴ髯ｷ・･闕ｳ讓｣・ｰ繝ｻ(SP) */
    }

    .gallery-page .product-heading {
        grid-column: auto;
    }

    .gallery-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .gallery-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-page .product-card-split .product-image,
    .gallery-page .product-card-split .product-description,
    .gallery-page .product-card-split .product-contents-left,
    .gallery-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .gallery-page .product-card-split .product-contents-left,
    .gallery-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .gallery-page .split-card-title {
        font-size: 28px !important;
    }

    .gallery-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .gallery-page .order-information {
        grid-template-columns: 1fr;
    }

    .gallery-page .order-information>p {
        grid-column: auto;
    }
}

body.gallery-page,
.gallery-page body,
.gallery-page p,
.gallery-page li,
.gallery-page dt,
.gallery-page dd,
.gallery-page .about-sp-desc,
.gallery-page .about-text-content.vertical-text,
.gallery-page .service-desc,
.gallery-page .item-detail-modern,
.gallery-page .voice-content {
    font-size: 16px;
}

.gallery-page #about {
    border-bottom: 0;
}

.gallery-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.gallery-page .service-row,
.gallery-page .service-row.reverse,
.gallery-page #kodawari>.service-row:nth-of-type(2),
.gallery-page #kodawari>.service-row:nth-of-type(3),
.gallery-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.gallery-page .service-content {
    flex: 1 1 42%;
}

.gallery-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.gallery-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.gallery-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.gallery-page .service-title-text .num {
    padding-top: 5px;
}

.gallery-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.gallery-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.gallery-page #menu>.product-list,
.gallery-page #menu>.order-information,
.gallery-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.gallery-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.gallery-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.gallery-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.gallery-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.gallery-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.gallery-page .product-description p + p {
    margin-top: 22px;
}

.gallery-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.gallery-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.gallery-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.gallery-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.gallery-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.gallery-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.gallery-page .product-details-list dt,
.gallery-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.gallery-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.gallery-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.gallery-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.gallery-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.gallery-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.gallery-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.gallery-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .gallery-page .service-row,
    .gallery-page .service-row.reverse,
    .gallery-page #kodawari>.service-row:nth-of-type(2),
    .gallery-page #kodawari>.service-row:nth-of-type(3),
    .gallery-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .gallery-page .service-main-img {
        width: 85%;
    }

    .gallery-page .service-title-text .text {
        font-size: 36px;
    }

    .gallery-page .service-title-note {
        font-size: 27px;
    }

    .gallery-page .product-card {
        padding: 34px 20px;
    }

    .gallery-page .product-heading {
        display: block;
    }

    .gallery-page .product-price {
        margin-top: 12px;
    }

    .gallery-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.gallery-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.gallery-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .gallery-page .eyecatch-fixed {
        height: 350px;
    }
}

.gallery-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.gallery-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.gallery-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.gallery-page #menu>.section-header,
.gallery-page #menu>.recommended-special,
.gallery-page #menu>.menu-grid,
.gallery-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-page .product-list + .section-header {
    margin-top: 120px; /* 鬩搾ｽｵ繝ｻ・ｺ鬩怜遜・ｽ・ｫ驕ｶ髮・｣ｰ・､繝ｻ・ｸ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｪ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｯ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴惹ｸ橸ｽｹ・ｲ繝ｻ荳ｻ・ｸ・ｷ繝ｻ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・､鬩幢ｽ｢隴主・蜃ｽ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴主・讓滄し・ｺ鬩｢謳ｾ・ｽ・ｹ隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｮ鬮｣蛹・ｽｽ・ｳ鬩怜遜・ｽ・ｫ驛｢譎｢・ｽ・ｻ鬮｣蜴・ｽｽ・ｴ髯ｷ・･闕ｳ讓｣・ｰ繝ｻ(PC) */
}

.gallery-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.gallery-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.gallery-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .gallery-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .gallery-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .gallery-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .gallery-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .gallery-page .menu-item-modern * {
        text-align: left !important;
    }
}

.gallery-page .recommended-special * {
    color: #000 !important;
}

.gallery-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.gallery-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.gallery-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.gallery-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.gallery-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.gallery-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.gallery-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.gallery-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.gallery-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.gallery-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.gallery-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gallery-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.gallery-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .gallery-page .section-title {
        font-size: 1rem;
    }

    .gallery-page .item-name-modern {
        font-size: 1.35rem;
    }

    .gallery-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.gallery-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.gallery-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.gallery-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.gallery-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .gallery-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .gallery-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .gallery-page .gold-vertical-line {
        display: none;
    }

    .gallery-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .gallery-page .horizontal-slider-track {
        height: 400px;
    }
}

.gallery-page .menu-category {
    margin-bottom: 80px;
}

.gallery-page .menu-item {
    margin-bottom: 30px;
}

.gallery-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.gallery-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.gallery-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.gallery-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.gallery-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.gallery-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.gallery-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.gallery-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.gallery-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.gallery-page #voice>.section-header,
.gallery-page #voice>.voice-grid,
.gallery-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.gallery-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.gallery-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.gallery-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.gallery-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.gallery-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.gallery-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.gallery-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-page #access .container {
    position: relative;
    z-index: 2;
}

.gallery-page #access .section-label {
    color: var(--accent);
}

.gallery-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.gallery-page .access-info {
    width: 100%;
}

.gallery-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.gallery-page .access-list dd {
    color: #fff;
}

.gallery-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.gallery-page .access-map {
    width: 100%;
}

.gallery-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.gallery-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .gallery-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .gallery-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page .section-title.black {
        font-size: 2rem;
    }
}

.gallery-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.gallery-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.gallery-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.gallery-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.gallery-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.gallery-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.gallery-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.gallery-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.gallery-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .gallery-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.gallery-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.gallery-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.gallery-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.gallery-page .side-link-btn.hotpepper {
    background: #333;
}

.gallery-page #about {
    background-color: var(--accent);
}

.gallery-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.gallery-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.gallery-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.gallery-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.gallery-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.gallery-page,
.gallery-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.gallery-page,
.gallery-page body,
.gallery-page button,
.gallery-page input,
.gallery-page textarea,
.gallery-page .hero-nav-link,
.gallery-page .section-label,
.gallery-page .sub-title,
.gallery-page .category-title-modern {
    font-family: var(--font-jp);
}

.gallery-page h1,
.gallery-page h2,
.gallery-page h3,
.gallery-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.gallery-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.gallery-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.gallery-page .hero-nav-link .jp {
    color: #777a73;
}

.gallery-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.gallery-page .hero-title,
.gallery-page .hero-title-small,
.gallery-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.gallery-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.gallery-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.gallery-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.gallery-page .title-main::before,
.gallery-page .title-main::after {
    background: #a8aaa3;
}

.gallery-page #about,
.gallery-page #kodawari,
.gallery-page #menu,
.gallery-page #voice,
.gallery-page #access {
    background-color: #fff;
    background-image: none;
}

.gallery-page #about {
    border-bottom: 1px solid #ecece7;
}

.gallery-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.gallery-page .auto-slide-img {
    border-radius: 0;
}

.gallery-page #kodawari {
    background: #fff;
}

.gallery-page .service-row,
.gallery-page #kodawari>.service-row:nth-of-type(2),
.gallery-page #kodawari>.service-row:nth-of-type(3),
.gallery-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.gallery-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.gallery-page .service-title-text,
.gallery-page .service-desc {
    font-weight: 400;
}

.gallery-page .service-title-text .num {
    color: #e7ecff;
}

.gallery-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.gallery-page .eyecatch-fixed::before {
    z-index: 0;
}

.gallery-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.gallery-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.gallery-page .service-menu-eyecatch::before,
.gallery-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.gallery-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.gallery-page .recommended-special,
.gallery-page .recommended-special * {
    color: var(--text-main) !important;
}

.gallery-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.gallery-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.gallery-page #voice {
    background: #fafaf8;
}

.gallery-page #voice::before {
    opacity: 0.06;
}

.gallery-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.gallery-page .voice-title,
.gallery-page .voice-content,
.gallery-page .access-list dt,
.gallery-page .access-list dd {
    font-weight: 400;
}

.gallery-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.gallery-page #access .section-label,
.gallery-page #access .section-title.white,
.gallery-page #access .sub-title,
.gallery-page .access-list dt,
.gallery-page .access-list dd,
.gallery-page .access-list dd a {
    color: var(--text-main);
}

.gallery-page .access-list dt {
    border-left-color: #7d3028;
}

.gallery-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.gallery-page .btn-accent,
.gallery-page .read-more-btn,
.gallery-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .gallery-page .section-label {
        font-size: 2.4rem;
    }

    .gallery-page .service-row,
    .gallery-page #kodawari>.service-row:nth-of-type(2),
    .gallery-page #kodawari>.service-row:nth-of-type(3),
    .gallery-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.gallery-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.gallery-page .menu-category-full {
    grid-column: 1 / -1;
}

.gallery-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.gallery-page .item-head-tight {
    margin-bottom: 0;
}

.gallery-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.gallery-page .tabelog-access-link {
    margin-right: 15px;
}

.gallery-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.gallery-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.gallery-page #menu>.section-header,
.gallery-page #menu>.recommended-special,
.gallery-page #menu>.menu-grid,
.gallery-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.gallery-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.gallery-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .gallery-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .gallery-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .gallery-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .gallery-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .gallery-page .menu-item-modern * {
        text-align: left !important;
    }
}

.gallery-page .recommended-special * {
    color: #000 !important;
}

.gallery-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.gallery-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.gallery-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.gallery-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.gallery-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.gallery-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.gallery-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.gallery-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.gallery-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.gallery-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.gallery-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gallery-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.gallery-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .gallery-page .section-title {
        font-size: 1rem;
    }

    .gallery-page .item-name-modern {
        font-size: 1.35rem;
    }

    .gallery-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.gallery-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.gallery-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.gallery-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.gallery-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .gallery-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .gallery-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .gallery-page .gold-vertical-line {
        display: none;
    }

    .gallery-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .gallery-page .horizontal-slider-track {
        height: 400px;
    }
}

.gallery-page .menu-category {
    margin-bottom: 80px;
}

.gallery-page .menu-item {
    margin-bottom: 30px;
}

.gallery-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.gallery-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.gallery-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.gallery-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.gallery-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.gallery-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.gallery-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.gallery-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.gallery-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.gallery-page #voice>.section-header,
.gallery-page #voice>.voice-grid,
.gallery-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.gallery-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.gallery-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.gallery-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.gallery-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.gallery-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.gallery-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.gallery-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-page #access .container {
    position: relative;
    z-index: 2;
}

.gallery-page #access .section-label {
    color: var(--accent);
}

.gallery-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.gallery-page .access-info {
    width: 100%;
}

.gallery-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.gallery-page .access-list dd {
    color: #fff;
}

.gallery-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.gallery-page .access-map {
    width: 100%;
}

.gallery-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.gallery-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .gallery-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .gallery-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page .section-title.black {
        font-size: 2rem;
    }
}

.gallery-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.gallery-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.gallery-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.gallery-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.gallery-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.gallery-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.gallery-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.gallery-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.gallery-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .gallery-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.gallery-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.gallery-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.gallery-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.gallery-page .side-link-btn.hotpepper {
    background: #333;
}

.gallery-page #about {
    background-color: var(--accent);
}

.gallery-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.gallery-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.gallery-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.gallery-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.gallery-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.gallery-page,
.gallery-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.gallery-page,
.gallery-page body,
.gallery-page button,
.gallery-page input,
.gallery-page textarea,
.gallery-page .hero-nav-link,
.gallery-page .section-label,
.gallery-page .sub-title,
.gallery-page .category-title-modern {
    font-family: var(--font-jp);
}

.gallery-page h1,
.gallery-page h2,
.gallery-page h3,
.gallery-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.gallery-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.gallery-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.gallery-page .hero-nav-link .jp {
    color: #777a73;
}

.gallery-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.gallery-page .hero-title,
.gallery-page .hero-title-small,
.gallery-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.gallery-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.gallery-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.gallery-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.gallery-page .title-main::before,
.gallery-page .title-main::after {
    background: #a8aaa3;
}

.gallery-page #about,
.gallery-page #kodawari,
.gallery-page #menu,
.gallery-page #voice,
.gallery-page #access {
    background-color: #fff;
    background-image: none;
}

.gallery-page #about {
    border-bottom: 1px solid #ecece7;
}

.gallery-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.gallery-page .auto-slide-img {
    border-radius: 0;
}

.gallery-page #kodawari {
    background: #fff;
}

.gallery-page .service-row,
.gallery-page #kodawari>.service-row:nth-of-type(2),
.gallery-page #kodawari>.service-row:nth-of-type(3),
.gallery-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.gallery-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.gallery-page .service-title-text,
.gallery-page .service-desc {
    font-weight: 400;
}

.gallery-page .service-title-text .num {
    color: #e7ecff;
}

.gallery-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.gallery-page .eyecatch-fixed::before {
    z-index: 0;
}

.gallery-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.gallery-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.gallery-page .service-menu-eyecatch::before,
.gallery-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.gallery-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.gallery-page .recommended-special,
.gallery-page .recommended-special * {
    color: var(--text-main) !important;
}

.gallery-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.gallery-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.gallery-page #voice {
    background: #fafaf8;
}

.gallery-page #voice::before {
    opacity: 0.06;
}

.gallery-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.gallery-page .voice-title,
.gallery-page .voice-content,
.gallery-page .access-list dt,
.gallery-page .access-list dd {
    font-weight: 400;
}

.gallery-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.gallery-page #access .section-label,
.gallery-page #access .section-title.white,
.gallery-page #access .sub-title,
.gallery-page .access-list dt,
.gallery-page .access-list dd,
.gallery-page .access-list dd a {
    color: var(--text-main);
}

.gallery-page .access-list dt {
    border-left-color: #7d3028;
}

.gallery-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.gallery-page .btn-accent,
.gallery-page .read-more-btn,
.gallery-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .gallery-page .section-label {
        font-size: 2.4rem;
    }

    .gallery-page .service-row,
    .gallery-page #kodawari>.service-row:nth-of-type(2),
    .gallery-page #kodawari>.service-row:nth-of-type(3),
    .gallery-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.gallery-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.gallery-page .menu-category-full {
    grid-column: 1 / -1;
}

.gallery-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.gallery-page .item-head-tight {
    margin-bottom: 0;
}

.gallery-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.gallery-page .tabelog-access-link {
    margin-right: 15px;
}

.gallery-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .gallery-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .gallery-page .menu-category {
        margin-bottom: 40px;
    }

    .gallery-page .category-title {
        margin-bottom: 20px;
    }

    .gallery-page .image-separator {
        margin-top: 5px !important;
    }

    .gallery-page .back-to-top {
        bottom: 100px;
    }

    .gallery-page {
        margin-bottom: 60px;
    }
}

.gallery-page .about-badge-img,
.gallery-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.gallery-page #access {
    overflow: hidden;
}

.gallery-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.gallery-page,
.gallery-page body,
.gallery-page button,
.gallery-page input,
.gallery-page textarea,
.gallery-page .hero-nav-link,
.gallery-page .section-label,
.gallery-page .sub-title,
.gallery-page .category-title-modern,
.gallery-page .voice-title,
.gallery-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.gallery-page,
.gallery-page body,
.gallery-page .service-title-text,
.gallery-page .service-desc,
.gallery-page .voice-title,
.gallery-page .voice-content,
.gallery-page .access-list dt,
.gallery-page .access-list dd {
    font-weight: 400;
}

.gallery-page #about,
.gallery-page #kodawari,
.gallery-page #menu,
.gallery-page #access {
    background-color: #fff;
    background-image: none;
}

.gallery-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.gallery-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.gallery-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.gallery-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.gallery-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.gallery-page,
.gallery-page body,
.gallery-page .section-title,
.gallery-page .section-title.white,
.gallery-page .service-desc,
.gallery-page .voice-title,
.gallery-page .voice-content,
.gallery-page .access-list dt,
.gallery-page .access-list dd,
.gallery-page .access-list dd a {
    color: #483c38;
}

.gallery-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.gallery-page .about-text-content.vertical-text,
.gallery-page .about-title-text,
.gallery-page .about-sp-title,
.gallery-page .about-sp-title .accent-color,
.gallery-page .about-sp-desc,
.gallery-page .about-sp-desc p {
    color: #483c38 !important;
}

.gallery-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.gallery-page .service-row,
.gallery-page #kodawari>.service-row:nth-of-type(2),
.gallery-page #kodawari>.service-row:nth-of-type(3),
.gallery-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.gallery-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.gallery-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.gallery-page .service-title-text .text {
    display: block;
}

.gallery-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .gallery-page .service-row,
    .gallery-page .service-row.reverse,
    .gallery-page #kodawari>.service-row:nth-of-type(2),
    .gallery-page #kodawari>.service-row:nth-of-type(3),
    .gallery-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .gallery-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.gallery-page #about {
    border-bottom: 0;
}

.gallery-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.gallery-page .service-row,
.gallery-page .service-row.reverse,
.gallery-page #kodawari>.service-row:nth-of-type(2),
.gallery-page #kodawari>.service-row:nth-of-type(3),
.gallery-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.gallery-page .service-content {
    flex: 1 1 42%;
}

.gallery-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.gallery-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.gallery-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.gallery-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.gallery-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.gallery-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .gallery-page .service-row,
    .gallery-page .service-row.reverse,
    .gallery-page #kodawari>.service-row:nth-of-type(2),
    .gallery-page #kodawari>.service-row:nth-of-type(3),
    .gallery-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.gallery-page,
.gallery-page body,
.gallery-page p,
.gallery-page li,
.gallery-page dt,
.gallery-page dd,
.gallery-page .about-sp-desc,
.gallery-page .about-text-content.vertical-text,
.gallery-page .service-desc,
.gallery-page .item-detail-modern,
.gallery-page .voice-content,
.gallery-page .product-description,
.gallery-page .product-contents {
    font-size: 16px;
}

.gallery-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.gallery-page .hero {
    background: #111;
}

.gallery-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gallery-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.gallery-page .hero-slide-1 {
    animation-delay: 0s;
}

.gallery-page .hero-slide-2 {
    animation-delay: 6s;
}

.gallery-page .hero-slide-3 {
    animation-delay: 12s;
}

@keyframes elegantHeroFade {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    8%, 30% {
        opacity: 1;
    }
    38%, 100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.gallery-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

@keyframes elegantHeroText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-page #voice::before {
    display: none;
    background-image: none;
}

.gallery-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.gallery-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.gallery-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.gallery-page #message .recommended-text-area {
    padding-right: 48px;
}

.gallery-page #message .recommended-slider-area-modern,
.gallery-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.gallery-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.gallery-page .sp-nav-link span {
    display: none;
}

.gallery-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.gallery-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .gallery-page .hero-slide {
        object-position: center;
    }

    .gallery-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .gallery-page #message .recommended-special,
    .gallery-page #message .recommended-flex-modern,
    .gallery-page #message .recommended-text-area,
    .gallery-page #message .recommended-slider-area-modern,
    .gallery-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .gallery-page #message .recommended-flex-modern {
        padding: 0;
    }

    .gallery-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .gallery-page #message .recommended-slider-area-modern,
    .gallery-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .gallery-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.gallery-page #about::before,
.gallery-page #about::after {
    display: none;
}

.gallery-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.gallery-page .product-heading {
    display: block;
}

.gallery-page .product-price {
    margin-top: 10px;
}

.gallery-page .menu-cta,
.gallery-page .menu-cta span,
.gallery-page .menu-cta strong {
    color: #fff !important;
}

.gallery-page #message .recommended-text-area,
.gallery-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.gallery-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.gallery-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.gallery-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .gallery-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .gallery-page .service-row,
    .gallery-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .gallery-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .gallery-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .gallery-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .gallery-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .gallery-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .gallery-page #message .recommended-text-area,
    .gallery-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .gallery-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .gallery-page footer {
        padding-bottom: 92px;
    }

    .gallery-page .copyright,
    .gallery-page .copyright span {
        display: block;
    }

    .gallery-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.gallery-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.gallery-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.gallery-page #message .recommended-text-area,
.gallery-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.gallery-page #message .recommended-text-area {
    padding-right: 48px;
}

.gallery-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.gallery-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .gallery-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .gallery-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .gallery-page #message .recommended-text-area,
    .gallery-page #message .recommended-slider-area-modern,
    .gallery-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .gallery-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.gallery-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.gallery-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.gallery-page .eyecatch-fixed::before,
.gallery-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .gallery-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .gallery-page #message .recommended-flex-modern,
    .gallery-page #message .recommended-text-area,
    .gallery-page #message .recommended-slider-area-modern,
    .gallery-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .gallery-page .eyecatch-fixed,
    .gallery-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .gallery-page .eyecatch-fixed::before,
    .gallery-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .gallery-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .gallery-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .gallery-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .gallery-page .eyecatch-fixed > *,
    .gallery-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .gallery-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .gallery-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .gallery-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .gallery-page #message .recommended-text-area,
    .gallery-page #message .recommended-slider-area-modern,
    .gallery-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .gallery-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .gallery-page #message .recommended-slider-area-modern,
    .gallery-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .gallery-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .gallery-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

@keyframes messageMarqueeSp {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((-62vw - 30px) * 5));
    }
}






/* ==========================================================================
   Contact Page Styles (Generated from Class Page Styles)
   ========================================================================== */
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.contact-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}


.contact-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.contact-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.contact-page, .contact-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.contact-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.contact-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.contact-page, .contact-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.contact-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.contact-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.contact-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .contact-page .section-padding {
        padding: 80px 0;
    }

    .contact-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-page .hero-side-links {
        display: none;
    }
}

.contact-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .contact-page .sp-only {
        display: block !important;
    }

    .contact-page .pc-only {
        display: none !important;
    }
}

.contact-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.contact-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .contact-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .contact-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .contact-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .contact-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.contact-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.contact-page .hamburger .line-1 {
    top: 0;
}

.contact-page .hamburger .line-2 {
    top: 10.5px;
}

.contact-page .hamburger .line-3 {
    top: 21px;
}

.contact-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.contact-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.contact-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.contact-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .sp-nav.active {
    right: 0;
}

.contact-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.contact-page .sp-nav-list li {
    margin: 40px 0;
}

.contact-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.contact-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.contact-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.contact-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.contact-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.contact-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.contact-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.contact-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.contact-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.contact-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.contact-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.contact-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.contact-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.contact-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.contact-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.contact-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contact-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.contact-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.contact-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.contact-page .section-title.white {
    color: #fff;
}

.contact-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.contact-page .title-main::before,
.contact-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.contact-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.contact-page .section-title.white {
    color: #fff;
}

.contact-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.contact-page .title-main::before,
.contact-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.contact-page .title-main::before {
    left: 0;
}

.contact-page .title-main::after {
    right: 0;
}

.contact-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.contact-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.contact-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.contact-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.contact-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .contact-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .contact-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .contact-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .contact-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .contact-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .contact-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .contact-page .hero-title-main {
        white-space: nowrap;
    }

    .contact-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .contact-page .hero-sub::before,
    .contact-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .contact-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .contact-page .media-section .section-title {
        line-height: 1.6;
    }

    .contact-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .contact-page .voice-grid {
        padding: 0;
    }

    .contact-page .voice-card {
        padding: 34px 26px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.contact-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.contact-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.contact-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.contact-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.contact-page .hero-sp-fv-img {
    display: none;
}

.contact-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.contact-page .hero-sub::before,
.contact-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.contact-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.contact-page #about>.container {
    position: relative;
    z-index: 1;
}

@keyframes yakinikuImpact {
    0% {
        opacity: 0;
        transform: translateY(44px) scale(0.86);
        filter: blur(8px);
    }
    62% {
        opacity: 1;
        transform: translateY(-4px) scale(1.03);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heatPulse {
    0%,
    100% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 0 rgba(197, 46, 46, 0);
    }
    50% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 28px rgba(197, 46, 46, 0.62);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.contact-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.contact-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.contact-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.contact-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.contact-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.contact-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.contact-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.contact-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.contact-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.contact-page .about-title-text .step-1,
.contact-page .about-title-text .step-2,
.contact-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.contact-page .about-title-text .step-1 {
    transform: translateY(0);
}

.contact-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.contact-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.contact-page .about-title-text .en {
    display: none;
}

.contact-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.contact-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.contact-page .service-title-text .text {
    display: inline;
}

.contact-page .service-title-text::after {
    display: none;
}

.contact-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.contact-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.contact-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.contact-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-page .media-section .section-header {
    text-align: center;
}

.contact-page .media-section .section-label {
    color: var(--accent);
}

.contact-page .media-section .section-title,
.contact-page .media-section .sub-title {
    color: #fff;
}

.contact-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.contact-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.contact-page #kodawari>.section-header,
.contact-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.contact-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.contact-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.contact-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.contact-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.contact-page .service-row.reverse {
    flex-direction: row-reverse;
}

.contact-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-page .service-visual {
    flex: 1.5;
}

.contact-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.contact-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.contact-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .contact-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 鬮ｯ・ｷ繝ｻ・ｿ郢晢ｽｻ繝ｻ・ｳ鬮ｯ蜿･・ｹ・｢繝ｻ・ｽ繝ｻ・ｴ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｫ鬮ｮ邇厄ｽｴ蜈ｷ・ｽ・ｻ繝ｻ・｣郢晢ｽｻ闔ｨ竏ｵ繝ｻ郢晢ｽｻ繝ｻ・ｼ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｾ鬩搾ｽｵ繝ｻ・ｺ髯晢ｽｶ陷ｷ・ｮ・つ繝ｻ・ｻ鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ驍ｵ・ｺ陷證ｦ・ｽ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴主・讓滄・髮・ｽｮ螢ｽ・ｰ・｣髣比ｼ夲ｽｽ・｣郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｩ繝ｻ・･鬯ｮ・ｦ繝ｻ・ｪ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢繝ｻ・ｧ驛｢譎｢・ｽ・ｻ*/
    }
}

@media (max-width: 900px) {
    .contact-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .contact-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .contact-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .contact-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .contact-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .contact-page .service-row,
    .contact-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .contact-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .contact-page .recommended-special {
        padding: 24px 0;
    }

    .contact-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .contact-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .contact-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .contact-page .about-sp-title .step-1,
    .contact-page .about-sp-title .step-2,
    .contact-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .contact-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .contact-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .contact-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .contact-page .about-sp-title .accent-color {
        color: #fff;
    }

    .contact-page .service-title-text {
        font-size: 1.3rem;
    }

    .contact-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .contact-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .contact-page .about-sp-desc p {
        color: #fff !important;
    }

    .contact-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .contact-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .contact-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .contact-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .contact-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.contact-page,
.contact-page body,
.contact-page p,
.contact-page li,
.contact-page dt,
.contact-page dd,
.contact-page .about-sp-desc,
.contact-page .about-text-content.vertical-text,
.contact-page .service-desc,
.contact-page .item-detail-modern,
.contact-page .voice-content,
.contact-page .product-description,
.contact-page .product-contents {
    font-size: 16px;
}

.contact-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.contact-page #about::before,
.contact-page #about::after {
    display: none;
}

.contact-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-page .product-heading {
    display: block;
}

.contact-page .product-price {
    margin-top: 10px;
}

.contact-page .menu-cta,
.contact-page .menu-cta span,
.contact-page .menu-cta strong {
    color: #fff !important;
}

.contact-page #message .recommended-text-area,
.contact-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contact-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.contact-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.contact-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .contact-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .contact-page .service-row,
    .contact-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .contact-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .contact-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .contact-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .contact-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .contact-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .contact-page #message .recommended-text-area,
    .contact-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .contact-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .contact-page footer {
        padding-bottom: 92px;
    }

    .contact-page .copyright,
    .contact-page .copyright span {
        display: block;
    }

    .contact-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.contact-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.contact-page #about::before,
.contact-page #about::after {
    display: none;
}

.contact-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.contact-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.contact-page .product-heading {
    display: block;
}

.contact-page .product-price {
    margin-top: 10px;
}

.contact-page .menu-cta,
.contact-page .menu-cta span,
.contact-page .menu-cta strong {
    color: #fff !important;
}

.contact-page #message .recommended-flex-modern {
    align-items: center;
}

.contact-page #message .recommended-text-area,
.contact-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contact-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.contact-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.contact-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .contact-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .contact-page .service-row,
    .contact-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .contact-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .contact-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .contact-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .contact-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .contact-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .contact-page #message .recommended-text-area,
    .contact-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .contact-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .contact-page footer {
        padding-bottom: 92px;
    }

    .contact-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .contact-page .copyright span {
        display: block;
    }
}

.contact-page .service-visual {
    position: relative;
    overflow: visible;
}

.contact-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.contact-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.contact-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.contact-page .service-title-text {
    justify-content: center;
}

.contact-page .service-title-text .text {
    min-height: 230px;
}

.contact-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.contact-page #message>.section-header,
.contact-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.contact-page .product-heading {
    grid-column: 1 / -1;
}

.contact-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.contact-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.contact-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.contact-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.contact-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.contact-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.contact-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.contact-page .product-card-split .product-price {
    color: #CEA6AC;
}

.contact-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.contact-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.contact-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.contact-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.contact-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.contact-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.contact-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.contact-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.contact-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.contact-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.contact-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.contact-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.contact-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.contact-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.contact-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.contact-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.contact-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.contact-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.contact-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.contact-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.contact-page .menu-cta-online {
    background: #483c38;
}

.contact-page .menu-cta-tel {
    background: #7d3028;
}

.contact-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .contact-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .contact-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .contact-page .service-title-text .text {
        min-height: 205px;
    }

    .contact-page #message>.section-header,
    .contact-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .contact-page .product-list + .section-header {
        margin-top: 80px; /* 鬩搾ｽｵ繝ｻ・ｺ鬩怜遜・ｽ・ｫ驕ｶ髮・｣ｰ・､繝ｻ・ｸ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｪ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｯ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴惹ｸ橸ｽｹ・ｲ繝ｻ荳ｻ・ｸ・ｷ繝ｻ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・､鬩幢ｽ｢隴主・蜃ｽ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴主・讓滄し・ｺ鬩｢謳ｾ・ｽ・ｹ隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｮ鬮｣蛹・ｽｽ・ｳ鬩怜遜・ｽ・ｫ驛｢譎｢・ｽ・ｻ鬮｣蜴・ｽｽ・ｴ髯ｷ・･闕ｳ讓｣・ｰ繝ｻ(SP) */
    }

    .contact-page .product-heading {
        grid-column: auto;
    }

    .contact-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .contact-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .contact-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .contact-page .product-card-split .product-image,
    .contact-page .product-card-split .product-description,
    .contact-page .product-card-split .product-contents-left,
    .contact-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .contact-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .contact-page .product-card-split .product-contents-left,
    .contact-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .contact-page .split-card-title {
        font-size: 28px !important;
    }

    .contact-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .contact-page .order-information {
        grid-template-columns: 1fr;
    }

    .contact-page .order-information>p {
        grid-column: auto;
    }
}

body.contact-page,
.contact-page body,
.contact-page p,
.contact-page li,
.contact-page dt,
.contact-page dd,
.contact-page .about-sp-desc,
.contact-page .about-text-content.vertical-text,
.contact-page .service-desc,
.contact-page .item-detail-modern,
.contact-page .voice-content {
    font-size: 16px;
}

.contact-page #about {
    border-bottom: 0;
}

.contact-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.contact-page .service-row,
.contact-page .service-row.reverse,
.contact-page #kodawari>.service-row:nth-of-type(2),
.contact-page #kodawari>.service-row:nth-of-type(3),
.contact-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.contact-page .service-content {
    flex: 1 1 42%;
}

.contact-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.contact-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.contact-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-page .service-title-text .num {
    padding-top: 5px;
}

.contact-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.contact-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.contact-page #menu>.product-list,
.contact-page #menu>.order-information,
.contact-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.contact-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.contact-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.contact-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.contact-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.contact-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.contact-page .product-description p + p {
    margin-top: 22px;
}

.contact-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.contact-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.contact-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.contact-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.contact-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.contact-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.contact-page .product-details-list dt,
.contact-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.contact-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.contact-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.contact-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.contact-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.contact-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.contact-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.contact-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .contact-page .service-row,
    .contact-page .service-row.reverse,
    .contact-page #kodawari>.service-row:nth-of-type(2),
    .contact-page #kodawari>.service-row:nth-of-type(3),
    .contact-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .contact-page .service-main-img {
        width: 85%;
    }

    .contact-page .service-title-text .text {
        font-size: 36px;
    }

    .contact-page .service-title-note {
        font-size: 27px;
    }

    .contact-page .product-card {
        padding: 34px 20px;
    }

    .contact-page .product-heading {
        display: block;
    }

    .contact-page .product-price {
        margin-top: 12px;
    }

    .contact-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.contact-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.contact-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .contact-page .eyecatch-fixed {
        height: 350px;
    }
}

.contact-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.contact-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.contact-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.contact-page #menu>.section-header,
.contact-page #menu>.recommended-special,
.contact-page #menu>.menu-grid,
.contact-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .product-list + .section-header {
    margin-top: 120px; /* 鬩搾ｽｵ繝ｻ・ｺ鬩怜遜・ｽ・ｫ驕ｶ髮・｣ｰ・､繝ｻ・ｸ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｪ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｯ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴惹ｸ橸ｽｹ・ｲ繝ｻ荳ｻ・ｸ・ｷ繝ｻ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・､鬩幢ｽ｢隴主・蜃ｽ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴主・讓滄し・ｺ鬩｢謳ｾ・ｽ・ｹ隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｮ鬮｣蛹・ｽｽ・ｳ鬩怜遜・ｽ・ｫ驛｢譎｢・ｽ・ｻ鬮｣蜴・ｽｽ・ｴ髯ｷ・･闕ｳ讓｣・ｰ繝ｻ(PC) */
}

.contact-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.contact-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.contact-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .contact-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .contact-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .contact-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .contact-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .contact-page .menu-item-modern * {
        text-align: left !important;
    }
}

.contact-page .recommended-special * {
    color: #000 !important;
}

.contact-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.contact-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.contact-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.contact-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contact-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.contact-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.contact-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.contact-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.contact-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.contact-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.contact-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.contact-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .contact-page .section-title {
        font-size: 1rem;
    }

    .contact-page .item-name-modern {
        font-size: 1.35rem;
    }

    .contact-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.contact-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.contact-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.contact-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.contact-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.contact-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .contact-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .contact-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .contact-page .gold-vertical-line {
        display: none;
    }

    .contact-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .contact-page .horizontal-slider-track {
        height: 400px;
    }
}

.contact-page .menu-category {
    margin-bottom: 80px;
}

.contact-page .menu-item {
    margin-bottom: 30px;
}

.contact-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.contact-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.contact-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.contact-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.contact-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.contact-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.contact-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.contact-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.contact-page #voice>.section-header,
.contact-page #voice>.voice-grid,
.contact-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contact-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.contact-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.contact-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.contact-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.contact-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.contact-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-page #access .container {
    position: relative;
    z-index: 2;
}

.contact-page #access .section-label {
    color: var(--accent);
}

.contact-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-page .access-info {
    width: 100%;
}

.contact-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.contact-page .access-list dd {
    color: #fff;
}

.contact-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.contact-page .access-map {
    width: 100%;
}

.contact-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.contact-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .contact-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .contact-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .section-title.black {
        font-size: 2rem;
    }
}

.contact-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.contact-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.contact-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.contact-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.contact-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.contact-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.contact-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.contact-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.contact-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.contact-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .contact-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.contact-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.contact-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.contact-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.contact-page .side-link-btn.hotpepper {
    background: #333;
}

.contact-page #about {
    background-color: var(--accent);
}

.contact-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.contact-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.contact-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.contact-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.contact-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.contact-page,
.contact-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.contact-page,
.contact-page body,
.contact-page button,
.contact-page input,
.contact-page textarea,
.contact-page .hero-nav-link,
.contact-page .section-label,
.contact-page .sub-title,
.contact-page .category-title-modern {
    font-family: var(--font-jp);
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.contact-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.contact-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.contact-page .hero-nav-link .jp {
    color: #777a73;
}

.contact-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.contact-page .hero-title,
.contact-page .hero-title-small,
.contact-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.contact-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.contact-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.contact-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.contact-page .title-main::before,
.contact-page .title-main::after {
    background: #a8aaa3;
}

.contact-page #about,
.contact-page #kodawari,
.contact-page #menu,
.contact-page #voice,
.contact-page #access {
    background-color: #fff;
    background-image: none;
}

.contact-page #about {
    border-bottom: 1px solid #ecece7;
}

.contact-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.contact-page .auto-slide-img {
    border-radius: 0;
}

.contact-page #kodawari {
    background: #fff;
}

.contact-page .service-row,
.contact-page #kodawari>.service-row:nth-of-type(2),
.contact-page #kodawari>.service-row:nth-of-type(3),
.contact-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.contact-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.contact-page .service-title-text,
.contact-page .service-desc {
    font-weight: 400;
}

.contact-page .service-title-text .num {
    color: #e7ecff;
}

.contact-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.contact-page .eyecatch-fixed::before {
    z-index: 0;
}

.contact-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.contact-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.contact-page .service-menu-eyecatch::before,
.contact-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.contact-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.contact-page .recommended-special,
.contact-page .recommended-special * {
    color: var(--text-main) !important;
}

.contact-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.contact-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.contact-page #voice {
    background: #fafaf8;
}

.contact-page #voice::before {
    opacity: 0.06;
}

.contact-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.contact-page .voice-title,
.contact-page .voice-content,
.contact-page .access-list dt,
.contact-page .access-list dd {
    font-weight: 400;
}

.contact-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.contact-page #access .section-label,
.contact-page #access .section-title.white,
.contact-page #access .sub-title,
.contact-page .access-list dt,
.contact-page .access-list dd,
.contact-page .access-list dd a {
    color: var(--text-main);
}

.contact-page .access-list dt {
    border-left-color: #7d3028;
}

.contact-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.contact-page .btn-accent,
.contact-page .read-more-btn,
.contact-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .contact-page .section-label {
        font-size: 2.4rem;
    }

    .contact-page .service-row,
    .contact-page #kodawari>.service-row:nth-of-type(2),
    .contact-page #kodawari>.service-row:nth-of-type(3),
    .contact-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.contact-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-page .menu-category-full {
    grid-column: 1 / -1;
}

.contact-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.contact-page .item-head-tight {
    margin-bottom: 0;
}

.contact-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-page .tabelog-access-link {
    margin-right: 15px;
}

.contact-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.contact-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.contact-page #menu>.section-header,
.contact-page #menu>.recommended-special,
.contact-page #menu>.menu-grid,
.contact-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.contact-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.contact-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .contact-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .contact-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .contact-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .contact-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .contact-page .menu-item-modern * {
        text-align: left !important;
    }
}

.contact-page .recommended-special * {
    color: #000 !important;
}

.contact-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.contact-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.contact-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.contact-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contact-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.contact-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.contact-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.contact-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.contact-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.contact-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.contact-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.contact-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .contact-page .section-title {
        font-size: 1rem;
    }

    .contact-page .item-name-modern {
        font-size: 1.35rem;
    }

    .contact-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.contact-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.contact-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.contact-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.contact-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.contact-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .contact-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .contact-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .contact-page .gold-vertical-line {
        display: none;
    }

    .contact-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .contact-page .horizontal-slider-track {
        height: 400px;
    }
}

.contact-page .menu-category {
    margin-bottom: 80px;
}

.contact-page .menu-item {
    margin-bottom: 30px;
}

.contact-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.contact-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.contact-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.contact-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.contact-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.contact-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.contact-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.contact-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.contact-page #voice>.section-header,
.contact-page #voice>.voice-grid,
.contact-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contact-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.contact-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.contact-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.contact-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.contact-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.contact-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-page #access .container {
    position: relative;
    z-index: 2;
}

.contact-page #access .section-label {
    color: var(--accent);
}

.contact-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-page .access-info {
    width: 100%;
}

.contact-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.contact-page .access-list dd {
    color: #fff;
}

.contact-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.contact-page .access-map {
    width: 100%;
}

.contact-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.contact-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .contact-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .contact-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .section-title.black {
        font-size: 2rem;
    }
}

.contact-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.contact-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.contact-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.contact-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.contact-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.contact-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.contact-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.contact-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.contact-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.contact-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .contact-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.contact-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.contact-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.contact-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.contact-page .side-link-btn.hotpepper {
    background: #333;
}

.contact-page #about {
    background-color: var(--accent);
}

.contact-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.contact-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.contact-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.contact-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.contact-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.contact-page,
.contact-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.contact-page,
.contact-page body,
.contact-page button,
.contact-page input,
.contact-page textarea,
.contact-page .hero-nav-link,
.contact-page .section-label,
.contact-page .sub-title,
.contact-page .category-title-modern {
    font-family: var(--font-jp);
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.contact-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.contact-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.contact-page .hero-nav-link .jp {
    color: #777a73;
}

.contact-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.contact-page .hero-title,
.contact-page .hero-title-small,
.contact-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.contact-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.contact-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.contact-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.contact-page .title-main::before,
.contact-page .title-main::after {
    background: #a8aaa3;
}

.contact-page #about,
.contact-page #kodawari,
.contact-page #menu,
.contact-page #voice,
.contact-page #access {
    background-color: #fff;
    background-image: none;
}

.contact-page #about {
    border-bottom: 1px solid #ecece7;
}

.contact-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.contact-page .auto-slide-img {
    border-radius: 0;
}

.contact-page #kodawari {
    background: #fff;
}

.contact-page .service-row,
.contact-page #kodawari>.service-row:nth-of-type(2),
.contact-page #kodawari>.service-row:nth-of-type(3),
.contact-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.contact-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.contact-page .service-title-text,
.contact-page .service-desc {
    font-weight: 400;
}

.contact-page .service-title-text .num {
    color: #e7ecff;
}

.contact-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.contact-page .eyecatch-fixed::before {
    z-index: 0;
}

.contact-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.contact-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.contact-page .service-menu-eyecatch::before,
.contact-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.contact-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.contact-page .recommended-special,
.contact-page .recommended-special * {
    color: var(--text-main) !important;
}

.contact-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.contact-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.contact-page #voice {
    background: #fafaf8;
}

.contact-page #voice::before {
    opacity: 0.06;
}

.contact-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.contact-page .voice-title,
.contact-page .voice-content,
.contact-page .access-list dt,
.contact-page .access-list dd {
    font-weight: 400;
}

.contact-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.contact-page #access .section-label,
.contact-page #access .section-title.white,
.contact-page #access .sub-title,
.contact-page .access-list dt,
.contact-page .access-list dd,
.contact-page .access-list dd a {
    color: var(--text-main);
}

.contact-page .access-list dt {
    border-left-color: #7d3028;
}

.contact-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.contact-page .btn-accent,
.contact-page .read-more-btn,
.contact-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .contact-page .section-label {
        font-size: 2.4rem;
    }

    .contact-page .service-row,
    .contact-page #kodawari>.service-row:nth-of-type(2),
    .contact-page #kodawari>.service-row:nth-of-type(3),
    .contact-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.contact-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-page .menu-category-full {
    grid-column: 1 / -1;
}

.contact-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.contact-page .item-head-tight {
    margin-bottom: 0;
}

.contact-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-page .tabelog-access-link {
    margin-right: 15px;
}

.contact-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .contact-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .contact-page .menu-category {
        margin-bottom: 40px;
    }

    .contact-page .category-title {
        margin-bottom: 20px;
    }

    .contact-page .image-separator {
        margin-top: 5px !important;
    }

    .contact-page .back-to-top {
        bottom: 100px;
    }

    .contact-page {
        margin-bottom: 60px;
    }
}

.contact-page .about-badge-img,
.contact-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.contact-page #access {
    overflow: hidden;
}

.contact-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.contact-page,
.contact-page body,
.contact-page button,
.contact-page input,
.contact-page textarea,
.contact-page .hero-nav-link,
.contact-page .section-label,
.contact-page .sub-title,
.contact-page .category-title-modern,
.contact-page .voice-title,
.contact-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.contact-page,
.contact-page body,
.contact-page .service-title-text,
.contact-page .service-desc,
.contact-page .voice-title,
.contact-page .voice-content,
.contact-page .access-list dt,
.contact-page .access-list dd {
    font-weight: 400;
}

.contact-page #about,
.contact-page #kodawari,
.contact-page #menu,
.contact-page #access {
    background-color: #fff;
    background-image: none;
}

.contact-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.contact-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.contact-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.contact-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.contact-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.contact-page,
.contact-page body,
.contact-page .section-title,
.contact-page .section-title.white,
.contact-page .service-desc,
.contact-page .voice-title,
.contact-page .voice-content,
.contact-page .access-list dt,
.contact-page .access-list dd,
.contact-page .access-list dd a {
    color: #483c38;
}

.contact-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.contact-page .about-text-content.vertical-text,
.contact-page .about-title-text,
.contact-page .about-sp-title,
.contact-page .about-sp-title .accent-color,
.contact-page .about-sp-desc,
.contact-page .about-sp-desc p {
    color: #483c38 !important;
}

.contact-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.contact-page .service-row,
.contact-page #kodawari>.service-row:nth-of-type(2),
.contact-page #kodawari>.service-row:nth-of-type(3),
.contact-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.contact-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.contact-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.contact-page .service-title-text .text {
    display: block;
}

.contact-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .contact-page .service-row,
    .contact-page .service-row.reverse,
    .contact-page #kodawari>.service-row:nth-of-type(2),
    .contact-page #kodawari>.service-row:nth-of-type(3),
    .contact-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .contact-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.contact-page #about {
    border-bottom: 0;
}

.contact-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.contact-page .service-row,
.contact-page .service-row.reverse,
.contact-page #kodawari>.service-row:nth-of-type(2),
.contact-page #kodawari>.service-row:nth-of-type(3),
.contact-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.contact-page .service-content {
    flex: 1 1 42%;
}

.contact-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.contact-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.contact-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.contact-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.contact-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.contact-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-page .service-row,
    .contact-page .service-row.reverse,
    .contact-page #kodawari>.service-row:nth-of-type(2),
    .contact-page #kodawari>.service-row:nth-of-type(3),
    .contact-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.contact-page,
.contact-page body,
.contact-page p,
.contact-page li,
.contact-page dt,
.contact-page dd,
.contact-page .about-sp-desc,
.contact-page .about-text-content.vertical-text,
.contact-page .service-desc,
.contact-page .item-detail-modern,
.contact-page .voice-content,
.contact-page .product-description,
.contact-page .product-contents {
    font-size: 16px;
}

.contact-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.contact-page .hero {
    background: #111;
}

.contact-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.contact-page .hero-slide-1 {
    animation-delay: 0s;
}

.contact-page .hero-slide-2 {
    animation-delay: 6s;
}

.contact-page .hero-slide-3 {
    animation-delay: 12s;
}

@keyframes elegantHeroFade {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    8%, 30% {
        opacity: 1;
    }
    38%, 100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.contact-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

@keyframes elegantHeroText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-page #voice::before {
    display: none;
    background-image: none;
}

.contact-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.contact-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.contact-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.contact-page #message .recommended-text-area {
    padding-right: 48px;
}

.contact-page #message .recommended-slider-area-modern,
.contact-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.contact-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.contact-page .sp-nav-link span {
    display: none;
}

.contact-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.contact-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .contact-page .hero-slide {
        object-position: center;
    }

    .contact-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .contact-page #message .recommended-special,
    .contact-page #message .recommended-flex-modern,
    .contact-page #message .recommended-text-area,
    .contact-page #message .recommended-slider-area-modern,
    .contact-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-page #message .recommended-flex-modern {
        padding: 0;
    }

    .contact-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .contact-page #message .recommended-slider-area-modern,
    .contact-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.contact-page #about::before,
.contact-page #about::after {
    display: none;
}

.contact-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.contact-page .product-heading {
    display: block;
}

.contact-page .product-price {
    margin-top: 10px;
}

.contact-page .menu-cta,
.contact-page .menu-cta span,
.contact-page .menu-cta strong {
    color: #fff !important;
}

.contact-page #message .recommended-text-area,
.contact-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contact-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.contact-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.contact-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .contact-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .contact-page .service-row,
    .contact-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .contact-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .contact-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .contact-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .contact-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .contact-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .contact-page #message .recommended-text-area,
    .contact-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .contact-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .contact-page footer {
        padding-bottom: 92px;
    }

    .contact-page .copyright,
    .contact-page .copyright span {
        display: block;
    }

    .contact-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.contact-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.contact-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.contact-page #message .recommended-text-area,
.contact-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.contact-page #message .recommended-text-area {
    padding-right: 48px;
}

.contact-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.contact-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .contact-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .contact-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .contact-page #message .recommended-text-area,
    .contact-page #message .recommended-slider-area-modern,
    .contact-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .contact-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.contact-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.contact-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.contact-page .eyecatch-fixed::before,
.contact-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .contact-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .contact-page #message .recommended-flex-modern,
    .contact-page #message .recommended-text-area,
    .contact-page #message .recommended-slider-area-modern,
    .contact-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .contact-page .eyecatch-fixed,
    .contact-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .contact-page .eyecatch-fixed::before,
    .contact-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .contact-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .contact-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .contact-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .contact-page .eyecatch-fixed > *,
    .contact-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .contact-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .contact-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-page #message .recommended-special {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .contact-page #message .recommended-text-area,
    .contact-page #message .recommended-slider-area-modern,
    .contact-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .contact-page #message .recommended-slider-area-modern,
    .contact-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .contact-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

@keyframes messageMarqueeSp {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((-62vw - 30px) * 5));
    }
}






/* ==========================================================================
   Access Page Styles (Generated from Class Page Styles)
   ========================================================================== */
   CONSOLIDATED & SCOPED STYLE_CLASS.CSS RULES - PART 1
   ========================================================================== */

.access-page {
    --primary-bg: #f4f1ea;
    --secondary-bg: #e8e4d9;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --accent: #c52e2e;
    --accent-blue: #1e3a8a;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", "Arial Black", Impact, sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.access-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.access-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.access-page, .access-page body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.access-page h1,
.access-page h2,
.access-page h3,
.access-page .serif {
    font-family: var(--font-jp);
    font-weight: 900;
}

.access-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.access-page {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body.access-page, .access-page body {
    background: url('../img_class/background.png') center/cover no-repeat;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.access-page h1,
.access-page h2,
.access-page h3,
.access-page .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.access-page .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.access-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.access-page .section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .access-page .section-padding {
        padding: 80px 0;
    }

    .access-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .access-page .hero-side-links {
        display: none;
    }
}

.access-page .sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .access-page .sp-only {
        display: block !important;
    }

    .access-page .pc-only {
        display: none !important;
    }
}

.access-page #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    pointer-events: none;
}

.access-page .hamburger {
    position: fixed !important;
    top: 24px !important;
    right: 40px !important;
    width: 35px;
    height: 24px;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: none;
    transform: translateZ(999px) !important;
}

@media (max-width: 768px) {
    .access-page .hamburger {
        display: block !important;
        top: 20px !important;
        right: 40px !important;
    }

    .access-page #header.pc-only {
        display: block !important;
        height: 64px;
        background: transparent;
        box-shadow: none;
        transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }

    .access-page #header.sp-scrolled {
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }

    .access-page .sp-header-brand {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-main);
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }
}

.access-page .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--accent) !important;
    left: 0;
    transition: transform 0.4s var(--transition), opacity 0.4s;
    border-radius: 2px;
}

.access-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
    border-radius: 160px 160px 0 0;
}

.access-page .hamburger .line-1 {
    top: 0;
}

.access-page .hamburger .line-2 {
    top: 10.5px;
}

.access-page .hamburger .line-3 {
    top: 21px;
}

.access-page .hamburger.active .line-1 {
    top: 10.5px;
    transform: rotate(45deg) !important;
}

.access-page .hamburger.active .line-2 {
    opacity: 0 !important;
}

.access-page .hamburger.active .line-3 {
    top: 10.5px;
    transform: rotate(-45deg) !important;
}

.access-page .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transition: right 0.5s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-page .sp-nav.active {
    right: 0;
}

.access-page .sp-nav-list {
    list-style: none;
    text-align: center;
}

.access-page .sp-nav-list li {
    margin: 40px 0;
}

.access-page .sp-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access-page .sp-nav-link span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-family: var(--font-jp);
}

.access-page .hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img_class/fv.jpeg') center/cover no-repeat;
}

.access-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.access-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.36;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.access-page .hero-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.access-page .hero-lead {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 18px;
}

.access-page .hero-main-img {
    position: relative;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: none;
}

.access-page .hero-title-img {
    position: absolute;
    left: -23%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.access-page .hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 0 28px;
}

.access-page .hero-brand {
    margin-right: auto;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.access-page .hero-nav-link {
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    font-family: var(--font-en);
    font-weight: 700;
}

.access-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.access-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: var(--font-jp);
}

.access-page .hero-nav-link .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.access-page .hero-nav-link .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.access-page .hero-nav-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.access-page .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.access-page .title-main {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.access-page .section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.access-page .section-title {
    font-size: 1.25rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.access-page .section-title.white {
    color: #fff;
}

.access-page .sub-title {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.access-page .title-main::before,
.access-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--text-main);
}

.access-page .section-title {
    font-size: 1.25rem;
    color: #000;
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.access-page .section-title.white {
    color: #fff;
}

.access-page .sub-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--accent-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 5px;
}

.access-page .title-main::before,
.access-page .title-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.access-page .title-main::before {
    left: 0;
}

.access-page .title-main::after {
    right: 0;
}

.access-page .voice-badge-img {
    position: absolute;
    top: -120px;
    right: -10%;
    width: 600px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}

.access-page .hero-side-links {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1300;
}

.access-page .side-link-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    min-width: 118px;
    height: 50px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.3s;
    font-family: var(--font-jp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-page .side-link-btn:hover {
    background: #c00000;
    transform: translateY(-2px);
}

.access-page .side-link-btn .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.access-page .side-instagram-icon.brand-color {
    font-size: 2rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .access-page .hero-side-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .access-page .hero {
        background-image: url('../img_class/fv.jpeg');
        background-position: center top;
        height: 60vh;
    }

    .access-page .hero-sp-fv-img {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    .access-page .hero-content {
        width: 100vw;
        padding: 0 20px;
    }

    .access-page .hero-lead {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .access-page .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .access-page .hero-title-small {
        font-size: clamp(0.78rem, 3.35vw, 0.98rem);
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .access-page .hero-title-main {
        white-space: nowrap;
    }

    .access-page .hero-sub {
        font-size: 0.76rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .access-page .hero-sub::before,
    .access-page .hero-sub::after {
        width: 18px;
        margin: 0 8px;
    }

    .class-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
    border-radius: 160px 160px 0 0;
}

    .access-page .media-section .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

    .access-page .media-section .section-title {
        line-height: 1.6;
    }

    .access-page #voice::before {
        top: 10px;
        right: -18vw;
        width: 92vw;
        opacity: 0.15;
    }

    .access-page .voice-grid {
        padding: 0;
    }

    .access-page .voice-card {
        padding: 34px 26px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.access-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.access-page .hero-title {
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(34px) scale(0.94);
    animation: yakinikuImpact 1.1s var(--transition) forwards 0.25s, heatPulse 3s ease-in-out infinite 1.6s;
}

.access-page .hero-title-small {
    display: block;
    font-size: 0.48em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.access-page .hero-title-main {
    display: block;
    line-height: 1.2;
}

.access-page .hero-sp-fv-img {
    display: none;
}

.access-page .hero-sub {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.65s;
}

.access-page .hero-sub::before,
.access-page .hero-sub::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 16px;
}

.access-page #about {
    position: relative;
    overflow: visible;
    z-index: 4;
}

.access-page #about>.container {
    position: relative;
    z-index: 1;
}

@keyframes yakinikuImpact {
    0% {
        opacity: 0;
        transform: translateY(44px) scale(0.86);
        filter: blur(8px);
    }
    62% {
        opacity: 1;
        transform: translateY(-4px) scale(1.03);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heatPulse {
    0%,
    100% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 0 rgba(197, 46, 46, 0);
    }
    50% {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 28px rgba(197, 46, 46, 0.62);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.access-page .about-new-layout {
    position: relative;
    margin-top: -350px;
    z-index: 10;
}

.access-page .about-flex-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.access-page .about-left {
    flex: 1.2;
    z-index: 20;
}

.access-page .about-main-img {
    width: 140%;
    max-width: none !important;
    display: block;
    transform: translateX(-30%);
}

.access-page .about-right {
    flex: 0.9;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-top: 320px;
}

.access-page .about-title-group {
    position: relative;
    margin-bottom: 40px;
    height: 200px;
    display: flex;
    align-items: center;
}

.access-page .about-badge-img {
    position: absolute;
    right: -25vw;
    top: 150px;
    width: 800px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: normal;
}

.access-page .about-title-img {
    position: relative;
    width: 100px;
    z-index: 25;
}

.access-page .about-text-content.vertical-text {
    position: relative;
    z-index: 35;
    color: #fff !important;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    min-height: 450px;
    letter-spacing: 0.2em;
    margin-right: 50px;
    width: fit-content;
    white-space: nowrap;
}

.access-page .about-title-text {
    position: relative;
    z-index: 25;
    font-size: 2.2rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    line-height: 1.6;
    height: auto;
    white-space: nowrap;
}

.access-page .about-title-text .step-1,
.access-page .about-title-text .step-2,
.access-page .about-title-text .step-3 {
    display: inline-block;
    position: relative;
}

.access-page .about-title-text .step-1 {
    transform: translateY(0);
}

.access-page .about-title-text .step-2 {
    transform: translateY(1.5em);
}

.access-page .about-title-text .step-3 {
    transform: translateY(3.0em);
}

.access-page .about-title-text .en {
    display: none;
}

.access-page .service-title-text {
    font-size: 1.6rem;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
    width: 100%;
    z-index: 2;
}

.access-page .service-title-text .num {
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.15);
    font-family: var(--font-en);
    font-weight: 700;
    z-index: -1;
    line-height: 1;
}

.access-page .service-title-text .text {
    display: inline;
}

.access-page .service-title-text::after {
    display: none;
}

.access-page .auto-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url('../img_class/slidebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
}

.access-page .auto-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.access-page .auto-slide-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.access-page .media-section {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.access-page .media-section .section-header {
    text-align: center;
}

.access-page .media-section .section-label {
    color: var(--accent);
}

.access-page .media-section .section-title,
.access-page .media-section .sub-title {
    color: #fff;
}

.access-page .media-video {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.access-page .media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.access-page #kodawari {
    background: #f4f1ea;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.access-page #kodawari>.section-header,
.access-page #kodawari>.service-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.access-page .service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 8px;
}

.access-page #kodawari>.service-row:nth-of-type(2) {
    background: rgba(255, 255, 255, 0.55);
}

.access-page #kodawari>.service-row:nth-of-type(3) {
    background: rgba(232, 228, 217, 0.72);
}

.access-page #kodawari>.service-row:nth-of-type(4) {
    background: rgba(244, 224, 205, 0.46);
}

.access-page #kodawari>.service-row:nth-of-type(5) {
    background: rgba(219, 229, 217, 0.58);
}

.access-page .service-row.reverse {
    flex-direction: row-reverse;
}

.access-page .service-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.access-page .service-visual {
    flex: 1.5;
}

.access-page .service-title-img {
    width: 360px;
    height: auto;
    margin-bottom: 30px;
}

.access-page .service-desc {
    color: var(--text-main);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2.2;
    padding: 0;
    text-align: left;
}

.access-page .service-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

@media (max-width: 1366px) and (min-width: 901px) {
    .access-page .about-main-img {
        width: 150%;
        transform: translateX(-15%); /* 鬮ｯ・ｷ繝ｻ・ｿ郢晢ｽｻ繝ｻ・ｳ鬮ｯ蜿･・ｹ・｢繝ｻ・ｽ繝ｻ・ｴ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｫ鬮ｮ邇厄ｽｴ蜈ｷ・ｽ・ｻ繝ｻ・｣郢晢ｽｻ闔ｨ竏ｵ繝ｻ郢晢ｽｻ繝ｻ・ｼ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｾ鬩搾ｽｵ繝ｻ・ｺ髯晢ｽｶ陷ｷ・ｮ・つ繝ｻ・ｻ鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ驍ｵ・ｺ陷證ｦ・ｽ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴主・讓滄・髮・ｽｮ螢ｽ・ｰ・｣髣比ｼ夲ｽｽ・｣郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｩ繝ｻ・･鬯ｮ・ｦ繝ｻ・ｪ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢繝ｻ・ｧ驛｢譎｢・ｽ・ｻ*/
    }
}

@media (max-width: 900px) {
    .access-page .about-flex-container {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .access-page .about-left {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .access-page .about-right {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 60px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .access-page .about-text-content.vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        text-align: center;
    }

    .access-page .about-badge-img {
        right: 0;
        width: 100%;
        max-width: 400px;
    }

    .access-page .service-row,
    .access-page .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 48px;
        padding: 28px 20px;
    }

    .access-page .recommended-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .access-page .recommended-special {
        padding: 24px 0;
    }

    .access-page .voice-badge-img {
        width: 150px;
        top: -40px;
    }

    .access-page .about-sp-content-wrapper {
        padding: 0 20px;
        text-align: left;
        margin-top: -20px;
    }

    .access-page .about-sp-title {
        font-family: var(--font-jp);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 900;
        line-height: 1.6;
        color: #fff !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .access-page .about-sp-title .step-1,
    .access-page .about-sp-title .step-2,
    .access-page .about-sp-title .step-3 {
        display: inline-block;
        position: relative;
    }

    .access-page .about-sp-title .step-1 {
        padding-left: 0;
    }

    .access-page .about-sp-title .step-2 {
        padding-left: 1.5em;
    }

    .access-page .about-sp-title .step-3 {
        padding-left: 3em;
    }

    .access-page .about-sp-title .accent-color {
        color: #fff;
    }

    .access-page .service-title-text {
        font-size: 1.3rem;
    }

    .access-page .service-title-text .num {
        font-size: 4.5rem;
        top: -25px;
        left: -10px;
    }

    .access-page .about-sp-desc {
        text-align: left;
        line-height: 2.2;
        font-size: 0.95rem;
        color: #fff !important;
        padding-bottom: 20px;
    }

    .access-page .about-sp-desc p {
        color: #fff !important;
    }

    .access-page .about-new-layout {
        margin-top: -120px;
        z-index: 30;
    }

    .access-page .about-main-img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        transform: none !important;
        box-shadow: none;
    }

    .access-page .hero-sp-text {
        font-family: var(--font-serif);
        font-size: 0.8rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .access-page .sp-hero-logo {
        width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .access-page .hero-main-img {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}

body.access-page,
.access-page body,
.access-page p,
.access-page li,
.access-page dt,
.access-page dd,
.access-page .about-sp-desc,
.access-page .about-text-content.vertical-text,
.access-page .service-desc,
.access-page .item-detail-modern,
.access-page .voice-content,
.access-page .product-description,
.access-page .product-contents {
    font-size: 16px;
}

.access-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.access-page #about::before,
.access-page #about::after {
    display: none;
}

.access-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.access-page .product-heading {
    display: block;
}

.access-page .product-price {
    margin-top: 10px;
}

.access-page .menu-cta,
.access-page .menu-cta span,
.access-page .menu-cta strong {
    color: #fff !important;
}

.access-page #message .recommended-text-area,
.access-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.access-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.access-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.access-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .access-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .access-page .service-row,
    .access-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .access-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .access-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .access-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .access-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .access-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .access-page #message .recommended-text-area,
    .access-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .access-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .access-page footer {
        padding-bottom: 92px;
    }

    .access-page .copyright,
    .access-page .copyright span {
        display: block;
    }

    .access-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.access-page #about {
    background-color: #fff;
    background-image: url('../img/class_bg_001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.access-page #about::before,
.access-page #about::after {
    display: none;
}

.access-page .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
}

.access-page #menu {
    background-color: #fff;
    background-image: url('../img/class_menu_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.access-page .product-card {
    background: rgba(255, 255, 255, 0.94);
}

.access-page .product-heading {
    display: block;
}

.access-page .product-price {
    margin-top: 10px;
}

.access-page .menu-cta,
.access-page .menu-cta span,
.access-page .menu-cta strong {
    color: #fff !important;
}

.access-page #message .recommended-flex-modern {
    align-items: center;
}

.access-page #message .recommended-text-area,
.access-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.access-page #message .category-title-modern {
    max-width: 100%;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.access-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.access-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .access-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .access-page .service-row,
    .access-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .access-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .access-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .access-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .access-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .access-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .access-page #message .recommended-text-area,
    .access-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .access-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.7;
    }

    .access-page footer {
        padding-bottom: 92px;
    }

    .access-page .copyright {
        display: block;
        font-size: 13px;
        line-height: 1.8;
    }

    .access-page .copyright span {
        display: block;
    }
}

.access-page .service-visual {
    position: relative;
    overflow: visible;
}

.access-page .service-main-img {
    width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.access-page .service-number {
    position: absolute;
    top: -30px;
    right: 2%;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #483c38;
    color: #fff;
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 30px;
    line-height: 1;
    z-index: 3;
}

.access-page .service-row.reverse .service-number {
    right: auto;
    left: 2%;
}

.access-page .service-title-text {
    justify-content: center;
}

.access-page .service-title-text .text {
    min-height: 230px;
}

.access-page #message {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fafaf8;
}

.access-page #message>.section-header,
.access-page #message>.recommended-special {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.access-page .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    column-gap: 44px;
    row-gap: 20px;
    align-items: start;
}

.access-page .product-heading {
    grid-column: 1 / -1;
}

.access-page .product-image {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.access-page .product-description {
    grid-column: 2;
    grid-row: 2;
}

.access-page .product-contents {
    grid-column: 2;
    grid-row: 3;
}

.access-page .product-card-split {
    background: #F9F3F1;
    border: 1px solid #CEA6AC !important;
    border-radius: 8px;
}

.access-page .split-card-title {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 34px !important;
    color: #9C5D6A !important;
}

.access-page .split-card-title .title-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.access-page .split-card-title .title-icon path {
    fill: #9C5D6A !important;
}

.access-page .product-card-split .product-price {
    color: #CEA6AC;
}

.access-page .product-card-split .product-image {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 0;
}

.access-page .product-card-split .product-description {
    grid-column: 2;
    grid-row: 2;
}

.access-page .product-card-split .product-contents-left {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.access-page .product-card-split .product-contents-left h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.access-page .product-card-split .product-contents-right {
    grid-column: 2;
    grid-row: 3;
    padding: 24px 28px;
    background: #F9F3F1;
    margin-top: 0;
}

.access-page .product-card-split .product-contents-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #CEA6AC;
    font-size: 18px;
}

.access-page .product-card-split .product-details-list dd {
    background-color: #F9F3F1;
}

/* Boys Hero Class - Blue Theme Override */
.access-page .product-card-blue {
    background: #EDF3F7;
    border: 1px solid #9BB9CB !important;
}

.access-page .product-card-blue .split-card-title {
    color: #41677E !important;
}

.access-page .product-card-blue .split-card-title .title-icon path {
    fill: #41677E !important;
}

.access-page .product-card-blue .product-price {
    color: #9BB9CB;
}

.access-page .product-card-blue .product-contents-left {
    background: #EDF3F7;
}

.access-page .product-card-blue .product-contents-left h4 {
    color: #9BB9CB;
}

.access-page .product-card-blue .product-contents-right {
    background: #EDF3F7;
}

.access-page .product-card-blue .product-contents-right h4 {
    color: #9BB9CB;
}

.access-page .product-card-blue .product-details-list dt {
    background-color: #E3ECF2;
}

.access-page .product-card-blue .product-details-list dd {
    background-color: #EDF3F7;
}

.access-page .order-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.access-page .menu-cta {
    display: flex;
    min-height: 132px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.access-page .menu-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.access-page .menu-cta span {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.access-page .menu-cta strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.access-page .menu-cta-online {
    background: #483c38;
}

.access-page .menu-cta-tel {
    background: #7d3028;
}

.access-page .order-information>p {
    grid-column: 1 / -1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .access-page .service-number {
        top: -22px;
        right: 1%;
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .access-page .service-row.reverse .service-number {
        right: 1%;
        left: auto;
    }

    .access-page .service-title-text .text {
        min-height: 205px;
    }

    .access-page #message>.section-header,
    .access-page #message>.recommended-special {
        padding-left: 20px;
        padding-right: 20px;
    }

    .access-page .product-card {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .access-page .product-list + .section-header {
        margin-top: 80px; /* 鬩搾ｽｵ繝ｻ・ｺ鬩怜遜・ｽ・ｫ驕ｶ髮・｣ｰ・､繝ｻ・ｸ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｪ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｯ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴惹ｸ橸ｽｹ・ｲ繝ｻ荳ｻ・ｸ・ｷ繝ｻ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・､鬩幢ｽ｢隴主・蜃ｽ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴主・讓滄し・ｺ鬩｢謳ｾ・ｽ・ｹ隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｮ鬮｣蛹・ｽｽ・ｳ鬩怜遜・ｽ・ｫ驛｢譎｢・ｽ・ｻ鬮｣蜴・ｽｽ・ｴ髯ｷ・･闕ｳ讓｣・ｰ繝ｻ(SP) */
    }

    .access-page .product-heading {
        grid-column: auto;
    }

    .access-page .product-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .access-page .product-description {
        grid-column: auto;
        grid-row: auto;
    }

    .access-page .product-contents {
        grid-column: auto;
        grid-row: auto;
    }

    .access-page .product-card-split .product-image,
    .access-page .product-card-split .product-description,
    .access-page .product-card-split .product-contents-left,
    .access-page .product-card-split .product-contents-right {
        grid-column: auto;
        grid-row: auto;
    }

    .access-page .product-card-split .product-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .access-page .product-card-split .product-contents-left,
    .access-page .product-card-split .product-contents-right {
        padding: 16px 0;
    }

    .access-page .split-card-title {
        font-size: 28px !important;
    }

    .access-page .split-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .access-page .order-information {
        grid-template-columns: 1fr;
    }

    .access-page .order-information>p {
        grid-column: auto;
    }
}

body.access-page,
.access-page body,
.access-page p,
.access-page li,
.access-page dt,
.access-page dd,
.access-page .about-sp-desc,
.access-page .about-text-content.vertical-text,
.access-page .service-desc,
.access-page .item-detail-modern,
.access-page .voice-content {
    font-size: 16px;
}

.access-page #about {
    border-bottom: 0;
}

.access-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.access-page .service-row,
.access-page .service-row.reverse,
.access-page #kodawari>.service-row:nth-of-type(2),
.access-page #kodawari>.service-row:nth-of-type(3),
.access-page #kodawari>.service-row:nth-of-type(4) {
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    padding: 72px 0;
}

.access-page .service-content {
    flex: 1 1 42%;
}

.access-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.access-page .service-main-img {
    width: 85%;
    margin: 0 auto;
}

.access-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.access-page .service-title-text .num {
    padding-top: 5px;
}

.access-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.access-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.access-page #menu>.product-list,
.access-page #menu>.order-information,
.access-page .class-section-desc {
    width: min(1120px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.access-page .product-list {
    display: grid;
    gap: 56px;
    margin-top: 72px;
}

.access-page .product-card {
    padding: 44px 48px;
    border-top: 1px solid rgba(33, 42, 74, 0.25);
    border-bottom: 1px solid rgba(33, 42, 74, 0.25);
}

.access-page .product-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 30px;
}

.access-page .product-heading h3 {
    color: #483c38;
    font-size: 24px;
    font-weight: 700;
}

.access-page .product-price {
    flex: 0 0 auto;
    color: #483c38;
    font-weight: 700;
}

.access-page .product-description p + p {
    margin-top: 22px;
}

.access-page .product-contents {
    margin-top: 30px;
    padding: 24px 28px;
    background: #f6f7f9;
}

.access-page .product-contents h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.access-page .product-contents-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

.access-page .product-contents-half {
    flex: 1;
    padding: 24px 28px;
    background: #f6f7f9;
}

.access-page .product-contents-half h4 {
    margin-bottom: 10px;
    color: #483c38;
    font-size: 18px;
}

.access-page .product-details-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
    border-left: 1px solid rgba(33, 42, 74, 0.15);
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    margin-top: 12px;
}

.access-page .product-details-list dt,
.access-page .product-details-list dd {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(33, 42, 74, 0.15);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.access-page .product-details-list dt {
    font-weight: bold !important;
    color: #483c38;
    background-color: #F8EDEC;
    border-right: 1px solid rgba(33, 42, 74, 0.15);
    white-space: nowrap;
}

.access-page .product-details-list dd {
    margin: 0;
    color: #4a5568;
    font-weight: normal;
    background-color: #ffffff;
}

.access-page .order-information {
    margin-top: 64px;
    text-align: center;
}

.access-page .online-store-link {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 42px;
    border: 1px solid #483c38;
    color: #483c38;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.access-page .online-store-link:hover {
    background: #483c38;
    color: #fff;
}

.access-page .order-information a:not(.online-store-link) {
    color: #483c38;
    font-size: 20px;
    font-weight: 700;
}

.access-page .access-list .instagram-link + .instagram-link {
    margin-left: 18px;
}

@media (max-width: 900px) {
    .access-page .service-row,
    .access-page .service-row.reverse,
    .access-page #kodawari>.service-row:nth-of-type(2),
    .access-page #kodawari>.service-row:nth-of-type(3),
    .access-page #kodawari>.service-row:nth-of-type(4) {
        gap: 36px;
        margin-bottom: 28px;
        padding: 54px 20px;
    }

    .access-page .service-main-img {
        width: 85%;
    }

    .access-page .service-title-text .text {
        font-size: 36px;
    }

    .access-page .service-title-note {
        font-size: 27px;
    }

    .access-page .product-card {
        padding: 34px 20px;
    }

    .access-page .product-heading {
        display: block;
    }

    .access-page .product-price {
        margin-top: 12px;
    }

    .access-page .product-description br {
        display: none;
    }
}

@media (max-width: 768px) {
    .access-page .about-badge-sp {
        position: absolute;
        display: block !important;
        right: -26vw;
        top: 44%;
        width: 98vw;
        max-width: none;
        opacity: 0.2;
        mix-blend-mode: normal;
        pointer-events: none;
        z-index: 0;
    }
}

.access-page .eyecatch-fixed {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0);
}

.access-page .eyecatch-fixed::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .access-page .eyecatch-fixed {
        height: 350px;
    }
}

.access-page .image-separator {
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.access-page .separator-img {
    width: 100%;
    display: block;
    height: auto;
}

.access-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.access-page #menu>.section-header,
.access-page #menu>.recommended-special,
.access-page #menu>.menu-grid,
.access-page #menu>.menu-btn-area {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.access-page .product-list + .section-header {
    margin-top: 120px; /* 鬩搾ｽｵ繝ｻ・ｺ鬩怜遜・ｽ・ｫ驕ｶ髮・｣ｰ・､繝ｻ・ｸ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｪ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｯ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴惹ｸ橸ｽｹ・ｲ繝ｻ荳ｻ・ｸ・ｷ繝ｻ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・､鬩幢ｽ｢隴主・蜃ｽ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴主・讓滄し・ｺ鬩｢謳ｾ・ｽ・ｹ隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｩ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・ｮ鬮｣蛹・ｽｽ・ｳ鬩怜遜・ｽ・ｫ驛｢譎｢・ｽ・ｻ鬮｣蜴・ｽｽ・ｴ髯ｷ・･闕ｳ讓｣・ｰ繝ｻ(PC) */
}

.access-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.access-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.access-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .access-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .access-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .access-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .access-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .access-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .access-page .menu-item-modern * {
        text-align: left !important;
    }
}

.access-page .recommended-special * {
    color: #000 !important;
}

.access-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.access-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.access-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.access-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.access-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.access-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.access-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.access-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.access-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.access-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.access-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.access-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.access-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .access-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .access-page .section-title {
        font-size: 1rem;
    }

    .access-page .item-name-modern {
        font-size: 1.35rem;
    }

    .access-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.access-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.access-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.access-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.access-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.access-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .access-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .access-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .access-page .gold-vertical-line {
        display: none;
    }

    .access-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .access-page .horizontal-slider-track {
        height: 400px;
    }
}

.access-page .menu-category {
    margin-bottom: 80px;
}

.access-page .menu-item {
    margin-bottom: 30px;
}

.access-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.access-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.access-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.access-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.access-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.access-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.access-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.access-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.access-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.access-page #voice>.section-header,
.access-page #voice>.voice-grid,
.access-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.access-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.access-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.access-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.access-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.access-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.access-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.access-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.access-page #access .container {
    position: relative;
    z-index: 2;
}

.access-page #access .section-label {
    color: var(--accent);
}

.access-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.access-page .access-info {
    width: 100%;
}

.access-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.access-page .access-list dd {
    color: #fff;
}

.access-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.access-page .access-map {
    width: 100%;
}

.access-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.access-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.access-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .access-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .access-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .access-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .access-page .section-title.black {
        font-size: 2rem;
    }
}

.access-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.access-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.access-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.access-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.access-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.access-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.access-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.access-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.access-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.access-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.access-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.access-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .access-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.access-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.access-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.access-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.access-page .side-link-btn.hotpepper {
    background: #333;
}

.access-page #about {
    background-color: var(--accent);
}

.access-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.access-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.access-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.access-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.access-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.access-page,
.access-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.access-page,
.access-page body,
.access-page button,
.access-page input,
.access-page textarea,
.access-page .hero-nav-link,
.access-page .section-label,
.access-page .sub-title,
.access-page .category-title-modern {
    font-family: var(--font-jp);
}

.access-page h1,
.access-page h2,
.access-page h3,
.access-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.access-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.access-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.access-page .hero-nav-link .jp {
    color: #777a73;
}

.access-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.access-page .hero-title,
.access-page .hero-title-small,
.access-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.access-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.access-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.access-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.access-page .title-main::before,
.access-page .title-main::after {
    background: #a8aaa3;
}

.access-page #about,
.access-page #kodawari,
.access-page #menu,
.access-page #voice,
.access-page #access {
    background-color: #fff;
    background-image: none;
}

.access-page #about {
    border-bottom: 1px solid #ecece7;
}

.access-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.access-page .auto-slide-img {
    border-radius: 0;
}

.access-page #kodawari {
    background: #fff;
}

.access-page .service-row,
.access-page #kodawari>.service-row:nth-of-type(2),
.access-page #kodawari>.service-row:nth-of-type(3),
.access-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.access-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.access-page .service-title-text,
.access-page .service-desc {
    font-weight: 400;
}

.access-page .service-title-text .num {
    color: #e7ecff;
}

.access-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.access-page .eyecatch-fixed::before {
    z-index: 0;
}

.access-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.access-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.access-page .service-menu-eyecatch::before,
.access-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.access-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.access-page .recommended-special,
.access-page .recommended-special * {
    color: var(--text-main) !important;
}

.access-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.access-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.access-page #voice {
    background: #fafaf8;
}

.access-page #voice::before {
    opacity: 0.06;
}

.access-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.access-page .voice-title,
.access-page .voice-content,
.access-page .access-list dt,
.access-page .access-list dd {
    font-weight: 400;
}

.access-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.access-page #access .section-label,
.access-page #access .section-title.white,
.access-page #access .sub-title,
.access-page .access-list dt,
.access-page .access-list dd,
.access-page .access-list dd a {
    color: var(--text-main);
}

.access-page .access-list dt {
    border-left-color: #7d3028;
}

.access-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.access-page .btn-accent,
.access-page .read-more-btn,
.access-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .access-page .section-label {
        font-size: 2.4rem;
    }

    .access-page .service-row,
    .access-page #kodawari>.service-row:nth-of-type(2),
    .access-page #kodawari>.service-row:nth-of-type(3),
    .access-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.access-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.access-page .menu-category-full {
    grid-column: 1 / -1;
}

.access-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.access-page .item-head-tight {
    margin-bottom: 0;
}

.access-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.access-page .tabelog-access-link {
    margin-right: 15px;
}

.access-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

.access-page #menu {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/Menubackground1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 72px;
    padding-bottom: 72px;
}

.access-page #menu>.section-header,
.access-page #menu>.recommended-special,
.access-page #menu>.menu-grid,
.access-page #menu>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.access-page .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: flex-start;
}

.access-page .category-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 15px;
    font-family: var(--font-jp);
    font-weight: 900;
}

.access-page .recommended-special {
    background: transparent;
    padding: 24px 0;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
    color: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .access-page .recommended-special {
        background: transparent !important;
        padding: 24px 0;
        height: auto;
    }

    .access-page .recommended-flex-modern {
        padding: 0 20px;
        display: block;
        text-align: left !important;
    }

    .access-page .recommended-text-area {
        width: 100%;
        display: block;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .access-page .recommended-slider-area-modern {
        margin-top: 10px;
        padding-top: 0;
    }

    .access-page .category-title-modern {
        font-size: 1.8rem;
        text-align: left !important;
        margin-bottom: 25px;
    }

    .access-page .menu-item-modern * {
        text-align: left !important;
    }
}

.access-page .recommended-special * {
    color: #000 !important;
}

.access-page .recommended-flex-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.access-page .recommended-text-area {
    flex: 0 0 340px;
    position: relative;
    display: flex;
}

.access-page .gold-vertical-line {
    width: 1px;
    background: var(--accent);
    margin-right: 40px;
    align-self: stretch;
    display: none;
}

.access-page .category-title-modern {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.access-page .item-name-modern {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 6px 14px;
    background: rgba(244, 241, 234, 0.92);
    color: #111 !important;
    line-height: 1.45;
    box-shadow: 6px 6px 0 rgba(197, 46, 46, 0.18);
}

.access-page .item-price-modern {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.access-page .item-detail-modern {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 15px;
}

.access-page .item-desc-modern {
    font-size: 1rem;
    font-weight: 600;
}

.access-page .recommended-slider-area-modern {
    flex: 1;
    min-width: 0;
    padding: 16px 0;
    overflow: hidden;
}

.access-page .carousel-viewport {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.access-page .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.access-page .carousel-track.marquee {
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 5 - 30px * 5));
    }
}

.access-page .carousel-item {
    flex: 0 0 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .access-page .section-label {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .access-page .section-title {
        font-size: 1rem;
    }

    .access-page .item-name-modern {
        font-size: 1.35rem;
    }

    .access-page .carousel-item {
        flex: 0 0 280px;
        height: 360px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 30px * 5));
        }
    }
}

.access-page .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.access-page .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.access-page .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    animation: zoomIn 0.3s forwards;
}

.access-page .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.access-page .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .access-page .recommended-flex-modern {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }

    .access-page .recommended-text-area {
        flex: 1;
        width: 100%;
        max-width: 600px;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .access-page .gold-vertical-line {
        display: none;
    }

    .access-page .recommended-slider-area-modern {
        width: 100.1vw;
        margin-left: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .access-page .horizontal-slider-track {
        height: 400px;
    }
}

.access-page .menu-category {
    margin-bottom: 80px;
}

.access-page .menu-item {
    margin-bottom: 30px;
}

.access-page .menu-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
}

.access-page .item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.access-page .item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.access-page .item-price {
    font-family: var(--font-en);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.access-page .item-detail {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.access-page .item-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.access-page .menu-btn-area {
    text-align: center;
    margin-top: 40px;
}

.access-page #voice {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    background-image: url('../img_class/voicebg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.access-page #voice::before {
    content: "";
    position: absolute;
    right: 4vw;
    top: 40px;
    width: min(560px, 76vw);
    aspect-ratio: 1 / 1;
    background: none;
    opacity: 0.15;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}

.access-page #voice>.section-header,
.access-page #voice>.voice-grid,
.access-page #voice>.menu-btn-area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.access-page .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.access-page .voice-card {
    background: #fff;
    padding: 42px 42px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.access-page .voice-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.access-page .voice-name {
    font-weight: 900;
    color: var(--text-main);
}

.access-page .stars {
    color: var(--accent);
    font-size: 1rem;
}

.access-page .voice-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}

.access-page #access {
    background-color: #222;
    background-image: url('../img_class/Accessbackground.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.access-page #access .container {
    position: relative;
    z-index: 2;
}

.access-page #access .section-label {
    color: var(--accent);
}

.access-page .access-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.access-page .access-info {
    width: 100%;
}

.access-page .access-list dt {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.access-page .access-list dd {
    color: #fff;
}

.access-page .access-list dd a {
    color: #fff;
    text-decoration: none;
}

.access-page .access-map {
    width: 100%;
}

.access-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.access-page .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.access-page .back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

@media (max-width: 900px) {
    .access-page .access-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .access-page .eyecatch-fixed {
        height: 350px;
        background-attachment: scroll;
    }

    .access-page .menu-grid {
        grid-template-columns: 1fr;
    }

    .access-page .section-title.black {
        font-size: 2rem;
    }
}

.access-page footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.access-page .copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

.access-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s var(--transition);
}

.access-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.access-page .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 20px;
}

.access-page .btn-accent {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--text-main);
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    transition: all 0.4s;
    margin-top: 30px;
    border-radius: 4px;
}

.access-page .btn-accent:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.access-page .voice-more-content {
    display: none;
    margin-top: 10px;
}

.access-page .voice-more-content.open {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.access-page .read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-top: 15px;
    text-decoration: underline;
    display: inline-block;
    padding: 0;
}

.access-page .read-more-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.access-page .sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .access-page .sp-fixed-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 65px;
        z-index: 100000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
}

.access-page .footer-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-serif);
}

.access-page .footer-btn.tel {
    background: #fff;
    color: #000;
}

.access-page .footer-btn.hotpepper {
    background: #e5851d;
    color: #fff;
}

.access-page .side-link-btn.hotpepper {
    background: #333;
}

.access-page #about {
    background-color: var(--accent);
}

.access-page .service-menu-eyecatch {
    background-image: url('../img_class/service_menu.jpg');
}

.access-page .menu-voice-eyecatch {
    background-image: url('../img_class/menu_voice.jpg');
}

.access-page .rice-note {
    color: #d4af37 !important;
    font-weight: bold;
}

.access-page .recommended-second {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.access-page {
    --primary-bg: #ffffff;
    --secondary-bg: #f7f7f4;
    --text-main: #252722;
    --text-sub: #62655f;
    --accent: #7d3028;
    --accent-blue: #4f5c50;
    --font-jp: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-serif: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.access-page,
.access-page body {
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 400;
    letter-spacing: 0.06em;
}

body.access-page,
.access-page body,
.access-page button,
.access-page input,
.access-page textarea,
.access-page .hero-nav-link,
.access-page .section-label,
.access-page .sub-title,
.access-page .category-title-modern {
    font-family: var(--font-jp);
}

.access-page h1,
.access-page h2,
.access-page h3,
.access-page .serif {
    font-family: var(--font-jp);
    font-weight: 600;
}

.access-page .hero-nav-overlay {
    border-right: 1px solid #e8e8e2;
    box-shadow: none;
}

.access-page .hero-nav-link .en {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
}

.access-page .hero-nav-link .jp {
    color: #777a73;
}

.access-page .hero::before {
    background: rgba(20, 23, 19, 0.38);
}

.access-page .hero-title,
.access-page .hero-title-small,
.access-page .hero-title-main {
    font-weight: 500;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.access-page .section-label {
    color: #4f5c50;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.access-page .section-title {
    color: var(--text-main);
    font-weight: 500;
}

.access-page .sub-title {
    color: #7d3028;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: none;
}

.access-page .title-main::before,
.access-page .title-main::after {
    background: #a8aaa3;
}

.access-page #about,
.access-page #kodawari,
.access-page #menu,
.access-page #voice,
.access-page #access {
    background-color: #fff;
    background-image: none;
}

.access-page #about {
    border-bottom: 1px solid #ecece7;
}

.access-page .auto-slider-section {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.access-page .auto-slide-img {
    border-radius: 0;
}

.access-page #kodawari {
    background: #fff;
}

.access-page .service-row,
.access-page #kodawari>.service-row:nth-of-type(2),
.access-page #kodawari>.service-row:nth-of-type(3),
.access-page #kodawari>.service-row:nth-of-type(4) {
    background: #fff;
    border: 1px solid #e5e6e0;
    border-radius: 0;
}

.access-page .service-main-img {
    box-shadow: 14px 14px 0 #f0f0eb;
}

.access-page .service-title-text,
.access-page .service-desc {
    font-weight: 400;
}

.access-page .service-title-text .num {
    color: #e7ecff;
}

.access-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.access-page .eyecatch-fixed::before {
    z-index: 0;
}

.access-page .service-menu-eyecatch {
    --eyecatch-image: url('../img_class/service_menu.jpg');
}

.access-page .menu-voice-eyecatch {
    --eyecatch-image: url('../img_class/menu_voice.jpg');
}

.access-page .service-menu-eyecatch::before,
.access-page .menu-voice-eyecatch::before {
    background-image: var(--eyecatch-image);
}

.access-page #menu {
    background: #fff;
    border-bottom: 1px solid #ecece7;
}

.access-page .recommended-special,
.access-page .recommended-special * {
    color: var(--text-main) !important;
}

.access-page .category-title-modern {
    font-weight: 500;
    letter-spacing: 0.08em;
}

.access-page .item-detail-modern {
    color: var(--text-sub) !important;
}

.access-page #voice {
    background: #fafaf8;
}

.access-page #voice::before {
    opacity: 0.06;
}

.access-page .voice-card {
    border: 1px solid #e4e5df;
    box-shadow: none;
}

.access-page .voice-title,
.access-page .voice-content,
.access-page .access-list dt,
.access-page .access-list dd {
    font-weight: 400;
}

.access-page #access {
    color: var(--text-main);
    border-top: 1px solid #e5e6e0;
}

.access-page #access .section-label,
.access-page #access .section-title.white,
.access-page #access .sub-title,
.access-page .access-list dt,
.access-page .access-list dd,
.access-page .access-list dd a {
    color: var(--text-main);
}

.access-page .access-list dt {
    border-left-color: #7d3028;
}

.access-page .access-map-iframe {
    filter: grayscale(0.25) saturate(0.75);
}

.access-page .btn-accent,
.access-page .read-more-btn,
.access-page .back-to-top {
    border-radius: 0;
}

@media (max-width: 768px) {
    .access-page .section-label {
        font-size: 2.4rem;
    }

    .access-page .service-row,
    .access-page #kodawari>.service-row:nth-of-type(2),
    .access-page #kodawari>.service-row:nth-of-type(3),
    .access-page #kodawari>.service-row:nth-of-type(4) {
        padding: 28px 20px;
    }
}

.access-page .drink-list-note {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
}

.access-page .menu-category-full {
    grid-column: 1 / -1;
}

.access-page .modern-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 60px;
}

.access-page .item-head-tight {
    margin-bottom: 0;
}

.access-page .voice-title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.access-page .tabelog-access-link {
    margin-right: 15px;
}

.access-page .access-map-iframe {
    display: block;
    min-height: 350px;
    visibility: visible;
    border: 0;
}

@media (max-width: 768px) {
    .access-page .menu-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .access-page .menu-category {
        margin-bottom: 40px;
    }

    .access-page .category-title {
        margin-bottom: 20px;
    }

    .access-page .image-separator {
        margin-top: 5px !important;
    }

    .access-page .back-to-top {
        bottom: 100px;
    }

    .access-page {
        margin-bottom: 60px;
    }
}

.access-page .about-badge-img,
.access-page .voice-badge-img {
    max-width: 100vw;
    right: -20px !important;
    overflow: hidden;
}

.access-page #access {
    overflow: hidden;
}

.access-page #voice .menu-btn-area {
    margin-top: 40px;
}

body.access-page,
.access-page body,
.access-page button,
.access-page input,
.access-page textarea,
.access-page .hero-nav-link,
.access-page .section-label,
.access-page .sub-title,
.access-page .category-title-modern,
.access-page .voice-title,
.access-page .voice-content {
    font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

body.access-page,
.access-page body,
.access-page .service-title-text,
.access-page .service-desc,
.access-page .voice-title,
.access-page .voice-content,
.access-page .access-list dt,
.access-page .access-list dd {
    font-weight: 400;
}

.access-page #about,
.access-page #kodawari,
.access-page #menu,
.access-page #access {
    background-color: #fff;
    background-image: none;
}

.access-page #voice {
    background-color: #fafaf8;
    background-image: none;
}

.access-page .eyecatch-fixed {
    isolation: isolate;
    background-image: none !important;
}

.access-page .service-menu-eyecatch::before {
    background-image: url('../img_class/service_menu.jpg');
}

.access-page .menu-voice-eyecatch::before {
    background-image: url('../img_class/menu_voice.jpg');
}

.access-page {
    --text-main: #483c38;
    --text-sub: #483c38;
}

body.access-page,
.access-page body,
.access-page .section-title,
.access-page .section-title.white,
.access-page .service-desc,
.access-page .voice-title,
.access-page .voice-content,
.access-page .access-list dt,
.access-page .access-list dd,
.access-page .access-list dd a {
    color: #483c38;
}

.access-page .section-label {
    color: #483c38;
    font-size: 32px;
}

.access-page .about-text-content.vertical-text,
.access-page .about-title-text,
.access-page .about-sp-title,
.access-page .about-sp-title .accent-color,
.access-page .about-sp-desc,
.access-page .about-sp-desc p {
    color: #483c38 !important;
}

.access-page .auto-slider-section {
    background: #fff;
    border: 0;
}

.access-page .service-row,
.access-page #kodawari>.service-row:nth-of-type(2),
.access-page #kodawari>.service-row:nth-of-type(3),
.access-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.access-page .service-title-text {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-left: 0;
    width: 100%;
}

.access-page .service-title-text .num {
    position: static;
    flex: 0 0 auto;
    color: #483c38;
    font-size: 2rem;
    line-height: 1;
    z-index: auto;
}

.access-page .service-title-text .text {
    display: block;
}

.access-page .service-main-img {
    box-shadow: none;
}

@media (max-width: 900px) {
    .access-page .service-row,
    .access-page .service-row.reverse,
    .access-page #kodawari>.service-row:nth-of-type(2),
    .access-page #kodawari>.service-row:nth-of-type(3),
    .access-page #kodawari>.service-row:nth-of-type(4) {
        padding: 0;
    }

    .access-page .service-title-text .num {
        position: static;
        font-size: 1.75rem;
    }
}

.access-page #about {
    border-bottom: 0;
}

.access-page .auto-slider-section {
    border: 0;
    box-shadow: none;
}

.access-page .service-row,
.access-page .service-row.reverse,
.access-page #kodawari>.service-row:nth-of-type(2),
.access-page #kodawari>.service-row:nth-of-type(3),
.access-page #kodawari>.service-row:nth-of-type(4) {
    background: transparent;
    border: 0;
    padding: 72px 0;
    margin-bottom: 40px;
    align-items: center;
    gap: 48px;
}

.access-page .service-content {
    flex: 1 1 42%;
}

.access-page .service-visual {
    flex: 1 1 58%;
    display: flex;
    justify-content: center;
}

.access-page .service-main-img {
    width: 85%;
    margin: 0 auto;
    box-shadow: none;
}

.access-page .service-title-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    padding-left: 0;
}

.access-page .service-title-text .num {
    position: static;
    padding-top: 5px;
    color: #483c38;
}

.access-page .service-title-text .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
}

.access-page .service-title-note {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .access-page .service-row,
    .access-page .service-row.reverse,
    .access-page #kodawari>.service-row:nth-of-type(2),
    .access-page #kodawari>.service-row:nth-of-type(3),
    .access-page #kodawari>.service-row:nth-of-type(4) {
        padding: 54px 20px;
    }
}

body.access-page,
.access-page body,
.access-page p,
.access-page li,
.access-page dt,
.access-page dd,
.access-page .about-sp-desc,
.access-page .about-text-content.vertical-text,
.access-page .service-desc,
.access-page .item-detail-modern,
.access-page .voice-content,
.access-page .product-description,
.access-page .product-contents {
    font-size: 16px;
}

.access-page #about {
    background: #fff url('../img/class_bg_001.jpg') right bottom / cover no-repeat;
}

.access-page .hero {
    background: #111;
}

.access-page .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.access-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: elegantHeroFade 18s ease-in-out infinite;
}

.access-page .hero-slide-1 {
    animation-delay: 0s;
}

.access-page .hero-slide-2 {
    animation-delay: 6s;
}

.access-page .hero-slide-3 {
    animation-delay: 12s;
}

@keyframes elegantHeroFade {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    8%, 30% {
        opacity: 1;
    }
    38%, 100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.access-page .hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: elegantHeroText 1.8s ease-out forwards 0.5s;
}

@keyframes elegantHeroText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.access-page #voice::before {
    display: none;
    background-image: none;
}

.access-page .product-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.access-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
}

.access-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.access-page #message .recommended-text-area {
    padding-right: 48px;
}

.access-page #message .recommended-slider-area-modern,
.access-page #message .carousel-viewport {
    padding-right: 0;
    overflow: hidden;
}

.access-page .sp-nav {
    background: rgb(72 73 112 / 100%);
}

.access-page .sp-nav-link span {
    display: none;
}

.access-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.access-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .access-page .hero-slide {
        object-position: center;
    }

    .access-page .product-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .access-page #message .recommended-special,
    .access-page #message .recommended-flex-modern,
    .access-page #message .recommended-text-area,
    .access-page #message .recommended-slider-area-modern,
    .access-page #message .carousel-viewport {
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .access-page #message .recommended-flex-modern {
        padding: 0;
    }

    .access-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .access-page #message .recommended-slider-area-modern,
    .access-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .access-page #message .carousel-item {
        flex-basis: 86vw;
        height: min(110vw, 520px);
    }
}

.access-page #about::before,
.access-page #about::after {
    display: none;
}

.access-page #menu {
    background: #fff url('../img/class_menu_bg.jpg') center / cover no-repeat fixed;
}

.access-page .product-heading {
    display: block;
}

.access-page .product-price {
    margin-top: 10px;
}

.access-page .menu-cta,
.access-page .menu-cta span,
.access-page .menu-cta strong {
    color: #fff !important;
}

.access-page #message .recommended-text-area,
.access-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.access-page #message .category-title-modern {
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.access-page footer {
    padding: 28px 0;
    background: #fff;
    color: #483c38;
    border-top: 1px solid rgba(33, 42, 74, 0.15);
}

.access-page .copyright {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin: 0;
    color: #483c38;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .access-page #about {
        background-image: url('../img/class_bg_001.jpg');
        background-position: center bottom;
    }

    .access-page .service-row,
    .access-page .service-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .access-page .service-visual {
        order: -1;
        width: 100%;
        flex-basis: auto;
    }

    .access-page .service-main-img {
        width: 100%;
        max-width: none;
    }

    .access-page .service-content {
        order: 1;
        width: 100%;
        flex-basis: auto;
    }

    .access-page #menu {
        background-position: right center;
        background-attachment: scroll;
    }

    .access-page #message .recommended-flex-modern {
        display: flex;
        flex-direction: column;
    }

    .access-page #message .recommended-text-area,
    .access-page #message .recommended-slider-area-modern {
        flex-basis: auto;
        width: 100%;
    }

    .access-page #message .category-title-modern {
        font-size: clamp(22px, 6.4vw, 30px);
    }

    .access-page footer {
        padding-bottom: 92px;
    }

    .access-page .copyright,
    .access-page .copyright span {
        display: block;
    }

    .access-page .copyright {
        font-size: 13px;
        line-height: 1.8;
    }
}

.access-page #message .recommended-special {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.access-page #message .recommended-flex-modern {
    width: 100%;
    max-width: none;
    padding-left: max(4vw, calc((100vw - 1200px) / 2));
    padding-right: 0;
    gap: 0;
}

.access-page #message .recommended-text-area,
.access-page #message .recommended-slider-area-modern {
    flex: 1 1 50%;
    width: 50%;
}

.access-page #message .recommended-text-area {
    padding-right: 48px;
}

.access-page .footer-btn.tel {
    background: #7d3028;
    color: #fff !important;
}

.access-page .footer-btn.hotpepper {
    background: #483c38;
    color: #fff !important;
}

@media (max-width: 900px) {
    .access-page #message .recommended-special {
        margin-left: calc(50% - 50vw);
    }

    .access-page #message .recommended-flex-modern {
        width: 100vw;
        padding: 0;
    }

    .access-page #message .recommended-text-area,
    .access-page #message .recommended-slider-area-modern,
    .access-page #message .carousel-viewport {
        flex-basis: auto;
        width: 100vw;
        max-width: none;
    }

    .access-page #message .recommended-text-area {
        padding: 0 20px;
    }
}

.access-page .service-menu-eyecatch {
    background: url('../img_class/service_menu.jpg') center / cover no-repeat fixed;
}

.access-page .menu-voice-eyecatch {
    background: url('../img_class/menu_voice.jpg') center / cover no-repeat fixed;
}

.access-page .eyecatch-fixed::before,
.access-page #menu::before {
    display: none;
}

@media (max-width: 900px) {
    .access-page #message .recommended-special {
        margin-left: 0 !important;
    }

    .access-page #message .recommended-flex-modern,
    .access-page #message .recommended-text-area,
    .access-page #message .recommended-slider-area-modern,
    .access-page #message .carousel-viewport {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .access-page .eyecatch-fixed,
    .access-page #menu {
        position: relative;
        background: none !important;
        isolation: isolate;
        overflow: hidden;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .access-page .eyecatch-fixed::before,
    .access-page #menu::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .access-page .service-menu-eyecatch::before {
        background-image: url('../img_class/service_menu.jpg');
        background-position: center;
    }

    .access-page .menu-voice-eyecatch::before {
        background-image: url('../img_class/menu_voice.jpg');
        background-position: center;
    }

    .access-page #menu::before {
        background-image: url('../img/class_menu_bg.jpg');
        background-position: right center;
    }

    .access-page .eyecatch-fixed > *,
    .access-page #menu > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .access-page #message {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .access-page #message > .section-header {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    }

    .access-page #message .recommended-text-area,
    .access-page #message .recommended-slider-area-modern,
    .access-page #message .carousel-viewport {
        display: block;
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .access-page #message .recommended-text-area {
        padding: 0 20px;
    }

    .access-page #message .recommended-slider-area-modern,
    .access-page #message .carousel-viewport {
        padding-left: 0;
        padding-right: 0;
    }

    .access-page #message .carousel-item {
        flex: 0 0 62vw;
        width: 62vw;
        height: 74vw;
        max-height: 420px;
    }

    .access-page #message .carousel-track.marquee {
        animation-name: messageMarqueeSp;
    }
}

@keyframes messageMarqueeSp {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((-62vw - 30px) * 5));
    }
}







/* ==========================================================================
   Gallery Page Custom Layouts
   ========================================================================== */
.gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-page .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    background: #fff;
    cursor: pointer;
}

.gallery-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-page .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-page .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-page .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-page .gallery-overlay span {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: var(--ff-jp-serif), "Zen Old Mincho", serif;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .gallery-page .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
}


/* ==========================================================================
   Contact Page Custom Layouts
   ========================================================================== */
.contact-page .form-container {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.contact-page .form-group {
    margin-bottom: 25px;
}

.contact-page .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333333;
    font-size: 0.95rem;
}

.contact-page .form-label .required {
    background: var(--clr-accent, #c52e2e);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
}

.contact-page .form-label .optional {
    background: #999;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
}

.contact-page .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fafafa;
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-page .form-input:focus {
    border-color: var(--clr-accent, #c52e2e);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(197, 46, 46, 0.1);
    outline: none;
}

.contact-page .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 8px 10px;
    padding-right: 30px;
}

.contact-page .form-textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
    min-height: 120px;
    height: 120px;
}

.contact-page .form-privacy {
    text-align: center;
    margin: 30px 0;
}

.contact-page .privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555555;
}

.contact-page .privacy-link {
    color: var(--clr-accent, #c52e2e);
    text-decoration: underline;
}

.contact-page .form-submit {
    text-align: center;
}

.contact-page .submit-btn {
    background-color: var(--clr-accent, #c52e2e);
    color: #ffffff;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(197, 46, 46, 0.2);
}

.contact-page .submit-btn:hover {
    background-color: #a82323;
    box-shadow: 0 6px 15px rgba(197, 46, 46, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-page .form-container {
        padding: 25px 20px;
        margin-top: 30px;
    }
    .contact-page .submit-btn {
        width: 100%;
        padding: 15px;
    }
}


/* ==========================================================================
   Access Page Custom Layouts
   ========================================================================== */
.access-page .access-contact-link {
    color: var(--clr-accent, #c52e2e);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.access-page .access-contact-link:hover {
    color: #a82323;
}

.access-page .access-contact-link:hover i {
    transform: translateX(4px);
}

.access-page .access-contact-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}


/* ==========================================================================
   FAQ Page Custom Layouts (Padding Adjustments for Height)
   ========================================================================== */
.faq-page .faq__q {
    padding: 28px 24px;
}

.faq-page .faq__a {
    padding: 0 24px 28px;
}

.faq-page .faq__a-inner {
    padding-top: 28px;
}

/* ==========================================================================
   Contact Page Alternative Contact Cards
   ========================================================================== */
.contact-options {
    max-width: 1100px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.contact-option-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-color: var(--clr-accent, #D4A5A5);
}

.contact-option-card .icon-area {
    font-size: 28px;
    color: var(--clr-accent, #D4A5A5);
    margin-bottom: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.contact-option-card .icon-area img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.contact-option-card h3 {
    font-size: 16px !important;
    font-weight: bold;
    color: var(--clr-dark, #333);
    margin-bottom: 8px;
    font-family: var(--ff-jp-serif);
}

.contact-option-card p {
    font-size: 13px !important;
    color: var(--clr-text, #787878);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.contact-option-card .contact-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-option-card .btn-phone {
    background: var(--clr-accent, #D4A5A5);
    color: #fff;
    border: 1px solid var(--clr-accent, #D4A5A5);
}

.contact-option-card .btn-phone:hover {
    background: #fff;
    color: var(--clr-accent, #D4A5A5);
}

.contact-option-card .btn-line {
    background: #cccccc;
    color: #fff;
    border: 1px solid #cccccc;
    cursor: not-allowed;
}

.contact-option-card .btn-instagram {
    background: #e1306c;
    color: #fff;
    border: 1px solid #e1306c;
}

.contact-option-card .btn-instagram:hover {
    background: #fff;
    color: #e1306c;
}

.contact-option-card .btn-form {
    background: var(--clr-dark, #333);
    color: #fff;
    border: 1px solid var(--clr-dark, #333);
}

.contact-option-card .btn-form:hover {
    background: #fff;
    color: var(--clr-dark, #333);
}

@media (max-width: 991px) {
    .contact-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.flow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.88);
    z-index: 0;
}

@media (max-width: 768px) {
    .flow-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
}


.df{
        font-family: 'Zen Old Mincho', serif !important; 
}

.df2{
        border-bottom: 1px solid #1e3a8a;
        color: #1e3a8a;
}



