/* ===============================
   Base
================================ */
body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #222;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

.logo,
.hero h1 {
    font-family: "Playfair Display", serif;
    letter-spacing: 0.05em;
}

/* ===============================
   Header
================================ */
.header {
    height: 56px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ===============================
   Hero
================================ */
.hero {
    height: 82vh;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 85%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 6px;
    text-align: center;
}

.hero h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.hero p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===============================
   Section common
================================ */
.section {
    padding: 64px 20px;
}

.section h2 {
    font-size: 20px;
    margin-bottom: 24px;
}
section {
    margin-bottom: 20px;
}

.menu {
    margin-bottom: 0;
}

.access {
    margin-top: 0;
}

.about-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-text p {
    max-width: 280px;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.about-image img {
    max-width: 300px;
    border-radius: 8px;
}

/* ===============================
   Menu
================================ */
.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 16px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-item img {
    max-width: 200px;
    border-radius: 6px;
}

.menu-item h4 {
    margin-top: 8px;
    font-size: 16px;
    text-align: center;
}

/* ===============================
   Access
================================ */
.access-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
}

.access-info p {
    font-size: 14px;
    margin-bottom: 16px;
}

.access-note {
    font-size: 12px;
    color: #666;
}

/* ===============================
   Footer（SP）
================================ */
.footer {
    background: #2b2b2b;
    color: #f5f5f5;
    padding: 24px 16px;
    text-align: center;
}

.footer-cta {
    margin-bottom: 16px;
}

.contact-button {
    display: inline-block;
    padding: 10px 24px;
    background: #f5f5f5;
    color: #2b2b2b;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
}
.contact-section {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-nav a {
    color: #f5f5f5;
    font-size: 14px;
    text-decoration: none;
}

.footer-copy {
    font-size: 12px;
}

/* Instagram */
.instagram-icon {
    width: 18px;
    height: 18px;
    color: #f5f5f5;
}

/* ===============================
   PC表示 min-width:768px
================================ */
@media (min-width: 768px) {
    .logo {
        font-size: 25px;
    }

    .section {
        max-width: 924px;
        margin: 0 auto;
        padding: 64px 16px;
    }

    .section h2 {
        text-align: left;
    }

    /* Hero */
    .hero {
        height: 90vh;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .hero-inner {
        max-width: 500px;
        padding: 24px;
        margin: 80px auto 0;
        transform: translateX(180px);
        text-align: left;
    }

    .hero h1 {
        font-size: 37px;
        white-space: nowrap;
    }

    .hero p {
        font-size: 16px;
    }

    /* About */
    .about-inner {
        flex-direction: row;
        justify-content: space-between;
        max-width: 960px;
        margin: 0 auto;
    }

    .about-text p {
        max-width: 500px;
        font-size: 16px;
        text-align: left;
    }

    .about-image img {
        max-width: 400px;
    }

    /* Menu */
    .menu {
        max-width: 924px;
        margin: 0 auto;
    }

    .menu-items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 60px;
    }

    .menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Access */
    .access {
        max-width: 924px;
        margin: 0 auto;
    }

    .access-inner {
        flex-direction: row;
        gap: 80px;
    }
    .access-map {
        flex: 0 0 460px;
        max-width: 460px;
    }

    .access-info {
        flex: 0.8;
    }

    .access-map iframe {
        height: 340px;
    }

    /* Footer */
    .footer {
        padding: 40px 16px 32px;
    }

    .footer-cta {
        margin-bottom: 32px;
    }

    .contact-button {
        font-size: 16px;
        padding: 12px 36px;
    }

    .footer-nav {
        gap: 32px;
    }

    .instagram-icon {
        width: 20px;
        height: 20px;
    }
}
