@charset "UTF-8";

:root {
    --color-primary: #C8B195;
    --color-secondary: #E8E2DC;
    --color-accent: #8C7B6E;
    --color-dark: #2C2623;
    --color-light: #FAF8F6;
    --font-sans: 'Playfair Display', 'Noto Sans JP', sans-serif;
    --font-serif: 'Playfair Display', 'Noto Serif JP', serif;
    --font-display: 'Playfair Display', serif;
    --font-title: 'Tangerine', cursive;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-serif);
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 2.2;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

main,
section {
    max-width: 100%;
    overflow-x: clip;
}

img,
svg,
iframe {
    max-width: 100%;
}

/* Typography */
.font-display {
    font-family: var(--font-display);
}

.font-display-italic {
    font-family: var(--font-display);
    font-style: italic;
}

/* Quiet/Plain Surface Pattern Overrides */
body>.fixed.inset-0.pointer-events-none {
    background: #FAF8F6;
}

body>.fixed.inset-0.pointer-events-none>* {
    display: none;
}

.background-noise {
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

.access-map-frame {
    border: 0;
}

header {
    background: #000000 !important;
    backdrop-filter: none !important;
    border-color: transparent !important;
}

header a,
header span,
header button,
header .header-sitemap-link {
    color: #FFFFFF !important;
}

main {
    background: #FFFFFF !important;
}

#fv,
#about,
#menu,
#voice {
    background: #FFFFFF;
}

#recommended,
#service {
    background: #F5F1ED;
}

.image-backed-section {
    background-image: none;
}

.bg-typography,
#service .absolute.right-4 {
    display: none;
}

/* Image Masking Shapes */
.arch-img {
    border-radius: 50vw 50vw 0 0;
    overflow: hidden;
}

#fv .arch-img.border {
    border: 0 !important;
    padding: 0 !important;
}

.arch-img-sm,
#service [class*="rounded-t-[15rem]"] {
    border-radius: 0;
}

.minimal-grid-img>div {
    padding: 0 !important;
    border-color: transparent !important;
}

/* Minimalist Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(140, 123, 110, 0.1);
    border-bottom: 1px solid rgba(140, 123, 110, 0.1);
    display: flex;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 40s linear infinite;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--color-dark);
    opacity: 0.5;
    text-transform: uppercase;
}

.marquee-content span {
    margin-right: 3rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Layout Utilities */
.minimal-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin-bottom: 6rem;
}

.minimal-grid-img {
    width: 100%;
    position: relative;
}

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

.minimal-grid-text {
    width: 100%;
    padding: 3rem 1.5rem;
    background: var(--color-light);
}

@media (min-width: 768px) {
    .minimal-grid {
        justify-content: space-between;
        margin-bottom: 10rem;
    }

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

    .minimal-grid-img {
        width: 50%;
    }

    .minimal-grid-text {
        width: 45%;
        padding: 0;
        background: transparent;
    }

    .overlap-box {
        background: #FFFFFF;
        padding: 4rem;
        margin-left: -15%;
        margin-top: 5rem;
        z-index: 10;
        position: relative;
        border: 0;
        box-shadow: none;
    }

    .reverse .overlap-box {
        margin-left: 0;
        margin-right: -15%;
    }
}

/* Buttons & CTA */
.btn-outline,
.btn-filled,
header nav a[class*="rounded-full"] {
    border-radius: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: #FFFFFF;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-light);
}

.btn-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background: var(--color-dark);
    color: var(--color-light);
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    border: 1px solid var(--color-dark);
}

.btn-filled:hover {
    background: transparent;
    color: var(--color-dark);
}

.reservation-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
    background: #F5F1ED;
    border-color: transparent !important;
}

.reservation-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 8rem);
    line-height: 0.9;
    color: var(--color-dark);
    letter-spacing: 0.04em;
}

.reservation-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.reservation-buttons a {
    min-width: min(100%, 18rem);
    padding: 1.1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.18em;
}

@media (min-width: 768px) {
    .reservation-buttons {
        flex-direction: row;
    }
}

/* Section Layout Adjustments */
section,
section [class*="border"],
footer [class*="border"],
.mobile-cta,
#back-to-top {
    border-color: transparent !important;
}

section .h-px,
section .w-px {
    display: none !important;
}

#menu .space-y-0.border-t {
    border-top: 1px solid rgba(44, 38, 35, 0.1) !important;
}

#menu .space-y-0>.border-b {
    border-bottom: 1px solid rgba(44, 38, 35, 0.1) !important;
}

#recommended .flex.flex-col.md\:flex-row>div {
    border-radius: 9999px !important;
    border-color: transparent !important;
}

#recommended ul {
    border-color: transparent !important;
}

/* Cards and Elements Styling (Removal of complex decorations) */
#service>.relative.z-20>div {
    background: #F5F1ED !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-color: #E8E2DC !important;
}

#service [class*="rounded-t-[25rem]"] {
    display: none;
}

#service [class*="shadow-xl"],
#menu [class*="shadow"],
#voice [class*="shadow"] {
    box-shadow: none !important;
}

#menu [class*="rounded-2xl"],
#menu [class*="rounded-xl"],
#voice [class*="rounded-xl"] {
    border-radius: 0 !important;
}

#recommended [class*="backdrop-blur"],
#menu [class*="backdrop-blur"],
#voice [class*="backdrop-blur"] {
    backdrop-filter: none !important;
}

#recommended .flex.flex-col.md\:flex-row>div,
#recommended ul,
#menu [class*="bg-white"],
#voice [class*="bg-white"] {
    background: #FFFFFF !important;
    border-color: #E8E2DC !important;
}

