/* ==========================================================================
   焼肉ホルモン福たろふ - LP Stylesheet
   温故知新 - 高級感と本物志向のデザイン
   ========================================================================== */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul,
ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Disable Right Click */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.section__title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    text-align: center;
    color: #2c1810;
    /* Use dark brand color */
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.2;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c8a882;
    /* Use brand gold color */
    border-radius: 2px;
}

.section__title-main {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.section__title-sub {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: #8b6f4d;
    font-weight: 400;
    text-transform: uppercase;
}

/* ==========================================================================
   3. Layout Containers
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.section {
    padding: 80px 0;
    position: relative;
    background-color: #fafafa;
}

@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }
}

.section__heading {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

.section__title-sub {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: #c8a882;
    text-transform: uppercase;
    font-weight: 600;
}

.section__title-main {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #2c1810;
    position: relative;
    padding-bottom: 25px;
}

.section__title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #c8a882;
}

.section__heading img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   4. Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
    opacity: 1;
    /* Override default hover opacity */
}

.logo__label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: #c8a882;
    /* Accent gold */
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Josefin Sans', sans-serif;
}

.logo__name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    position: relative;
}

.logo__dot {
    color: #c8a882;
    margin-left: -0.1em;
}

/* 現代的な落款（ハンコ）エフェクトの代わりとしてのアクセント */
.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c8a882;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.header__nav-list {
    display: flex;
    gap: 40px;
}

.header__nav-list a {
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.header__cta .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   5. Mobile Menu
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
}

.mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu__nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   6. First View (FV) - Split Layout Logic
   ========================================================================== */

/* Vertical Writing for Nav */
.writing-vertical-rl {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

/* -------------------------------------------------------------
   Layout Phases (PC Only)
------------------------------------------------------------- */
@media (min-width: 1024px) {

    /* PHASE 1: FV ~ About (Split Layout) */
    .layout-phase-1 {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: relative;
    }

    /* Left Sticky Area (Now Scrollable Document Flow) */
    .sticky-sidebar {
        width: 35%;
        min-height: 100vh;
        height: auto;
        position: relative;
        z-index: 50;
        background-color: #FAFAF8;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.5rem;
        /* Tightened from 4rem 2rem */
        border-right: 1px solid rgba(0, 0, 0, 0.03);
    }

    /* Right Scroll Area (Now Sticky FV) */
    .scroll-content-area {
        width: 65%;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    opacity: 0;
}

.fade-in-valid {
    animation: fadeInUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Ken Burns Effect for FV */
@keyframes kenburns {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.1);
    }
}

.animate-kenburns {
    animation: kenburns 10s ease-out infinite alternate;
}

/* Swiper Fade Effect Override */
.swiper-slide {
    transition: opacity 1s ease-in-out;
}

/* FV Height Fix for mobile browsers */
#fv {
    aspect-ratio: 1 / 1;
    height: auto;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

@media (min-width: 1024px) {
    #fv {
        aspect-ratio: auto;
        height: 100vh;
    }
}

/* ==========================================================================
   7. Previous Sections Reset & Adjustments
   ========================================================================== */
.section {
    position: relative;
    z-index: 10;
    background-color: #fafafa;
}

.sv {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
}

.sv__banner {
    display: block;
    max-height: 300px;
    overflow: hidden;
}

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

/* ==========================================================================
   8. CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, #3d2a1f 0%, #2c1810 100%);
    padding: 30px 0;
}

.cta-section__buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   9. Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.08em;
}

.btn--primary {
    background: linear-gradient(135deg, #c8a882 0%, #a88860 100%);
    color: #fff;
    border: 2px solid transparent;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #a88860 0%, #8b6f4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
}

.btn--cta {
    position: relative;
    min-width: 200px;
    padding: 20px 40px;
    font-size: 1.1rem;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* スイープエフェクト本体（3D波の演出） */
.btn--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

/* ホバー時の挙動 */
.btn--cta:hover::before {
    left: 150%;
}

.btn--cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
}

