@charset "utf-8";


/* tab-wrap */
.tab-wrap{
  margin:30px 0;
}

/* tab-list1 */
.tab-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab-list li{
  border:solid 1px #ccc7c2;
  width:250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding:10px;
  transition: 0.3s;
}

.tab-list li:first-child{
  border-radius: 10px 0 0 10px;
}

.tab-list li:last-child{
  border-radius: 0 10px 10px 0;
}

.tab-list li + li{
  border-left:none;
}


.tab-list li .text{
  text-align: center;
  font-size: 15px;
  transition:0.3s;
  /*font-weight: bold;*/
}

.tab-list li.active{
  background:#F1651F;
}

.tab-list li.active .text{
  color:#fff;
}

@media (min-width: 768px) {
  .tab-list li:hover{
    background:#F1651F;
    cursor: pointer;
  }

  .tab-list li:hover .text{
    color:#fff;
  }
}

/* qa-wrap */
.qa-wrap{
  margin:30px 0;
}

/* qa-box */
.qa-box{
  display: none;
}

.qa-box.active{
  display: block;
}

/* qa-ca */
.qa-caption{
  margin-bottom:30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}

/* qa-list */

.qa-list{

}

.qa-list.active{
  display: block;
}

.qa-list li{
  border-top:solid 1px #DFDFDF;
  border-bottom:solid 1px #DFDFDF;
}

.qa-list li + li{
  border-top:none;
}


.qa-list li .q-cont{
  padding:15px 35px;
  background: #F3F3F3;
  position: relative;
}

.qa-list li .q-cont .text{
  font-size: 16px;
}

.qa-list li .q-cont:before{
  display: block;
  content:'Q';
  font-size:16px;
  font-weight:bold;
  color:#F1651F;
  position: absolute;
  top:15px;
  left:15px;
}

.qa-list li .q-cont:after{
  display: block;
  content:'';
  width:16px;
  height:16px;
  background:url('/user/img/helptop/arrow-top.svg')no-repeat;
  background-size:contain;
  position: absolute;
  top:0;
  bottom:0;
  margin:auto 0;
  right:15px;
  -moz-transform: scale(1,-1);
  -webkit-transform: scale(1,-1);
  -o-transform: scale(1,-1);
  -ms-transform: scale(1,-1);
  transition: 0.3s;
}
.qa-list li .q-cont.open:after{
  -moz-transform: scale(1,1);
  -webkit-transform: scale(1,1);
  -o-transform: scale(1,1);
  -ms-transform: scale(1,1);
}

.qa-list li .a-cont{
  max-height: 0;
  overflow: hidden;
}

.qa-list li .a-cont-detail{
  padding:15px 10px 15px 35px;
  position: relative;
}

.qa-list li .a-cont-detail:before{
  display: block;
  content:'A';
  font-size:16px;
  font-weight:bold;
  color:#5EC8F2;
  position: absolute;
  top:15px;
  left:15px;
}

.qa-list li .a-cont-detail .ttl{
  font-size:16px;
}

.qa-list li .a-cont-detail .cont{
  margin-top:10px;
  line-height: 1.6;
}

.qa-list li .a-cont-detail .cont p + p{
  margin-top:10px;
}

@media (min-width: 768px) {
  .qa-list li .q-cont:hover{
    cursor: pointer;
  }
}


.contact-area{
  margin-top:30px;
  border:solid 2px #ccc7c2;
}

.contact-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding:20px;
}

.contact-text{
  font-size: 15px;
}

.contact-btn{
  margin-left:40px;
}

.contact-btn a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width:220px;
  height:42px;
  background:rgb(0,170,238);
  color:#fff;
  border-radius: 5px;
  position: relative;
  border:solid 1px rgba(255,255,255,0);
}
.contact-btn a:after{
  content: '';
  display: block;
  width:12px;
  height:12px;
  background:url('/user/img/helptop/arrow-w.svg') no-repeat center center;
  background-size:contain;
  margin-left:7px;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .contact-btn a:hover{
    background:#fff;
    color:rgb(0,170,238);
    border:solid 1px rgb(0,170,238);
    text-decoration: none;
    opacity: 1;
  }
  .contact-btn a:hover:after{
    background-image:url('/user/img/helptop/arrow-b.svg');
  }
}


/*--------------------------------------
   sp
----------------------------------------*/

@media screen and (max-width:767px) {

  /* qa-ca */
  .qa-caption{
    margin-bottom:30px;
    font-size: 14px;
    text-align: left;
  }

  .tab-list li{
    padding:7px;
    width:50%;
  }

  .tab-list li .text{
    font-size: 95%;
  }

  .qa-list li .q-cont .text{
    font-size: 14px;
  }

  .qa-list li .a-cont-detail .ttl{
    font-size: 14px;
  }


  .contact-inner {
    display: block;
    padding: 15px;
  }

  .contact-text{
    font-size: 13px;
    text-align: center;
  }

  .contact-btn{
    margin-left: 0;
    margin-top: 15px;
  }
  .contact-btn a{
    width: 100%;
    max-width:500px;
    margin :0 auto;
  }
}


@media screen and (min-width: 768px){	
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 767px){	
  .pc { display:none; }
  .sp { display:block; }
}

.tbl-flg {
    width: 100%;
  }

table {
  margin: 0 auto;
}
.tbl-flg th {
  background: #ccc;
  border: solid 1px #717171;
  color: #505050;
  padding: 10px;
  width: 25%;
}
.tbl-flg td {
  border: solid 1px #717171;
  padding: 10px;
}
 
@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #717171;
    width: 100%;
  }
  .tbl-flg {
    width: 100%;
  }
  .tbl-flg th,
  .tbl-flg td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
}

.ttl p{
    margin: 15px 0 10px 0;
}

.step1 p,
.step2 p,
.step3 p,
.step4 p,
.step5 p{
margin:20px 0 5px 0;
}

.step1 img,
.step2 img,
.step3 img,
.step4 img,
.step5 img{
border: solid 1px #ccc7c2;
}

@media (min-width: 768px){
.step1,
.step2,
.step3,
.step4,
.step5{
    height: 160px;
}

.step1 p,
.step2 p,
.step3 p,
.step4 p,
.step5 p{
float:left;
width: 50%;
font-size: 16px;
}

.step1 img,
.step2 img,
.step3 img,
.step4 img,
.step5 img{
float:right;
width: 45%;
border: solid 1px #ccc7c2;
}
}

.qa-box p{
margin:10px 0
}

.menu{
    text-align: center;
	margin-bottom: 20px;
	font-size: 16px;
}

.anchorlink:after{
	content: '|';
	color: #000;
    margin: 0 10px;
}

#yokuaru,
#oubo,
#senkou,
#sousa{
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.kome{
    margin-top: 5px;
    font-size: 13px;
}

.qa-link{
  color: initial;
}

.qa-link:visited{
  color: initial;
}