/* サイドバナー */
.form-side-banner{
    position: absolute;
    width: 140px;
    transition: all ease-in-out .3s;
    position: absolute;
    margin: 0 auto;
    right: calc(50vw - 450px);
    cursor: pointer;
    top: 0;
}
.form-side-banner-sp{
    display: none;
}
@media screen and (max-width: 900px) {
    .form-side-banner{
        right: 0;
    }
}
@media screen and (max-width: 780px) {
    .form-side-banner{
        width: 100px;
    }
}
@media screen and (max-width: 991px) {
    .form-side-banner{
        display: none;
    }
    .form-side-banner-sp{
        display: block;
        margin-top: 24px;
        padding-bottom:0;
    }
    .form-side-banner-sp img{
        width: 100%;
    }
}

.form-side-banner:hover{
    opacity: 0.8;
}

.form-side-banner img{
    width: 100%;
}


/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,0.8);
    padding: 100px;
    overflow: auto;
    display: none;
    box-sizing: border-box;
    z-index: 1000;
}
@media screen and (max-width: 768px) {
    .modal-container{
        padding: 50px 15px 200px;
    }
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
    display: block;
    animation: modal-appear .3s ease;
}
@keyframes modal-appear {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
/*モーダル枠の指定*/
.modal-inner{
    position: relative;
    background-color: #fff;
    max-width: 700px;
    box-sizing: border-box;
    width: 100%;
    padding: 35px;
    margin: 0 auto;
    text-align: left;
    color: #2b2e38;
}

/* モーダル内コンテンツ */
.modal-inner h3{
    font-size: 16px;
    font-weight: bold;
    color: #553819;
    margin-bottom: 10px;
}
.modal-inner h3 span{
    background: linear-gradient(to bottom, transparent 75%, #fff158 25%);
}
.modal-inner p{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 0;
}
.benefit-modal-inner p span{
    font-weight: bold;
    color: #f00;
    font-size: 16px;
}
.modal-inner ul li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    list-style: none;
    padding-left: 0;
    list-style-type: disc;
    margin-left: 24px;
}

.modal-inner .line {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #DDD;
}

/*モーダルを閉じるボタンの指定*/
.modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    font-size: 25px;
    color: #95979c;
    cursor: pointer;
}

.benefit-text-wrap{
    text-align: center;
    margin-bottom: 40px;
}

.benefit-text{
    display: inline-block;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(to bottom, transparent 75%, #fff158 25%);
    cursor: pointer;
    transition: all ease-in-out .3s;
}

.benefit-text:hover{
    opacity: 0.8;
}

.benefit-modal-inner ul.list-check li{
    list-style: none;
    position: relative;
}

.benefit-modal-inner ul.list-check li:before {
    content: "";
    position: absolute;
    top: .1em;
    left: -15px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 5px;
    height: 10px;
    border-right: 3px solid #553819;;
    border-bottom: 3px solid #553819;;
}

.benefit-text span{
    font-size: 18px;
    color: #f00;
    margin: 0 3px;
}
.benefit-text .fa-question-circle{
    font-size: 20px;
}