@charset "utf-8";
/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
  display: none;
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-wrapper .modaal-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
}
.modaal-close:before{
    width: 27px;
    height: 32px;
    background: center / contain no-repeat url("../img/icon_close.svg");
    transform: rotate(0deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0;
}
.modaal-close:after{
    display: none;
}
/*
.modaal-close:after, 
.modaal-close:before{
    width: 2px;
    height: 35px;
    background: #FFF;
}
.modaal-close:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-65deg);
}
.modaal-close:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(65deg);
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}
*/
.modaal-wrapper .modaal-close.closeBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 179px;
    height: 44px;
    color: var(--sub-color);
    border: solid 1px var(--sub-color);
    border-radius: 30px;
    padding: 0 0 0 5px;
    position: relative;
    top: 0;
    margin: 30px auto 0;
}
.modaal-wrapper .modaal-close.closeBtn::before{
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    background: center / contain no-repeat url("../img/icon_arrow02.svg");
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.modaal-wrapper .modaal-close.closeBtn::after{
    display: none;
}
.modaal-container{
    width: 90%;
    max-width: 620px;
    margin: 0 auto;
    border-radius: 10px;
}
.modaal-content-container{
    padding: 0;
}
@media screen and (max-width: 428px) {
    .modaal-wrapper .modaal-close{
        width: 60px;
        height:  60px;
    }
}
/*ポップアップ*/
.modaalContent{
    padding: 60px 0;
    max-width: 420px;
    margin: 0 auto;
}
.modaalContent h4.title{
    text-align: center;
    margin: 0 0 30px;
}
.modaalContent p {
    font-size: 14px;
    letter-spacing: 0.05em;
}
.modaalContent p span{
    font-weight: bold;
    color: var(--sub-color);
}
.modaalContent p.lastText{
    text-align: left;
}
.modaalContent img{
    margin: 0 0 20px;
}
.modaalContent .moneyBox{
    margin: 20px 0 30px;
}
.optionInner-1 .moneyBox{
    position: relative;
    right: 20px;
}
.optionInner-1 .moneyBox p.money{
    font-size: 38px;
}
.optionInner-1 .moneyBox p.money span{
    font-size: 50px;
    color: #fc3f2b;
}
.moneyBox p.money span{
    font-weight: normal;
}
.optionInner-2 h4.title{
    line-height: 1;
}
.optionInner-2 div.moneyOther{
    border-top: none;
}
.optionInner-2 div.moneyOther dl{
    width: 100%;
}
.optionInner-2 div.moneyOther dl dd{
    font-size: 14px;
    font-weight: normal;
}
.optionInner-2 .moneyBox{
    margin: 0;
}
.optionInner-3 h4 + p{
    margin: 0 0 10px;
}
.optionInner-3 .moneyBox{
    margin: 0;
}
.optionInner-4 .textOther + p{
    margin: 0 0 10px;
}
.optionInner-4 p span{
    font-size: 16px;
    color: var(--text-color);
}
.optionInner-4 .moneyBox{
    margin: 0;
}
.optionInner-4 div.moneyOther{
    border-top: none;
}
.optionInner-4 div.moneyOther dl{
    width: 33.3%;
}
.optionInner-7 h4.title{
    line-height: 1.2;
}
.optionInner-7 p:nth-child(3){
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 0;
}
.optionInner-7 p:nth-child(3) span{
    color: #fc3f2b;
}
@media screen and (max-width: 428px) {
    .modaalContent{
        padding: 40px 20px;
    }
    .modaalContent p{
        font-size: 13px;
    }
    .optionInner-1 .moneyBox{
        right: 0;
    }
}