@charset "UTF-8";

/* ===============
Detail Hero（2カラム）
=================*/

.detail-hero {
    min-height: 380px;
    overflow: hidden;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.detail-hero__body {
    width: 100%;
    padding: 64px 100px;
    text-align: left;
}

.detail-hero__title {
    font-size: 4.8rem;
    font-weight: 400;
    color: #373737;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

@media (max-width: 1023px) {
    .detail-hero {
        min-height: 220px;
    }

    .detail-hero__body {
        padding: 24px 24px 40px;
        text-align: center;
    }

    .detail-hero__title {
        font-size: 3.2rem;
    }

    .detail-hero__img img {
        aspect-ratio: 4 / 3;
    }
}

/* ===============
Detail Page Content
=================*/

.menu-page-content {
    margin-top: 100px;
}

@media (max-width: 1023px) {
    .menu-page-content {
        margin-top: 56px;
    }
}

/* ===============
Related Menu Cards
=================*/

.menu-related {
    padding: 80px 0 100px;
    border-top: 1px solid rgba(55, 55, 55, 0.10);
}

.menu-related__header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-related__title-en {
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.menu-related__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

.menu-related__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.menu-related__card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.menu-related__card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.menu-related__card:hover img {
    transform: scale(1.04);
}

.menu-related__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(55, 55, 55, 0.18);
    color: #faf7f5;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    transition: background 0.3s ease;
}

.menu-related__card:hover .menu-related__label {
    background: rgba(55, 55, 55, 0.35);
}

@media (max-width: 1023px) {
    .menu-related {
        padding: 56px 0 64px;
    }

    .menu-related__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-related__title-en {
        font-size: 3.2rem;
    }
}
