@charset "utf-8";

/* =========================================
   Hero (Full height, refined)
========================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-base);
    /* Elegant beige background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    /* Offset header */
}

.hero__inner {
    position: relative;
    width: 95%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push image to the right */
}

/* Left Side: Text Area */
.hero__content {
    position: absolute;
    left: 2%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    width: 55%;
    z-index: 2;
    pointer-events: none;
}

.hero__catch-group {
    margin-bottom: 40px;
}

.hero__catchphrase {
    color: var(--color-text-main);
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 2.2;
    letter-spacing: 0.15em;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 50px rgba(255, 255, 255, 0.6);
}

.hero__title-group {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__location {
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

.hero__salon-name {
    color: var(--color-text-main);
    font-family: var(--font-serif);
    font-size: 6.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 0 15px 0;
    line-height: 1;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.5);
}

.hero__menu-en {
    color: var(--color-text-main);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

/* Right Side: Image Area */
.hero__img-container {
    width: 65vw;
    height: 65vw;
    max-width: 85vh;
    /* Keep it square, max 85% of screen height */
    max-height: 85vh;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
}

.hero__slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__slider-img.is-active {
    opacity: 1;
}

/* Label: "エステサロン" */
.hero__label-wrap {
    position: absolute;
    top: -20px;
    left: -30px;
    z-index: 3;
}

.hero__label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-text-main);
    color: var(--color-bg-base);
    padding: 12px 30px;
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.hero__label-small {
    font-size: 0.75rem;
    margin-bottom: 4px;
    opacity: 0.9;
}

.hero__label-main {
    font-size: 1.1rem;
    font-weight: 400;
}

/* =========================================
   Menu (List style with large images)
========================================= */
.menu {
    background-color: var(--color-bg-accent);
}

.menu__item {
    display: flex;
    align-items: stretch;
    background-color: var(--color-white);
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.5s ease;
}

.menu__item:hover {
    transform: translateY(-5px);
}

/* Alternate flex direction for zig-zag layout */
.menu__item:nth-child(even) {
    flex-direction: row-reverse;
}

.menu__img-box {
    width: 50%;
    overflow: hidden;
}

.menu__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.8s ease;
}

.menu__item:hover .menu__img-box img {
    transform: scale(1.03);
}

.menu__text-box {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu__title-en {
    font-family: var(--font-en);
    font-size: 1.2rem;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu__title-ja {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-black);
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.menu__desc {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* =========================================
   Access
========================================= */
.access {
    background-color: var(--color-white);
}

.access__inner {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.access__info-box {
    background-color: var(--color-bg-base);
    padding: 40px 60px;
    width: 90%;
    margin: 40px auto 0;
    z-index: 2;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.access__map {
    width: 100%;
    height: 500px;
    z-index: 1;
}

.access__map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(80%) sepia(20%) hue-rotate(350deg);
}

.access__shop-name {
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.access__details {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.access__tel {
    display: block;
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

/* =========================================
   Media Queries
========================================= */
@media screen and (max-width: 900px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero__inner {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        display: block;
    }

    /* Right Side: Image Area (Background) */
    .hero__img-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        max-width: none;
        max-height: none;
        aspect-ratio: auto;
        box-shadow: none;
        z-index: 1;
    }

    /* Overlay removed to keep image bright as requested */
    .hero__img-container::after {
        display: none;
    }

    .hero__img,
    .hero__slider-img {
        object-fit: cover;
    }

    .hero__slider-img {
        z-index: 1;
    }

    /* Left Side: Text Area (Foreground) */
    .hero__content {
        position: absolute;
        bottom: 110px;
        /* Leave space for LINE floating button */
        left: 0;
        width: 75%;
        /* Narrower width */
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        /* Align text to left */
        text-align: left;
        /* Align text to left */
        padding: 20px 20px 20px 5%;
        /* Reduced padding */
        background-color: rgba(255, 255, 255, 0.25);
        /* Highly transparent */
        z-index: 3;
    }

    .hero__catch-group {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero__catchphrase {
        font-size: 1.4rem;
        line-height: 2;
        letter-spacing: 0.1em;
        color: var(--color-text-main);
        text-shadow: none;
    }

    .hero__title-group {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .hero__location {
        font-size: 1rem;
        margin-bottom: 5px;
        color: var(--color-gold);
        text-shadow: none;
    }

    .hero__salon-name {
        font-size: min(13vw, 3rem);
        margin-bottom: 10px;
        color: var(--color-text-main);
        text-shadow: none;
    }

    .hero__menu-en {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
        color: var(--color-gold);
        text-shadow: none;
    }

    .hero__label-wrap {
        top: calc(var(--header-height) + 15px);
        /* Keep label away from the bottom text block */
        left: 15px;
        transform: none;
        z-index: 4;
    }

    .hero__label {
        padding: 8px 18px;
        white-space: nowrap;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .hero__label-small {
        font-size: 0.65rem;
        margin-bottom: 2px;
    }

    .hero__label-main {
        font-size: 0.95rem;
    }

    .menu__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 0;
    }

    .menu__item,
    .menu__item:nth-child(even) {
        flex-direction: column;
        width: 48%;
        margin-bottom: 0px;
        display: flex;
        /* Ensure the items behave as flex containers */
    }

    .menu__img-box {
        width: 100%;
    }

    .menu__text-box {
        width: 100%;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        /* Allows the text box to fill remaining height */
    }

    .menu__img-box img {
        min-height: 140px;
    }

    .menu__title-en {
        font-size: 0.9rem;
    }

    .menu__title-ja {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .menu__desc {
        font-size: 0.8rem;
        margin-bottom: auto;
        padding-bottom: 20px;
    }

    .btn-view-more {
        padding: 12px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        margin-top: auto;
    }

    .btn-view-more::after {
        display: none;
    }

    .access__info-box {
        width: 100%;
        margin-top: 0;
    }
}