#menu [class*="bg-light"] {
    background: #FAF8F6 !important;
}

footer {
    background: #2C2623 !important;
}

footer.pb-44 {
    padding-bottom: 5rem;
}

@media (max-width: 767px) {

    #recommended,
    #about,
    #menu,
    #voice {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .minimal-grid-text {
        background: #FFFFFF;
        border: 0;
        margin-top: 1rem;
    }

    .bg-typography {
        max-width: 100vw;
        overflow: hidden;
    }

    .fv-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .fv-section h2 {
        overflow-wrap: anywhere;
    }

    .p-6 {
        padding: 1rem;
    }
}

/* Modal styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 245, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content img {
    max-width: 90vw;
    max-height: 90vh;
    border: 1px solid var(--color-secondary);
}

#modal-close-js {
    color: var(--color-dark);
}

/* Hamburger menu */
.hamburger-menu {
    position: fixed;
    inset: 0;
    background: var(--color-light);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger-menu.active {
    transform: translateY(0);
}

.hamburger-menu a {
    color: var(--color-dark);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FV Slide Fade */
.fv-fade-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fvFadeThree 15s infinite;
}

.fv-fade-img:nth-child(1) {
    animation-delay: 0s;
}

.fv-fade-img:nth-child(2) {
    animation-delay: 5s;
}

.fv-fade-img:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fvFadeThree {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    43.33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Voice Text Toggle */
.voice-body {
    position: relative;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.voice-body.collapsed {
    max-height: 100px;
}

.voice-body.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    pointer-events: none;
}

.voice-read-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--color-accent);
    cursor: pointer;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    padding: 0;
}

/* Mobile CTA fixed bottom */
.mobile-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    background: var(--color-light);
    border-top: 1px solid var(--color-secondary);
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta-btn {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
}

.mobile-cta-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* Keep only the marquee and price-table rules */
#fv .arch-img {
    border-radius: 50vw 50vw 0 0;
}

.font-display,
.font-display-italic,
.marquee-content {
    font-weight: 500;
}

.section-title,
.reservation-title {
    font-family: var(--font-title);
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 4rem !important;
    }
}

#fv {
    position: relative;
    isolation: isolate;
    background: transparent !important;
    min-height: 100vh;
}

#fv::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url('../img/fvbg.jpg') center / cover no-repeat fixed;
}

#service {
    position: relative;
    background-image: url('../img/servicebg.jpeg') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    border-top: 0 !important;
}

#service::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    z-index: 15;
    pointer-events: none;
    background: linear-gradient(to bottom, #a0968c 0%, rgba(160, 150, 140, 0) 100%);
}

#service>.relative.z-20>div {
    background: transparent !important;
    backdrop-filter: none !important;
}

#voice {
    background-image: url('../img/voicebg.jpeg') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.reservation-cta {
    background: #a0968c;
}

#about {
    padding-bottom: 0 !important;
}

.reservation-cta,
.reservation-cta p,
.reservation-cta .reservation-title {
    color: #FFFFFF !important;
}

.header-cta {
    background: #000000 !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
}

.header-cta:hover {
    background: #FFFFFF !important;
    color: #2C2623 !important;
}

.header-sitemap-link {
    font-size: 16px !important;
}

.fv-shop-name {
    display: block;
    font-size: clamp(5rem, 13vw, 10rem);
    line-height: 0.78;
    white-space: nowrap;
}

.fv-business-type {
    display: block;
    margin-top: 1.25rem;
    font-size: clamp(1.35rem, 3vw, 2.5rem);
    line-height: 1;
}

.access-cta {
    width: 100%;
    min-height: 3.5rem;
    background: #FFFFFF !important;
    color: #2C2623 !important;
    border-color: #FFFFFF !important;
}

.access-cta:hover {
    background: #FFFFFF !important;
    color: #2C2623 !important;
    opacity: 0.82;
}

.mobile-menu-actions {
    width: min(82vw, 22rem);
}

.mobile-menu-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.25rem;
    background: #2C2623;
    color: #FFFFFF !important;
    font-family: var(--font-sans);
    font-size: 14px;
    font-style: normal;
    letter-spacing: 0.1em;
}

/* 地図下著作権 - SP時は追従CTAの高さ分余白を確保 */
.footer-copyright-map {
    line-height: 1.8;
}

@media (max-width: 767px) {
    .footer-copyright-map {
        padding-bottom: 4.5rem;
    }
}

@media (max-width: 767px) {
    .fv-shop-name {
        font-size: clamp(4rem, 24vw, 6rem);
        letter-spacing: -0.04em;
    }
}

#about .about-main-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.before-after {
    padding: 1rem 0 5rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.before-after-grid figure {
    overflow: hidden;
    background: #f4f4f4;
}

.before-after-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

@media (max-width: 767px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
}

/* SP Background Fixed Support */
@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {

    #fv,
    #service,
    #voice {
        position: relative !important;
        background: none !important;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    #fv::before,
    #service::before,
    #voice::before {
        content: '';
        position: fixed !important;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0 !important;
        pointer-events: none;
    }

    #fv::before {
        background: url('../img/fvbg.jpg') center / cover no-repeat !important;
    }

    #service::before {
        background: url('../img/servicebg.jpeg') center / cover no-repeat !important;
    }

    #voice::before {
        background: url('../img/voicebg.jpeg') center / cover no-repeat !important;
    }

    #fv>*,
    #service>*,
    #voice>* {
        position: relative;
        z-index: 1;
    }
}