

.p-modal__wrapper {
    box-sizing: border-box;
    z-index: 1000000;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    /* transition: all 0.5s ease-in; */
}

.p-modal {
    box-sizing: border-box;
    position: relative;
    margin: 0px auto;
    padding: 30px;
    background-color: #fff;
    width: 85vw;
    height: 100%;
}

.p-modal__section {
    height: 100%;
    overflow: auto;
}

.p-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    content: "";
    width: 30px;
    height: 30px;
    background-color: #333;
    border-radius: 50%;
}

.p-modal__close::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width:0;
    height: 80%;
    border-right: solid 3px #fff;
    transform: translate(-1px, -50%) rotate(45deg);
}

.p-modal__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width:0;
    height: 80%;
    border-right: solid 3px #fff;
    transform: translate(-1px, -50%) rotate(-45deg);
}

.p-modal__title {
    float: none !important;
    display: block !important;
    font-size: 20px !important;
    font-weight: bold !important;
    margin-bottom: 30px;
}

.p-modal__title--l2 {
    margin-bottom: 20px;
    font-size: 18px !important;
    font-weight: bold !important;
}

.p-modal__contents {
    text-align: left;
    margin-bottom: 16px;
}

.p-modal__inquiry {
    text-align: right;
    margin-bottom: 16px;
}

.p-modal__image {

}

.p-modal__image > img {
    max-width: 100%;
}

@media screen and (max-width: 670px) {
    .p-modal__wrapper {
        
    }
    .p-modal {
    }

    .p-modal__title {
        font-size: 18px !important;
    }
}