.btn--phone {
    background: linear-gradient(135deg, #d4a574 0%, #b8885a 100%);
    color: #fff;
}

.btn--phone:hover {
    background: linear-gradient(135deg, #b8885a 0%, #9a6f45 100%);
}

.btn--web {
    background: linear-gradient(135deg, #8b6f4d 0%, #6b5337 100%);
    color: #fff;
}

.btn--web:hover {
    background: linear-gradient(135deg, #6b5337 0%, #4d3a24 100%);
}

.btn__icon {
    font-size: 1.3rem;
    margin-right: 8px;
}

.btn__text small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ==========================================================================
   10. Third View (TV) - こんな方におすすめ
   ========================================================================== */
.tv__content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    /* Reduced from 80px */
    align-items: center;
}

.tv__image {
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(200, 168, 130, 0.1);
}

.tv__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv__image:hover img {
    transform: scale(1.05);
}

.tv__catch {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 40px;
    color: #2c1810;
    line-height: 1.5;
    font-weight: 700;
}

.tv__list {
    list-style: none;
    margin-bottom: 20px;
    /* Reduced from 40px */
    border-left: 1px solid #c8a882;
    padding-left: 30px;
}

.tv__list li {
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.tv__list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #c8a882;
    font-weight: 700;
    font-size: 1.2rem;
}

.tv__message {
    font-weight: 500;
    color: #8b6f4d;
    font-size: 1.05rem;
    margin-top: 30px;
}

/* ==========================================================================
   11. About Section
   ========================================================================== */
.about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about__content {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }
}

.about__image {
    width: 100%;
    margin-bottom: -30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about__image {
        width: 60%;
        margin-bottom: 0;
    }
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about__text-wrapper {
    background: #fff;
    padding: 40px 20px;
    width: 90%;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #c8a882;
}

@media (max-width: 480px) {
    .section__heading {
        max-width: 101%;
    }
}

@media (min-width: 768px) {
    .about__text-wrapper {
        width: 45%;
        margin-right: -5%;
        padding: 60px 40px;
        border-top: none;
        border-left: 4px solid #c8a882;
    }
}

.about__catch {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    color: #2c1810;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 700;
}

.about__text {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 2;
    color: #4a3b32;
    text-align: justify;
}

/* ==========================================================================
   12. Service Section
   ========================================================================== */
.service__item {
    display: grid;
    gap: 20px;
    /* Reduced from 30px */
    align-items: center;
    margin-bottom: 20px;
    /* Reduced from 30px */
}

.service__item--left {
    grid-template-columns: 1fr 1fr;
}

.service__item--right {
    grid-template-columns: 1fr 1fr;
}

.service__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service__image:hover img {
    transform: scale(1.1);
}

.service__point {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #c8a882;
    margin-bottom: 20px;
    display: block;
}

.service__subtitle {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 30px;
    color: #2c1810;
    line-height: 1.6;
}

.service__description {
    font-size: 1rem;
    line-height: 2;
}

/* ==========================================================================
   13. Recommend Menu Section
   ========================================================================== */
.menu-recommend {
    background-color: #f8f6f3;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 30px 0;
    /* Further reduced from 60px */
}

.menu-recommend__table {
    max-width: 900px;
    margin: 15px auto 0;
    /* Reduced margin-top from 30px */
    background: #fff;
    padding: 30px 40px;
    /* Reduced from 40px 50px */
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}

.menu-recommend__item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.menu-recommend__item--featured {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #2c1810;
    padding: 30px 0;
    border-bottom: 2px solid #c8a882;
}

.menu-recommend__name {
    flex: 1;
}

.menu-recommend__price {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: #8b6f4d;
}

.menu-recommend__details {
    padding: 30px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 20px;
}

.menu-recommend__details p {
    margin-bottom: 10px;
}

/* ==========================================================================
   14. Menu Price - Parallax
   ========================================================================== */
.menu-price--parallax {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    /* Reduced from 60px */
}

.menu-price__parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c1810;
    z-index: -1;
}

.menu-price--parallax::before {
    display: none;
    /* Overlay no longer needed for solid background */
}

.menu-price--parallax .container {
    position: relative;
    z-index: 1;
}

.menu-price--parallax .section__title,
.menu-price--parallax .section__title-main {
    color: #fff;
}

.menu-price__content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    /* Reduced from 80px */
    align-items: center;
    /* Vertically middle */
}

.menu-price__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}

.menu-price__list {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
}

.menu-price--parallax .menu-price__list {
    background: rgba(255, 255, 255, 0.95);
}

.menu-price__category {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c8a882;
    color: #2c1810;
}

.menu-price__items {
    margin-bottom: 40px;
}

.menu-price__items:last-child {
    margin-bottom: 0;
}

.menu-price__items li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dotted #ddd;
}

.menu-price__item-name {
    flex: 1;
}

.menu-price__item-price {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: #8b6f4d;
    margin-left: 20px;
}

/* Menu Price 2 (Two Column) */
.menu-price__content--two-col {
    grid-template-columns: 40% 60%;
    align-items: center;
    /* Vertically middle */
}

.menu-price__list--center {
    text-align: left;
}

.gallery.section {
    padding: 60px 0;
    overflow: hidden;
    /* Prevent horizontal scroll from marquee */
}

.gallery__marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.gallery .section__heading {
    margin-bottom: 40px;
    /* Reduced gap between title and images */
}

.gallery-swiper {
    padding: 0;
    /* Removed internal padding for tight fit */
    width: 100%;
}

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

.gallery__item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    /* Cinematic edge-to-edge feel */
    width: 450px;
    aspect-ratio: 16 / 9;
    /* Widescreen format */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery__item::after {
    content: 'VIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    opacity: 0;
    z-index: 5;
    transition: all 0.4s ease;
}

.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery__item:hover::before,
.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery__item {
        width: 250px;
        /* Thinner slides for mobile loop */
        aspect-ratio: 1 / 1;
    }
}

