/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: #c9a0a0;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c9a0a0;
}

.nav-btn {
    background: #c9a0a0;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: background 0.3s !important;
}

.nav-btn:hover {
    background: #b08888 !important;
}

/* ========== HERO ========== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-sub {
    font-size: 0.85rem;
    color: #c9a0a0;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    line-height: 1.4;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.hero-title span {
    color: #c9a0a0;
}

.hero-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: #c9a0a0;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #b08888;
}

.btn-secondary {
    border: 1px solid #c9a0a0;
    color: #c9a0a0;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #c9a0a0;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #c9a0a0;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

/* ========== ABOUT ========== */
#about {
    padding: 100px 24px;
    background: #fff;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* ========== MENU ========== */
#menu {
    padding: 100px 24px;
    background: #fdf8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.section-sub {
    font-size: 0.8rem;
    color: #c9a0a0;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 160, 160, 0.2);
}

.menu-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.menu-card:hover .menu-img img {
    transform: scale(1.05);
}

.menu-content {
    padding: 20px 32px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.menu-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.menu-card p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 48px;
}

.menu-price {
    font-size: 1rem;
    color: #c9a0a0;
    font-weight: 700;
}

/* ========== REVIEWS ========== */
#reviews {
    padding: 100px 24px;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fdf8f8;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #f0e6e6;
}

.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c9a0a0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.review-menu {
    font-size: 0.8rem;
    color: #c9a0a0;
    margin-top: 2px;
}

/* ========== STAFF ========== */
#staff {
    padding: 100px 24px;
    background: #fdf8f8;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.staff-card:hover {
    transform: translateY(-8px);
}

.staff-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.4s;
}

.staff-card:hover .staff-img img {
    transform: scale(1.05);
}

.staff-info {
    padding: 28px;
}

.staff-role {
    font-size: 0.8rem;
    color: #c9a0a0;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.staff-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.staff-desc {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.7;
}

/* ========== FAQ ========== */
#faq {
    padding: 100px 24px;
    background: #fdf8f8;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f0e6e6;
    margin-bottom: 8px;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #c9a0a0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-question p {
    flex: 1;
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.faq-arrow {
    font-size: 0.8rem;
    color: #c9a0a0;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 24px 52px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.8;
}

/* ========== RESERVATION ========== */
#reservation {
    padding: 100px 24px;
    background: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.form-group label span {
    color: #c9a0a0;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #f0e6e6;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c9a0a0;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.reservation-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ========== FOOTER ========== */
#footer {
    background: #2c2c2c;
    padding: 60px 24px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    color: #c9a0a0;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-address {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
}

.footer-tel {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 32px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c9a0a0;
}

.footer-copy {
    font-size: 0.8rem;
    color: #666;
}

/* ========== SCROLL ANIMATION ========== */
.menu-card,
.review-card,
.staff-card,
.faq-item,
.about-inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-card.visible,
.review-card.visible,
.staff-card.visible,
.faq-item.visible,
.about-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

    /* ナビ */
    .nav-links {
        display: none;
    }

    /* Hero */
    #hero {
        flex-direction: column;
        padding: 100px 24px 60px;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 24px;
    }

    /* About */
    .about-inner {
        flex-direction: column;
        gap: 40px;
    }

    .about-image img {
        height: 300px;
    }

    /* Menu */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Staff */
    .staff-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {

    /* Menu */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}