@charset "UTF-8";

/* ==========================================================================
   Variables & Base
   ========================================================================== */
:root {
    --color-primary: #405365;
    /* Slate Blue (Calm/Mature) */
    --color-secondary: #2c3e50;
    /* Darker Slate */
    --color-accent: #8e9eab;
    /* Muted Blue-Grey */
    --color-bg: #ffffff;
    --color-bg-gray: #f4f6f8;
    /* Light gray for rhythm */
    --color-text: #333333;
    --color-text-light: #555555;
    --font-base: 'Noto Sans JP', sans-serif;
    /* Readable Gothic */
    --font-deco: 'Noto Serif JP', serif;
    /* Atmospheric Mincho */
    --easing: cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 2.0;
    /* More relaxed */
    letter-spacing: 0.08em;
    /* Elegant spacing */
    background-color: var(--color-bg);
    padding-top: 0 !important;
    margin-top: 0 !important;
    overflow-x: hidden;
}

main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--easing);
}

a:hover {
    opacity: 0.8;
}

li {
    list-style: none;
}

/* ==========================================================================
   Utilities & Layout
   ========================================================================== */
.container {
    max-width: 1100px;
    /* Slightly tighter for text readability */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.section {
    padding: 100px 0;
    /* Padding instead of margin for full-width backgrounds */
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    /* For cropping large text */
}

/* Background Typography Decoration */
[data-deco]::before {
    content: attr(data-deco);
    font-family: 'Noto Serif JP', serif;
    font-style: italic;
    position: absolute;
    /* Default safe placement (Bottom Right corner area) */
    bottom: -5%;
    right: -2%;
    font-size: 15vw;
    color: var(--color-primary);
    opacity: 0.04;
    /* Always visible */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

/* Specific variations for rhythm */

/* About: Top Left */
[data-deco="About"]::before {
    bottom: auto;
    right: auto;
    top: -5%;
    left: -2%;
    font-size: 12vw;
}

/* Service: Bottom Right (Default reinforced) */
[data-deco="Service"]::before {
    font-size: 16vw;
    bottom: 0;
    right: 0;
}

/* Menu (Relax): Vertical Right - Kept as "Good Example" */
[data-deco="Menu"]::before {
    writing-mode: vertical-rl;
    bottom: auto;
    top: 10%;
    right: 2%;
    /* Margin from edge */
    font-size: 10vw;
}

/* Trouble (Beauty): Removed */

/* Message: Bottom Left */
[data-deco="Message"]::before {
    bottom: -5%;
    right: auto;
    left: -2%;
    font-size: 14vw;
}

/* Gallery: Top Right */
[data-deco="Gallery"]::before {
    bottom: auto;
    top: -5%;
    right: -2%;
    font-size: 16vw;
}

/* Voice: Vertical Left */
[data-deco="Voice"]::before {
    writing-mode: vertical-rl;
    bottom: auto;
    right: auto;
    top: 20%;
    left: 0;
    font-size: 12vw;
}

/* Contact: Center Bottom (Subtle) */
[data-deco="For You"]::before {
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
    font-size: 10vw;
    opacity: 0.03;
    /* Even lighter */
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title-img {
    max-width: 250px;
    display: block;
    margin: 0 auto;
    width: 100%;
}

/* Backgrounds */
.bg-white {
    background-color: #ffffff;
}

.bg-gray {
    background-color: var(--color-bg-gray);
}

/* Parallax Effect (Simple fixed bg attachment) */
.parallax-wrapper {
    background-color: #fff;
    /* fallback */
    position: relative;
    overflow: hidden;
}

/* Note: Real parallax needs img, but we asked for "balance". 
   Let's keep it clean with white/gray for now, or add a subtle pattern if needed. 
   The prompt said "Fixed background OK". 
   We will treat 'parallax-wrapper' as just a normal section for now to ensure cleanliness 
   unless we have a specific background image. With SVG placeholders, fixed bg looks odd.
   So we stick to alternating colors for "Balance".
*/

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.header__inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    color: var(--color-primary);
    line-height: 1.2;
    text-align: left;
    font-size: 1.2rem;
}

.header__logo span {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 0px;
}

.header__nav {
    display: none;
}

.header__cta .btn {
    display: none;
}


/* ==========================================================================
   Buttons (Refined: Box-like, Elegant)
   ========================================================================== */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 30px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    /* Box-like */
    font-weight: 500;
    transition: all 0.3s var(--easing);
    letter-spacing: 0.1em;
    font-family: var(--font-base);
}

.btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(64, 83, 101, 0.2);
}

/* Secondary Button (Outline or lighter) */
.btn--secondary {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 30px;
}

