@charset "utf-8";

.content{
   background: var(--color-lightblue);
}

/* シミュレーション
--------------------------------------------*/
.price-wrap{
   max-width: 1020px;
   border-radius: 30px;
   padding: 60px 50px;
   margin: auto;
   background: #fff;
}
.price-q__title{
   font-size: 2.6rem;
   text-align: center;
   margin-bottom: 30px;
}
.price-q__list{
   display: flex;
   flex-wrap: wrap;
   justify-content:space-between;
   margin: 0 0 30px;
   padding: 0;
}
.price-q__list::after {
   display: block;
   content:"";
   width: 32%;
}
.price-q__item{
   width: 32%;
   margin: .8% 0;
   list-style: none;
}

.price-q__item label{
   cursor: pointer;
   font-size: 1.1em;
   font-weight: 600;
}
.price-q__item label input {
   position: absolute;
   opacity: 0;
   height: 0;
}
.price-q__item label span {
   color: #555;
   z-index: 1;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   box-sizing: border-box;
   padding: 15px 12px;
   border-radius: 10px;
   border: 4px solid #ddd;
}
.price-q__item label input:checked +span {
   color: var(--color-blue);
   border-color: var(--color-blue);
}
.price-q__item label span::before {
   content: "";
   position: relative;
   top: 1px;
   margin-right: 5px;
   width: 28px;
   height: 28px;
   background: url("../img/price/icon_checkbox01.svg") no-repeat center;
   background-size: cover;
}
.price-q__item label input:checked +span::before {
   background: url("../img/price/icon_checkbox02.svg") no-repeat center;
   background-size: cover;
}

.price-q__btn{
   width: 380px;
   margin: auto;
}
.price-q__btn button{
   width: 100%;
   height: 65px;
   cursor: pointer;
   border-radius: 6px;
   color: #fff;
   font-size: 1.2em;
   font-weight: 600;
   background: var(--color-aqua);
   border: 0;
}

.price-q__err{
   width: 380px;
   margin: auto;
}

.price-q__err p{
   color: #ff0000;
   text-align: center;
}

@media screen and (max-width: 767px) {
   .price-wrap{
      margin: 0 15px;
      padding: 25px 15px;
      border-radius: 14px;
   }
   .price-q__title {
      font-size: 1.7rem;
      line-height: calc(26 / 18);
      margin-bottom: 20px;
   }
   .price-q__list{
      flex-flow: column;
      margin: 0 15px 30px;
   }
   .price-q__item{
      width: 100%;
   }
   .price-q__btn{
      width: 90%;
   }
   
   .price-q__item label span{
      padding: 10px 12px;
      border-width: 3px;
   }
   .price-q__item label span::before{
      width: 22px;
      height: 22px;
   }
}

/* シミュレーション結果
--------------------------------------------*/
.price-a{
   position: relative;
   margin-top: 70px;
   border-radius: 15px;
   overflow: hidden;
   border: 2px solid var(--color-blue);
}
.price-a__title{
   color: #fff;
   text-align: center;
   font-size: 2.2rem;
   margin: 0;
   padding: 20px;
   background: var(--color-blue);
}
.price-a__inner{
   padding: 40px;
   max-width: 800px;
   margin: auto;
}
.price-a__block{
   margin-bottom: 30px;
   padding-bottom: 20px;
   border-bottom: 1px solid #ddd;
}
.price-a__block-tit{
   color: var(--color-blue);
   margin-bottom: 15px;
}
.price-a__table{
   width: 90%;
   margin: auto;
   vertical-align: middle;
}
.price-a__table th{
   position: relative;
   text-align: left;
   font-weight: normal;
   padding-left: 14px;
}
.price-a__table th::before {
   position: absolute;
   content: "";
   background-color: var(--color-blue);
   width: 0.7rem;
   height: 0.7rem;
   border-radius: 100px;
   top: 0.5lh;
   left: 0;
}
.price-a__table td{
   width: 20%;
   text-align: right;
}
.price-a__table td .price{
   color: #eb1010;
   font-size: 1.25em;
   font-weight: 700;
}
.price-a__table td .en{
   font-size: .85em;
}
.price-a__btn{
   margin-top: 30px;
}
.kome{
   font-size: .9em;
   color: #666;
}
@media screen and (max-width: 767px) {
   .price-a{
      border-radius: 10px;
   }
   .price-a__title{
      font-size: 1.8rem;
      padding: 15px;
   }
   .price-a__inner{
      padding: 20px 22px 28px;
   }
   .price-a__block {
      margin-bottom: 25px;
      padding-bottom: 15px;
   }
   .price-a__block-tit{
      margin-bottom: 8px;
   }
   .price-a__table{
      width: 100%;
   }
   .price-a__table th,
   .price-a__table td{
      width: 100%;
      display: block;
   }
   .price-a__table th::before {
      top: 0.4lh;
   }
   .price-a__table td{
      text-align: left;
      padding-bottom: .5em;
      padding-left: 14px;
   }
   .price-a__btn .btn{
      width: 100%;
   }
}




