html, body {
    height: 100%;
    overflow: hidden;
}

.about_page {
    padding-bottom: 100px;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

h1 {
    white-space: nowrap;
    z-index: 2;
    position: fixed;
    top: 150px;
}


.about_page .right {
    height: 100%;
    width: calc(100% + 24px);
    object-fit: cover;
    overflow: hidden;
    background-size: cover;
    background-position: top;
}

.about_page .left {
    padding-right: 24px;
    overflow-y: auto;
    scrollbar-width: none;
    position: relative;
    margin-top: 320px;
}


.about_page .about_page_content .lead {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    margin-bottom: 24px;
}

.bottom {
    background-color: #000000;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 4;
}

.bottom_line {
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.bottom_line a {
    font-size: 16px;
    font-weight: bold;
    padding: 24px 30px;
    background-color: #FFCC00;
    color: #000000;
    border-radius: 24px;
    margin: 24px 0;
    line-height: 0;
    text-decoration: none;
}

@media (max-width: 960px) {
    html, body {
        overflow: auto;
    }
    h1 {
        position: relative;
        font-size: 40px;
        top: 0;
        order: 2;
        margin-top: -20vw;
    }

    main {
        margin-bottom: 0;
    }

    .about_page {
        height: auto;
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }

    .about_page .left {
        order: 2;
        margin-top: -5vw;
        z-index: 2;
        padding-right: 0;
        padding-bottom: 0;
    }

    .about_page .right {
        width: 100%;
        order: 1;
        aspect-ratio: 3/4;
    }

    .about_page .right::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.95%, #070707 100%);
        pointer-events: none;
        z-index: 1;
    }

    .bottom {
        position: relative;
        margin-bottom: 70px;
        z-index: 1;
    }

    .bottom_line a {
        width: 100%;
        text-align: center;
    }
}