.hero {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 18px 12px 28px;
}

.lp-home .lp-page {
    padding-top: 0;
}

.lp-home .site-header {
    top: 8px;
    padding-top: max(env(safe-area-inset-top), 0px);
}

.lp-home .hero {
    padding-top: 0;
}

.hero__poster-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 248, 245, 0.96) 0%, rgba(255, 244, 240, 0.98) 100%);
    box-shadow: 0 24px 54px rgba(124, 87, 76, 0.12);
}

.hero__poster-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero__copy-overlay {
    position: absolute;
    left: clamp(18px, 5vw, 44px);
    top: clamp(24px, 5vw, 50px);
    z-index: 1;
    max-width: min(48%, 452px);
    color: #3b302d;
}

.hero__copy-kicker {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #5b4a45;
    font-size: clamp(17px, 2.7vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero__copy-brand {
    color: #d7748f;
    font-family: "Manrope", "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(27px, 4.1vw, 46px);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.hero__copy-divider {
    color: #7a6660;
    font-size: 0.92em;
}

.hero__copy-rule {
    width: min(100%, 440px);
    margin: 10px 0 18px;
    border-top: 3px dotted rgba(215, 116, 143, 0.62);
}

.hero__copy-body {
    margin: 0;
    color: #3b312f;
    font-size: clamp(24px, 3.8vw, 36px);
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -0.04em;
}

.hero__copy-body + .hero__copy-body {
    margin-top: 2px;
}

.hero__copy-price {
    margin: 14px 0 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #4d3d39;
    line-height: 1;
}

.hero__copy-price-label {
    font-size: clamp(15px, 2.1vw, 22px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero__copy-price-value {
    color: #d7748f;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(30px, 4.45vw, 49px);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero__copy-proof {
    margin: 9px 0 0;
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    color: #4d3d39;
    line-height: 1;
    white-space: nowrap;
}

.hero__copy-proof-label {
    color: #4d3d39;
    font-size: clamp(15px, 2.05vw, 22px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero__copy-proof-value {
    color: #d7748f;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(24px, 3.35vw, 37px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero__copy-proof-number {
    font-family: "Manrope", "Noto Sans JP", system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
}

@media (max-width: 759px) {
    .hero {
        padding: 12px 6px 26px;
    }

    .lp-home .hero {
        padding-top: 8px;
    }

    .lp-home .site-header {
        top: 6px;
    }

    .hero__poster-frame {
        border-radius: 22px;
    }

    .hero__copy-overlay {
        left: 16px;
        top: 132px;
        max-width: min(61%, 286px);
    }

    .hero__copy-kicker {
        display: block;
        font-size: 15px;
        line-height: 1.18;
        white-space: normal;
    }

    .hero__copy-brand {
        display: block;
        font-size: 26px;
    }

    .hero__copy-divider {
        display: none;
    }

    .hero__copy-partner {
        display: block;
        margin-top: 3px;
        color: #5b4a45;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .hero__copy-rule {
        margin: 8px 0 12px;
        border-top-width: 2px;
    }

    .hero__copy-body {
        font-size: 15px;
        line-height: 1.52;
        white-space: nowrap;
    }

    .hero__copy-price {
        margin-top: 10px;
        gap: 6px;
        white-space: nowrap;
    }

    .hero__copy-price-label {
        font-size: 13px;
    }

    .hero__copy-price-value {
        font-size: 26px;
    }

    .hero__copy-proof {
        margin-top: 7px;
        gap: 6px;
    }

    .hero__copy-proof-label {
        font-size: 13px;
    }

    .hero__copy-proof-value {
        font-size: 22px;
    }

    .button__arrow {
        font-size: 16px;
    }
}

@media (min-width: 960px) {
    .hero {
        padding-top: 28px;
        padding-bottom: 34px;
    }

    .hero__poster-frame {
        border-radius: 40px;
    }

    .hero__copy-overlay {
        left: 46px;
        top: 54px;
        max-width: 478px;
    }

}
