.termModal,
.termModal *,
.termModal *:before,
.termModal *:after {
    box-sizing: border-box;
}
.termModal *::-webkit-scrollbar {
    width: 6px;
}
.termModal *::-webkit-scrollbar-track {
    background-color: #DFDFDF;
}
.termModal *::-webkit-scrollbar-thumb {
    background: #DE0319;
}
.termModal{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    display: none;
    width: 100%;
    min-width: 960px;
    height: 100%;
}
@media only screen and (max-width: 768px) {
    .termModal{
        min-width: 100%;
    }
}
.termModal__frame{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.termModal__inner{
    position: relative;
    width: 852px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 768px) {
    .termModal__inner{
        width: 93.333333333%;
    }
}
.termModal__inner__contents{
    padding: 40px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
}
@media only screen and (max-width: 768px) {
    .termModal__inner__contents{
        padding: 20px 10px;
    }
}
.termModal__inner__contents__closeBtn{
    position: absolute;
    top: -70px;
    right: 0px;
    width: 50px;
    height: 50px;
    display: inline-block;
}
@media only screen and (max-width: 768px) {
    .termModal__inner__contents__closeBtn{
        width: 25px;
        height: 25px;
        top: -35px;
    }
}
.termModal__inner__contents__closeBtn:hover{
    opacity: 0.7;
}
.termModal__inner__contents__closeBtn:before, .termModal__inner__contents__closeBtn:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
}
.termModal__inner__contents__closeBtn:before {
    transform: rotate(45deg);
}

.termModal__inner__contents__closeBtn:after {
    transform: rotate(135deg);
}
.termModal__inner__contents__texts{

}
.termModal__inner__contents__texts__head{
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
    .termModal__inner__contents__texts__head{
        font-size: 18px;
        margin-bottom: 10px;
    }
}
.termModal__inner__contents__texts__box{
    padding: 20px;
    border: 1px solid #e1dacf;
    margin-bottom: 20px;
}
.termModal__inner__contents__texts__box__content{
    font-size: 12px;
    height: 235px;
    overflow: auto;
    padding-right: 20px;
}
.termModal__inner__contents__texts__btn{
    color: #fff;
    background-color: #DE0319;
    width: 240px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    padding: 10px;
}
.termModal__inner__contents__texts__btn:hover{
    opacity: 0.7;
}