@charset "UTF-8";

body {
    /* overflow: hidden; */
}

.inner {
    max-width: 740px;
}

.about_body {
    margin-bottom: 50px;
}

main {
    position: relative;
    margin-bottom: 50px;
}

main::before {
    content: '';
    width: 978px;
    height: 1691px;
    background: url(/img/about/bg-about01.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -133%;
    right: -260px;
    z-index: -1;
}

main::after {
    content: '';
    width: 1108px;
    height: 1593px;
    background: url(/img/about/bg-about02.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -69%;
    left: -600px;
    z-index: -1;
}


.about_ttl {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about_txt {
    font-size: 15px;
}

.name {
    text-align: right;
}

.link_movie {
    color: #fff;
    background: #000;
    width: fit-content;
    padding: 10px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 16px;
    transition-duration: 0.5s;
    margin: 0 auto;
}

.link_movie::before {
    content: '';
    width: 12px;
    height: 13px;
    background: url(/img/cmn/icon-key.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.link_movie:hover {
    opacity: 0.7;
}

.to-top {
    display: none;
}

.copy .inner {
    max-width: 1240px;
}

.copy p {
    color: #fff;
}


@media screen and (max-width:767px) {
    main::before {
        background: url(/img/about/bg-about01_sp.png) center / 603px 325px;
        width: 100%;
        height: 325px;
        background-size: cover;
        background-repeat: no-repeat;
        top: -38%;
        transform: translateX(50%);
        right: 50%;
    }

    main::after {
        background: url(/img/about/bg-about02_sp.png) center / 508px 314px;
        width: 100%;
        height: 314px;
        background-size: cover;
        background-repeat: no-repeat;
        top: unset;
        bottom: -27%;
        transform: translateX(50%);
        left: unset;
        right: 50%;
    }

    .page_ttl {
        margin-top: 120px;
    }

    .copy p {
        color: #000;
    }
}