.yokuchi-hero {
    position: relative;

    width: 100%;
	min-height: unset !important;

    display: flex;
    align-items: flex-start;

    background-image: var(--yokuchi-hero-bg);
    background-color: transparent;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.yokuchi-hero__container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
    padding: 135px 40px 40px;
	padding: clamp(40px, 14vw, 270px) 20px clamp(51px, 40vw, calc(100svh - 576px));
}

.yokuchi-hero__content {
	display: flex;
	align-items:center;
	justify-content: center;
	flex-direction: column;
    max-width: 650px;
    margin: 0 auto;

    text-align: center;
}

.yokuchi-hero__title {
    margin: 0 0 12px;

    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1em;

    letter-spacing: 9px;
    text-align: center;
    text-transform: uppercase;

    color: #1d1d1b;
}

.yokuchi-hero__subtitle {
    margin: 0 0 28px;

    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;

    color: #6f6f6f;
}

.yokuchi-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 44px;
    padding: 0 22px;

    border: 1px solid #888;

    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 24px;
	max-width: max-content !important;

    text-decoration: none;
    text-transform: uppercase;

    color: #222;

    transition:
        color .2s ease,
        border-color .2s ease;
}

.yokuchi-hero__arrow {
    color: #e84d4d;
    font-size: 16px;
    line-height: 1;
}

.yokuchi-hero__button:hover {
    color: #e84d4d;
    border-color: #e84d4d;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .yokuchi-hero {
        aspect-ratio: var(--yokuchi-hero-mobile-ratio, 9 / 16);
        background-color: #fff;
        background-position: center top;
        background-size: contain;
    }

    .yokuchi-hero[style*="--yokuchi-hero-mobile-bg"] {
        background-image: var(--yokuchi-hero-mobile-bg);
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .yokuchi-hero__container {
        display: flex;
        min-height: 100%;
		padding: clamp(40px, 14vw, 270px) 20px 40px;
    }

    .yokuchi-hero__content {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .yokuchi-hero__title {
        font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: clamp(20px, 4vw, 30px);
        font-weight: 500;
        font-style: normal;
        letter-spacing: 6px;
        text-align: center;
        text-transform: uppercase;
    }

    .yokuchi-hero__subtitle {
        font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: 16px;
        font-weight: 200;
        font-style: normal;
        line-height: 24px;
        letter-spacing: 0;
        text-align: center;
		max-width: 307px;
    }

    .yokuchi-hero__button {
        width: fit-content !important;
        max-width: 100% !important;
        margin-top: auto;
        margin-bottom: 30px;
        border-color: rgba(255, 255, 255, 0.42);
        background: rgba(20, 21, 21, 0.28);
        font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: 14px;
        font-weight: 500;
        font-style: normal;
        line-height: 24px;
        letter-spacing: 2px;
        color: #fff;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .yokuchi-hero__button span {
        color: inherit;
    }

    .yokuchi-hero__button .yokuchi-hero__arrow {
        color: #e84d4d;
    }

}