.btn--secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn--header {
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* CTA Specific Buttons */
.btn--tel,
.btn--web {
    width: 240px;
    font-size: 1.1rem;
    margin: 10px;
}

.btn--tel {
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn--tel:hover {
    background-color: var(--color-bg-gray);
}

.btn--web {
    background-color: var(--color-primary);
}

.btn__icon {
    margin-right: 10px;
    font-style: normal;
}

/* ==========================================================================
   First View (Single Image)
   ========================================================================== */
.fv {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    padding-top: 0 !important;
    margin-top: 0 !important;
    overflow: hidden;
}

.fv__image-box {
    width: 100%;
    height: auto;
}

.fv__image-box img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: contain;
}

.fv__image-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

/* Pseudo Header (FV only) */
.fv__nav {
    position: absolute;
    top: clamp(20px, 4vw, 40px);
    right: clamp(20px, 4vw, 50px);
    z-index: 50;
    /* Ensure high visibility */
}

.fv__nav ul {
    display: flex;
    flex-direction: column;
    /* Vertical */
    list-style: none;
    /* No dots */
    gap: clamp(8px, 1.5vw, 15px);
    /* Spacing */
    align-items: flex-end;
    /* Always safe for right-aligned nav */
}

.fv__nav a {
    color: #fff;
    font-size: clamp(0.9rem, 1.5vw, 1.3rem);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    transition: opacity 0.3s;
    white-space: nowrap;
    /* Prevent wrapping */
}

.fv__nav a:hover {
    opacity: 0.7;
}

/* FV Web Reservation Button */
.fv__reserve {
    position: absolute;
    bottom: clamp(20px, 5vw, 50px);
    left: clamp(20px, 4vw, 50px);
    z-index: 50;
    width: clamp(130px, 18vw, 260px);
    transition: opacity 0.3s;
    display: block;
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
}

.fv__reserve:focus {
    outline: none;
}

.fv__reserve:hover {
    opacity: 0.8;
}

.fv__reserve img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: none;
    /* Remove shadow/frame */
    border: none;
}

/* Header Visibility Logic (Scroll Trigger) */
.header.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.header.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    opacity: 0.8;
    animation: scrollPrompt 2.5s infinite;
}

.scroll-down::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: #fff;
    margin: 10px auto 0;
}

@keyframes scrollPrompt {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

/* Mobile adjustment for FV elements */
@media screen and (max-width: 767px) {
    .scroll-down {
        display: none;
    }
}





/* ==========================================================================
   CTA Section (Design-rich)
   ========================================================================== */
.bg-decorated {
    background-color: #f8f9fa;
    /* In a real scenario, use a subtle pattern or image here */
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.cta-box {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cta-box::before {
    content: "";
    /* Decorative border line top/bottom */
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border: 1px solid var(--color-primary);
    opacity: 0.2;
    pointer-events: none;
}

.cta-lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--color-primary);
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   Section Content Layouts
   ========================================================================== */
.two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 6%;
}

.two-column__img {
    width: 45%;
}

.two-column__text {
    width: 49%;
}

.two-column--rev .two-column__img {
    order: 2;
}

.two-column--rev .two-column__text {
    order: 1;
}

.tv__lead {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    border-left: 4px solid var(--color-primary);
    padding-left: 15px;
    line-height: 1.4;
}

.tv__list {
    margin-bottom: 30px;
}

.tv__list li {
    padding-left: 1.2em;
    text-indent: -1.2em;
    margin-bottom: 10px;
}

.tv__list li::before {
    content: "・";
    color: var(--color-primary);
}

/* Broken Grid */
.broken-grid {
    display: flex;
    position: relative;
    margin-top: 30px;
}

.broken-grid__img {
    width: 60%;
    margin-right: -10%;
    z-index: 1;
}

.broken-grid__text {
    width: 50%;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    z-index: 2;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-primary);
}

.section__sub-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* ==========================================================================
   Service
   ========================================================================== */
/* ==========================================================================
   Service (ZigZag Layout)
   ========================================================================== */
.service__list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* Big spacing for rhythm */
    margin-top: 40px;
}

.service__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Even items: Image Left, Text Right */
.service__item:nth-child(even) {
    flex-direction: row-reverse;
}

.service__img {
    width: 50%;
    /* Spacious visual */
    flex-shrink: 0;
    box-shadow: none;
    /* Soft shadow */
}

.service__content {
    width: 40%;
    /* Text width */
    text-align: left;
}

.service__item h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-primary);
    line-height: 1.5;
    /* No numbers, minimal */
}

.service__item p {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--color-text-light);
}

/* Mobile Responsive Adjustment for Service */
@media screen and (max-width: 767px) {
    .service__list {
        gap: 60px;
    }

    .service__item,
    .service__item:nth-child(even) {
        flex-direction: column-reverse;
        /* Image top, text bottom? Or Text top? usually Image top. Layout: Text column, Visual column. */
        /* Request: Left=Text, Right=Visual. In SP, usually Stacked. Let's stack Image Top, Text Bottom. */
        flex-direction: column;
    }

    .service__img,
    .service__content {
        width: 100%;
    }

    .service__img {
        margin-bottom: 30px;
    }

    /* Zigzag not effective on mobile often */
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.menu__cat-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.menu__cat-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin: 10px auto 0;
}

