@charset "UTF-8";

.modal-open-button {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 60%);
    opacity: 0;
    transition: opacity 0.5s, scale 0s 0.5s;
    scale: 0;
}

.modal:target {
    opacity: 1;
    transition: opacity 0.5s;
    scale: 1;
}

.close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 40px;
    z-index: 100;
    color: black;
    text-decoration: none;
    cursor: pointer;
    transform: translate(50%, -50%);
}

.modal-wrapper {
    position: relative;
    width: 80%;
    max-width: 500px;
    top: 5%;
    padding: 20px;
    margin: auto;
    background-color: #FEFEFE;
    border-radius: 16px;
}

.modal-content {
    margin: 0;
    font-size: 1.3rem;
    line-height: 2.2rem;
    letter-spacing: -0.02em;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.modal-content .line-img {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width:500px) {
    .modal-content .txt {
        font-size: 1rem;
    }

    .modal-content .head02 {
        line-height: 0.8;
        font-size: 1.2rem;
    }
}