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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
    background: #5c3d2e;
    color: #333;
    line-height: 1.8;
}

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

a {
    text-decoration: none;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 2000;
    padding: 8px 14px;
    background: #f4e6d3;
    color: #5c3d2e;
    border-radius: 4px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #d4a373;
    outline-offset: 3px;
}

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

/* --- Header --- */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 16px 24px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.logo {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.logo a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 24px;
    z-index: 1001;
    position: relative;
}

.nav-links a {
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    padding-bottom: 4px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: #d4a373;
    border-bottom: 2px solid #d4a373;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 32px;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    border: 0;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
}

.overlay.active {
    display: block;
}

/* --- Hero --- */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: url("../img/shop01.webp") center 58% / cover no-repeat;
    text-align: center;
    color: #fff;
}

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

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-en,
.section-heading-en {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #7fb069;
    margin-bottom: 8px;
}

.page-hero-en {
    color: #f4e6d3;
}

.page-hero-title {
    font-size: 42px;
    letter-spacing: 0.08em;
    color: #fff;
}

.page-hero-area {
    margin-top: 12px;
    color: #f4e6d3;
    font-size: 14px;
    letter-spacing: 0.12em;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 18px 0;
    background: #f4e6d3;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #777;
}

.breadcrumb li + li::before {
    content: ">";
    margin-right: 8px;
    color: #aaa;
}

.breadcrumb a {
    color: #5c3d2e;
}

.breadcrumb a:hover {
    color: #7fb069;
}

/* --- Common --- */
.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: 30px;
    color: #5c3d2e;
    letter-spacing: 0.08em;
}

.button {
    display: inline-block;
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: 0.3s ease;
}

.button--primary {
    background: #7fb069;
    color: #fff;
    border: 1px solid #7fb069;
}

.button--primary:hover {
    background: #d4a373;
    border-color: #d4a373;
    color: #2a2a2a;
}

.button--outline {
    background: transparent;
    color: #5c3d2e;
    border: 1px solid #5c3d2e;
}

.button--outline:hover {
    background: #5c3d2e;
    color: #fff;
}

.button--gold {
    background: #d4a373;
    color: #2a2a2a;
    border: 1px solid #d4a373;
}

.button--gold:hover {
    background: #f4e6d3;
    border-color: #f4e6d3;
}

/* --- About --- */
.about-shop {
    padding: 80px 0;
    background: #fff;
}

.about-shop__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.about-shop__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 5px;
}

.about-shop__text h2 {
    margin-bottom: 24px;
    color: #5c3d2e;
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.about-shop__text > p:not(.section-heading-en) {
    margin-bottom: 16px;
    color: #555;
    font-size: 15px;
}

.menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

/* --- Shop information --- */
.shop-information {
    padding: 80px 0;
    background: #f8f2ea;
}

.shop-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px 48px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(92, 61, 46, 0.08);
}

.shop-info-list > div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 17px 0;
    border-bottom: 1px solid #e7d8c5;
}

.shop-info-list dt {
    color: #5c3d2e;
    font-weight: 700;
}

.shop-info-list dd {
    color: #555;
}

.shop-info-list a {
    color: #5c3d2e;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.shop-info-list a:hover {
    color: #7fb069;
}

.shop-note {
    margin-top: 24px;
    color: #777;
    font-size: 13px;
}

/* --- Access --- */
.access-section {
    padding: 80px 0;
    background: #2a2a2a;
    color: #fff;
    scroll-margin-top: 70px;
}

.section-heading--light h2 {
    color: #d4a373;
}

.section-heading--light .section-heading-en {
    color: #f4e6d3;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: stretch;
}

.access-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-content > p {
    margin-bottom: 28px;
    color: #f4e6d3;
    font-size: 16px;
}

.access-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.instagram-link {
    display: inline-block;
    width: fit-content;
    margin-top: 24px;
    color: #d4a373;
    border-bottom: 1px solid #d4a373;
    font-size: 14px;
}

.instagram-link:hover {
    color: #f4e6d3;
    border-color: #f4e6d3;
}

.access-map {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.access-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.site-footer {
    padding: 20px;
    background: #2a2a2a;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .page-hero {
        padding: 80px 0 50px;
    }

    .about-shop,
    .shop-information,
    .access-section {
        padding: 60px 0;
    }

    .about-shop__inner,
    .access-grid {
        grid-template-columns: 1fr;
    }

    .about-shop__image img {
        height: 360px;
    }

    .access-map {
        min-height: 360px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        padding: 20px;
        gap: 16px;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 4px 0 0 4px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 28px;
    }

    .section-heading h2,
    .about-shop__text h2 {
        font-size: 24px;
    }

    .about-shop__image img {
        height: 240px;
    }

    .shop-card {
        padding: 22px 18px;
    }

    .shop-info-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 0;
    }

    .shop-info-list dt,
    .shop-info-list dd {
        font-size: 14px;
    }

    .menu-links,
    .access-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .access-map {
        min-height: 280px;
    }
}