/* ==========================================================================
   16. Lightbox
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    color: #fff;
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.lightbox__close {
    top: 30px;
    right: 30px;
}

.lightbox__prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   17. Access Section
   ========================================================================== */
.access__content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 30px;
    /* Reduced from 60px */
    align-items: flex-start;
}

.access__name {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 30px;
    color: #2c1810;
}

.access__details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px 30px;
    margin-bottom: 40px;
}

.access__details dt {
    font-weight: 700;
    color: #8b6f4d;
}

.access__details dd {
    line-height: 1.8;
}

.access__details dd a {
    color: #c8a882;
    text-decoration: underline;
}

.access__sns {
    display: flex;
    gap: 15px;
}

.access__sns-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #c8a882 0%, #a88860 100%);
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.access__sns-btn:hover {
    background: linear-gradient(135deg, #a88860 0%, #8b6f4d 100%);
    transform: translateY(-2px);
}

.access__map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* ==========================================================================
   18. Footer
   ========================================================================== */
.footer {
    background: #1a0f0a;
    color: #fff;
    padding: 30px 0 20px;
}

.footer__nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer__nav a {
    font-family: 'Josefin Sans', sans-serif;
    color: #c8a882;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.footer__copy {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 30px;
}

/* ==========================================================================
   19. Fixed CTA (SP only)
   ========================================================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
}

.fixed-cta__btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.fixed-cta__btn--phone {
    background: linear-gradient(135deg, #d4a574 0%, #b8885a 100%);
}

.fixed-cta__btn--web {
    background: linear-gradient(135deg, #8b6f4d 0%, #6b5337 100%);
}

/* ==========================================================================
   20. Scroll to Top Button
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(200, 168, 130, 0.9);
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: rgba(168, 136, 96, 1);
    transform: translateY(-5px);
}

/* ==========================================================================
   21. Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .section {
        padding: 40px 0;
    }

    .section__heading {
        margin-bottom: 30px;
    }

    .section__title {
        padding: 10px 40px;
    }

    .tv__content,
    .service__item,
    .menu-price__content,
    .access__content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
        /* Reset grid alignment for mobile */
    }

    .tv__image img,
    .service__image img {
        height: auto;
        /* Reset stretched height */
        aspect-ratio: 16 / 9;
        /* Professional ratio for mobile */
    }

    .service__item--right {
        direction: ltr;
    }

    .service__item--right .service__image {
        order: 1;
    }

    .service__item--right .service__text {
        order: 2;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section__heading {
        max-width: 100%;
        margin-bottom: 40px;
        padding: 0 5px;
    }

    .section__title {
        padding: 8px 0px;
    }

    .section__title-main {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        white-space: nowrap;
        letter-spacing: 0.05em;
    }

    .section__title-sub {
        font-size: 0.7rem;
    }

    .section__title::after {
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }

    .tv__catch {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        white-space: nowrap;
        padding: 0 5px;
    }

    .service__subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .tv__list li {
        font-size: 0.85rem;
        line-height: 1.8;
        display: block;
    }

    .about__text,
    .tv__message,
    .service__description,
    .menu-recommend__details p {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .menu-price__category {
        font-size: 1.1rem;
    }

    .menu-price__items li {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .menu-price__item-price {
        margin-left: 0;
        align-self: flex-end;
    }

    .access__name {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .access__details {
        font-size: 0.85rem;
    }

    /* Header */
    .header__nav,
    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    /* FV */
    .fv {
        margin-top: 75px;
        /* Adjust to header height on mobile */
    }

    /* CTA Section */
    .cta-section {
        padding: 25px 0;
    }

    .cta-section__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn--cta {
        width: 100%;
    }

    /* Gallery */
    .gallery__grid {
        display: none;
    }

    .gallery-swiper {
        display: block;
    }

    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        color: #c8a882;
    }

    /* Fixed CTA */
    .fixed-cta {
        display: flex;
    }

    /* Service Section Order (Text -> Image for all) */
    .service__item {
        margin-bottom: 30px;
        /* Reduced from 60px */
        gap: 15px;
        /* Tighter gap */
    }

    .service__item .service__text {
        order: 1;
    }

    .service__item .service__image {
        order: 2;
    }

    /* Scroll Top */
    .scroll-top {
        bottom: 70px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Menu Price Parallax - Disable on Mobile */
    .menu-price__parallax-bg {
        background-attachment: scroll;
    }

    /* Access */
    .access__map iframe {
        height: 300px;
    }

    /* Footer */
    .footer__nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 30px 0;
    }

    .section__heading {
        max-width: 90%;
    }

    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        font-size: 2rem;
        padding: 8px 15px;
    }

    .lightbox__close {
        top: 15px;
        right: 15px;
    }

    .lightbox__prev {
        left: 15px;
    }

    .lightbox__next {
        right: 15px;
    }
}

/* ==========================================================================
   22. Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ==========================================================================
   23. Print Styles
   ========================================================================== */
@media print {

    .header,
    .fixed-cta,
    .scroll-top,
    .mobile-menu {
        display: none;
    }
}