/* Rich List */
.menu__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
    /* if section is gray, else border */
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.menu__thumb {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.menu__thumb img {
    width: 100%;
    height: 100%;
}

.menu__name {
    font-size: 1rem;
    margin-bottom: 5px;
}

.menu__price {
    font-weight: bold;
    color: var(--color-primary);
}

.menu__list-simple dl {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-swiper {
    padding-bottom: 50px;
}

.gallery-img {
    transition: opacity 0.3s;
    width: 100%;
}

.gallery-img:hover {
    opacity: 0.8;
}

/* Modal styles retained from previous version */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 90vh;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* ==========================================================================
   Voice (Simple Icon)
   ========================================================================== */
.voice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.voice__card {
    background: #fdfdfd;
    padding: 40px 30px;
    border: 1px solid #eee;
    text-align: center;
}

.voice__icon svg {
    color: var(--color-primary);
    stroke-width: 1.5;
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.voice__star {
    margin-bottom: 20px;
    color: #bcaaa4;
    font-size: 0.9rem;
}

.voice__text {
    font-size: 0.95rem;
    text-align: left;
    opacity: 0.9;
    line-height: 1.8;
}

.voice__text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.voice__more-btn {
    display: inline-block;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.voice__more-btn:hover {
    opacity: 0.7;
}

.voice__link {
    text-align: center;
}

/* ==========================================================================
   Access
   ========================================================================== */
.access__info {
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.05rem;
}

.access__sns {
    margin: 30px 0;
    text-align: center;
}

.sns-icon {
    display: inline-block;
    color: var(--color-primary);
    padding: 0;
    /* No padding */
    border: none;
    /* No border */
    transition: opacity 0.3s;
}

.sns-icon:hover {
    background: transparent;
    opacity: 0.6;
    color: var(--color-primary);
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}


/* ==========================================================================
   Animations & Interactions
   ========================================================================== */

/* Scroll Fade Up */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s var(--easing), transform 1.0s var(--easing);
}

.js-fade.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* Image Hover Zoom Effects */
.two-column__img,
.broken-grid__img,
.service__img,
.menu__thumb {
    overflow: hidden;
    /* Mask the zoom */
    display: block;
}

.two-column__img img,
.broken-grid__img img,
.service__img img,
.menu__thumb img,
.gallery-img {
    transition: transform 0.8s var(--easing);
}

/* Apply hover on container hover */
.two-column__img:hover img,
.broken-grid__img:hover img,
.service__item:hover .service__img img,
.menu__item:hover .menu__thumb img,
.gallery-img:hover {
    transform: scale(1.05);
}

/* Voice Card Hover */
.voice__card {
    transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
}

.voice__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

/* Button Hover (Enhanced) */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: translateY(1px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (min-width: 768px) {
    .header__nav {
        display: block;
    }

    .header__cta .btn {
        display: inline-flex;
    }

    .header__list {
        display: flex;
        gap: 30px;
    }

    .header__hamburger {
        display: none;
    }

    .sp-menu {
        display: none !important;
    }
}

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

    /* Whitespace */
    .section {
        padding: 60px 0;
    }

    /* Header */
    .header {
        height: 60px;
        justify-content: space-between;
    }

    .header__logo span {
        display: none;
    }

    /* Simplify logo on SP */

    /* Hamburger */
    .header__hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 2000;
    }

    .header__hamburger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary);
        transition: 0.3s;
    }

    .header__hamburger span:nth-of-type(1) {
        top: 0;
    }

    .header__hamburger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .header__hamburger span:nth-of-type(3) {
        bottom: 0;
    }

    .header__hamburger.active span:nth-of-type(1) {
        top: 50%;
        transform: rotate(45deg);
    }

    .header__hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .header__hamburger.active span:nth-of-type(3) {
        top: 50%;
        transform: rotate(-45deg);
        bottom: auto;
    }

    /* SP Menu */
    .sp-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1500;
    }

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

    .sp-menu__list {
        text-align: center;
    }

    .sp-menu__list li {
        margin-bottom: 25px;
        font-size: 1.1rem;
    }

    /* Layouts */
    .two-column,
    .two-column--rev,
    .broken-grid {
        flex-direction: column;
    }

    .two-column__img,
    .two-column__text,
    .broken-grid__img,
    .broken-grid__text {
        width: 100%;
    }

    .two-column__img {
        margin-bottom: 30px;
    }

    .broken-grid__text {
        width: 90%;
        margin: -30px auto 0;
        padding: 40px 20px;
    }

    .service__list,
    .menu__grid,
    .voice__grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn--tel,
    .btn--web {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }
}

/* Floating CTA & Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    /* Box */
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

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

.floating-cta {
    display: none;
}

@media screen and (max-width: 767px) {
    .floating-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 990;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .floating-cta__btn {
        flex: 1;
        padding: 15px 0;
        text-align: center;
        font-weight: bold;
        color: #fff;
        font-family: var(--font-base);
        font-size: 1rem;
    }

    .float-tel {
        background: #607d8b;
    }

    .float-web {
        background: var(--color-primary);
    }

    .scroll-top {
        bottom: 70px;
    }
}

/* Gallery Slider Adjust */
.gallery-img {
    width: 90%;
    margin: 0 auto;
    display: block;
    border-radius: 4px;
}