.tokushomodal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.modal__content{
    position: relative;
    width: 90%;
    height: 100%;
    max-height: 100%;
    overflow-y: scroll;
    background-color: #fff;
    padding: 4rem;
    color: #000;
    margin: auto;
}

.modal__title{
    font-size: 2.4rem;
    text-align: center;
    padding-bottom: 3rem;
}

.modal__description{
    font-size: 1.5rem;
    padding-bottom: 3rem;
    font-weight: 400;
}

.modal-content-detail__item:not(:last-of-type){
    margin-bottom: 3rem;
}

.modal-content-detail-item__title{
    display: block;
    border-bottom: .1rem solid grey;
    font-size: 2rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.modal-content-detail-item-content__title{
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 1.6rem;
}

.modal-content-detail-item__content:not(:last-of-type){
    margin-bottom: 3rem;
}

.modal-content-detail-item-content__info{
    font-weight: 500;
    font-size: 1.4rem;
}

.modal-content-detail-item-content-info__row{
    color: #000 !important;
    display: flex;
    justify-content: space-between;
}

.modal-content-detail-item-content-info__row:not(:last-of-type){
    margin-bottom: .2rem;
}

.modal-content-detail-item-content-info-row__title{
    display: block;
    background-color: #eee;
    width: 30%;
    padding: 2rem;
    color: #000 !important;
}

.modal-content-detail-item-content-info-row__description{
    width: calc(100% - 30% - .2rem);
    display: block;
    background-color: #f9f9f9;
    padding: 2rem;
    color: #000 !important;
}

.modal__cancel{
    font-size: 5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.modal1{
    display: none;
}

.modal2{
    display: none;
}

.hidden{
    overflow-y: hidden;
}

.body{
    height: 100vh;
}

@media screen and (max-width:768px){
    .tokushomodal{
        padding: 2rem 0;
    }
    
    .modal__content{
        width: 95%;
        padding: 3rem 1.5rem;
    }
    
    .modal__title{
        font-size: 2rem;
        padding-bottom: 2rem;
    }
    
    .modal__description{
        font-size: 1.4rem;
        padding-bottom: 2rem;
    }
    
    .modal-content-detail__item:not(:last-of-type){
        margin-bottom: 3rem;
    }
    
    .modal-content-detail-item__title{
        font-size: 1.8rem;
        padding-left: .5rem;
    }
    
    .modal-content-detail-item-content__title{
        font-size: 1.4rem;
    }
    
    .modal-content-detail-item-content__info{
        font-size: 1.2rem;
    }
    
    .modal-content-detail-item-content-info__row{
        flex-direction: column;
    }
    
    .modal-content-detail-item-content-info-row__title{
        width: 100%;
        padding: 1rem;
        margin-bottom: .2rem;
    }
    
    .modal-content-detail-item-content-info-row__description{
        width: 100%;
        padding: 1rem;
    }

    .modal-content-detail-item__description{
        font-size: 1.4rem;
        font-weight: 500;
    }

    .modal__cancel{
        font-size: 3rem;
        right: .8rem;
        top: .8rem;
    }
}


