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

:root {
    --primary-color: #f7ecf2;
    /* Soft Pink */
    --accent-color: #e0f2f7;
    /* Light Blue */
    --text-color: #333333;
    --bg-white: #ffffff;
    --section-margin-pc: 120px;
    --section-margin-sp: 80px;
    --base-font: 'Noto Sans JP', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--base-font);
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 16px;
    overflow-x: hidden;
    background-color: #fafafa;
    padding-top: 80px;
    /* Matching header height */
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 981px) {
    body {
        padding-top: 80px;
        /* Ensure sufficient padding for tablet/smaller PC */
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 70px;
        /* Reduced for mobile header if needed */
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utility --- */
.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 60px 0;
}

.section-title-content {
    position: relative;
    width: 100%;
}

.section-title-main {
    display: inline-block;
    font-size: 2rem;
    font-weight: 300;
    color: #5d4037;
    /* Warm brown/dark theme color for contrast */
    letter-spacing: 0.3em;
    padding: 25px 60px;
    background: url('../img/flame.png') no-repeat center center;
    background-size: 100% 100%;
    border: none;
    font-family: 'Shippori Mincho', serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.6);
    /* Enhanced shadow for depth */
    box-shadow: none;
}

@media (max-width: 1024px) {
    .section-title-wrap {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .section-title-main {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .section-title-main {
        font-size: 1.25rem;
        letter-spacing: 0.1em;
        padding: 15px 30px;
        /* Slightly more padding for better touch/visual balance */
        width: auto;
        /* Allow auto width based on content */
        display: inline-block;
        /* Ensure inline-block behavior is kept */
    }
}

.m-bottom {
    margin-bottom: var(--section-margin-pc);
}

@media (max-width: 1024px) {
    .m-bottom {
        margin-bottom: var(--section-margin-sp);
    }
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .header-inner {
        height: 70px;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo span {
        display: block;
        margin-top: -5px;
    }
}

.nav-pc {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-pc ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-pc a {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-pc a:hover {
    color: #ffb6c1;
}

.reserve-btn {
    background: #ffb6c1;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: #333;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav-pc {
        display: none;
    }
}

/* --- FV --- */
/* --- FV --- */
.fv {
    width: 100%;
    position: relative;
    overflow: visible;
    margin-bottom: 80px;
    display: block;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .fv {
        margin-bottom: 40px;
        /* Adjusted for tablet/mobile */
    }
}

.swiper-fv {
    width: 100%;
    height: auto;
}

.swiper-slide {
    width: 100%;
    height: auto;
    text-align: center;
}

.swiper-slide img,
.swiper-slide picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure fully visible */
    max-width: 100%;
    margin: 0 auto;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.scroll-down::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    margin: 10px auto 0;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* --- SV --- */
.sv {
    text-align: center;
    margin-bottom: 40px !important;
    /* Reduced vertical gap as requested */
}

.sv-banner {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.banner-small {
    max-height: 200px;
    width: 100%;
    max-width: 1000px;
    object-fit: cover;
}

/* --- CTA --- */
.cta-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 300px;
    padding: 20px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
}

.cta-tel {
    background: var(--accent-color);
    color: #444;
}

.cta-insta {
    background: #fdf2f4;
    color: #d63384;
    border: 1px solid #f8d7da;
}

/* --- TV (Nayami) --- */
.tv-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.tv-content {
    background: #fff;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--primary-color);
}

.tv-list {
    margin-top: 20px;
}

.tv-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tv-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* --- About (Clean Two Columns) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.no-overlap .about-content {
    margin-left: 0;
    padding: 40px;
    box-shadow: none;
    background: transparent;
}

.about-img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.gallery-slide {
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    width: auto;
}

.gallery-slide img {
    display: block;
    width: auto;
    height: 350px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

@media (max-width: 1024px) {
    .gallery-slide img {
        height: 200px;
    }
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

/* --- Service --- */
.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 5px;
}

.service-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #555;
    position: relative;
    padding-bottom: 10px;
}

.service-item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* --- Menu/Recommend (Fixed BG) --- */
.recommend {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url('../img/recobgs.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.recommend-card {
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.recommend-info {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Menu/Price --- */
/* --- Menu/Price (Elegant Redesign) --- */
.elegant-menu-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.elegant-menu-img {
    flex: 1;
    max-width: 400px;
}

.elegant-menu-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.elegant-menu-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.elegant-menu-item {
    position: relative;
}

.elegant-menu-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 12px;
}

.elegant-menu-name {
    font-size: 1.35rem;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    color: #333;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.elegant-menu-line {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 15px 6px;
}

.elegant-menu-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #bf392b;
    /* Theme Red */
    white-space: nowrap;
}

.elegant-menu-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    padding-right: 20px;
}

/* Responsive adjustments for Price List */
@media (max-width: 992px) {
    .elegant-menu-wrapper {
        gap: 30px;
        padding: 40px;
    }
}

@media (max-width: 1024px) {
    .elegant-menu-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        gap: 40px;
    }

    .elegant-menu-img {
        max-width: 100%;
        width: 100%;
    }

    .elegant-menu-img img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .elegant-menu-header {
        flex-wrap: wrap;
        gap: 5px;
    }

    .elegant-menu-line {
        display: none;
    }

    .elegant-menu-price {
        width: 100%;
        margin-top: 5px;
    }
}

/* --- Reviews --- */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.review-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.review-stars {
    color: #f1c40f;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.review-name {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Shippori Mincho', serif;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.view-more-wrap {
    text-align: center;
}

.view-more-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid #5d4037;
    color: #5d4037;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.1em;
}

.view-more-btn:hover {
    background: #5d4037;
    color: #fff;
}

@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Message --- */
.message-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.message-img {
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Contact/Access --- */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.align-left .contact-info {
    text-align: left;
}

.align-left .contact-info p {
    justify-content: flex-start;
    gap: 20px;
}

.map-wrap {
    height: 400px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.info-label {
    font-weight: 700;
    color: #888;
    min-width: 100px;
}

.sns-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.sns-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sns-btn:hover {
    opacity: 0.7;
    transform: translateY(-3px);
}

.sns-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Footer --- */
footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
    margin-top: 40px;
}

/* --- UI Parts --- */
#pagetop {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#pagetop.show {
    opacity: 1;
    visibility: visible;
}

/* Sticky Buttons Logic */
.fixed-cta-sp {
    display: none;
    /* Default hidden for PC */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .fixed-cta-sp {
        display: flex;
    }
}

.fixed-cta-sp a {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.fixed-cta-tel {
    background: var(--accent-color);
    color: #333;
}

.fixed-cta-web {
    background: #ffb6c1;
    color: #fff;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 2100;
}

.modal-close:hover {
    color: #ffb6c1;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
    border-radius: 4px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 182, 193, 0.4);
    color: #ffb6c1;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

@media (max-width: 1024px) {

    .modal-prev,
    .modal-next {
        padding: 10px 8px;
        font-size: 20px;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .header-inner {
        padding: 0 15px;
    }

    .nav-pc,
    .header-inner .reserve-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cta-area {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .tv-grid,
    .about-grid,
    .service-items,
    .recommend-card,
    .menu-price-grid,
    .voice-grid,
    .message-grid,
    .access-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tv-grid img {
        order: 1;
    }

    .tv-content {
        order: 2;
        padding: 30px 20px;
    }

    .about-img-wrap {
        order: 1;
    }

    .about-content {
        order: 2;
        padding: 20px 0;
    }

    .recommend-card {
        padding: 0;
    }

    .message-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .sns-links {
        justify-content: center;
    }

    .info-label {
        width: 25%;
        /* Using 30% to ensure narrow labels don't get too cramped, but 25% was requested. Let's stick to 25%. */
        min-width: auto;
        flex-shrink: 0;
    }

    .info-label+span {
        flex: 1;
    }

    .nav-sp {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 1500;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

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

    .nav-sp ul li {
        margin-bottom: 30px;
    }

    .nav-sp ul li a {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .sp-reserve-btn {
        display: inline-block;
        background: #ffb6c1;
        color: #fff !important;
        padding: 12px 40px;
        border-radius: 30px;
        font-size: 1rem;
        box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
        margin-top: 10px;
    }
}

@media (min-width: 1025px) {
    .nav-sp {
        display: none !important;
    }
}

/* Base Responsive Fixes */
html,
body {
    width: 100%;
    margin: 0;
    /* padding: 0; Removed to respect body padding-top for fixed header */
    overflow-x: hidden;
}

* {
    max-width: 100%;

}

/* --- Menu/Price (Single Feature Redesign) --- */
.elegant-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.elegant-feature-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.elegant-feature-subtitle {
    font-size: 0.9rem;
    color: #b5838d;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    font-weight: 500;
    display: block;
}

.elegant-feature-price {
    font-size: 2rem;
    color: #bf392b;
    /* Theme Red */
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.elegant-feature-price small {
    font-size: 1.2rem;
    color: #777;
    font-weight: 400;
}

.elegant-feature-desc {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .elegant-feature-content {
        text-align: center;
        padding-left: 0;
        padding-top: 20px;
    }

    .elegant-feature-price {
        justify-content: center;
    }

    .elegant-feature-title {
        font-size: 1.8rem;
    }

    .elegant-feature-price {
        font-size: 1.6rem;
    }
}