.word-modal-btn {
    position: absolute;
    font-size: 16px;
    top: 215px;
    left: 434px;
    width: 117px;
    height: 117px;
    padding: 0 0px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    color: #ed2349;
    border: 10px solid white;
    transition: 0.5s;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.word-modal-btn:hover {
    background-color: #ed2349;
    color: white;
}

.word-modal {
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    transition: 0.5s;
}

.word-modal h2 {
    text-align: center;
    color: #000025;
    margin-top: auto;
    font-weight: bold;
    font-size: 40px;
    line-height: normal;
    text-align: center;
}

.word-modal .word-content {
    width: 1114px;
    max-width: 100%;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding-top: 70px;
    justify-content: center;
}

.word-modal .word-content .left {
    width: 490px;
    margin-top: auto;
    margin-bottom: auto;
}

.word-modal .word-content .left .wp-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 23px;
    padding-bottom: 15px;
}

.word-modal .word-content .left .sign {
    background-image: url(../word/sign.svg);
    width: 295px;
    height: 34px;
    background-size: contain;
}

.word-modal .word-content .right {
    width: 558px;
    height: 627px;
    margin-left: 60px;
}

.word-modal .word-content .right .img-box {
    width: 100%;
    background-size: contain;
    height: 100%;
}




.word-modal .close-btn {
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    width: 100px;
    height: 50px;
    background-color: #ed2349;
    cursor: pointer;
}

.word-modal .close-btn:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 3px;
    background: white;
    transform: rotate(-45deg) translate(-13px, -1px);
    transform-origin: left top;
    border-radius: 2px;
    transition: 0.5s;
}
.word-modal .close-btn:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 25px;
    height: 3px;
    background: white;
    transform: rotate(45deg) translate(-12px, -1px);
    transform-origin: left top;
    border-radius: 2px;
    transition: 0.5s;
}
.word-modal .close-btn:hover:before {

    left: calc(50% - 8px);

    transform: rotate(-405deg) translate(-13px, -1px);
}

.word-modal .close-btn:hover:after {
    left: calc(50% + 8px);
    transform: rotate(405deg) translate(-12px, -1px);
}

@media screen and (max-width: 1400px) {
    .word-modal-btn {
        left: 237px;
        top: 51px;
    }
    .word-modal .word-content .right {

        width: calc(558px * 0.6);

        height: calc(627px * 0.6);
    }
}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1024px) {
    .word-modal .word-content .left {
        width: 320px;
    }
    .word-modal .word-content {
        padding-top: 0px;
    }
}


@media screen and (max-width: 767px) {
    .word-modal .word-content {
        display: flex;
        flex-direction: column;
    }
    .word-modal {

        height: auto;

        display: block;

        padding: 0 30px;

    }

    .word-modal h2 {
        padding: 30px 0;
    }

    .word-modal .word-content .left {
        width: 100%;
        order: 2;
        padding-top: 25px;
    }

    .word-modal .word-content .right {
        width: calc(100vw - 60px);
        height: calc((100vw - 60px) / 558 * 627);
        margin-left: 0;
    }
    .word-modal-btn {
        position: relative;
        left:0;
        top: 0;
        width: 90vw;
        height: 40px;
        margin: 15px auto 5px auto;
        border-radius: 33px;
    }
    .word-modal .close-btn:before {
        left: calc(50% - 8px);
        transform: rotate(-405deg) translate(-13px, -1px);
    }

    .word-modal .close-btn:after {
        left: calc(50% + 8px);
        transform: rotate(405deg) translate(-12px, -1px);
    }
    .word-modal .close-btn {
        position: relative;
        left: 0;
        top: 0;
        margin: auto;
        margin-top: 20px;
    }
}
@media screen and (max-width: 550px) {
    .word-modal h2 {

        font-size: 30px;

        padding: 10px 0;
    }
}