@charset "utf-8";
/* CSS Document */

main .copy {
    padding: 120px 0 78px 0;
}
main .copy .copy_text {
    text-align: center;
}
main .copy .copy_text img {
    margin: 0 auto;
}
main .copy .bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
    main .copy .bg {
        width: 100%;
        z-index: 0;
    }
    main .copy .copy_text img {
        z-index: 1;
    }
}

@media screen and (max-width: 600px) {

    main .copy {
        padding: 45px 40px;
    }
    main .copy .copy_text {
        margin-bottom: 30px;
        display: block;
    }
    main .copy .bg {
        position: inherit;
        left: auto;
        top: auto;
        transform: translate(0, 0);
        width: 70%;
        max-width: 420px;
        display: block;
        margin: 0 auto;
    }
    main .contents section.list {
        margin-top: 0;
    }
    
}