/*=========
accordion
=========*/

/* フルHD表示についてはlayout.cssに記載 */

.accordion_waku{
  width:100% !important;
  margin:0 auto;
  max-width:800px;
  background-color: #f1f8ff;
  border-width: 2px;
  border-color: #ccc;
  border-style:solid;
  -webkit-border-radius: 20px;/* for Safari and Chrome */
  -moz-border-radius: 20px; /* for Firefox */
  -o-border-radius: 20px; /* for opera */
  border-radius: 20px;
  box-shadow:0 0 10px rgba(0,0,0,.2);
}

.accordion_area {margin-bottom:0; text-align:left !important; width:100%;}

.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border-width: 0 0 2px 0;
  border-color: #ccc;
  border-style:solid;
  padding:1em 4rem .5em 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
  
}

.accordion_area:first-child .accordion_one .ac_header {
  background-color: #ffffff;
  border-width: 0 0 2px 0;
  border-color: #ccc;
  border-style:solid;
  padding:1em 4rem .5em 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
  border-radius: 18px 18px 0 0;
}

.accordion_area:last-child .accordion_one .ac_header {
  background-color: #ffffff;
  border-width: 0 0 0 0;
  border-color: #ccc;
  border-style:solid;
  padding:1em 4rem .5em 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
  border-radius: 0  0 18px  18px;
}

.accordion_area:last-child .accordion_one .ac_inner {

  border-width: 2px 0 0 0;
  border-color: #ccc;
  border-style:solid;
  border-radius: 0  0 18px  18px;
}


.accordion_area:only-child .accordion_one .ac_header {
  border-radius: 18px 18px 18px  18px;
}



.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #FFF;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #FFF;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #014897;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #014897;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5em 2rem 1em 2rem;
  border-left: 0px solid #ccc;
  border-right: 0px solid #ccc;
  border-bottom: 0px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 900px) {

  .accordion_area {width:100%;}

  .accordion_area .accordion_one .ac_header,.accordion_area:first-child .accordion_one .ac_header,.accordion_area:last-child .accordion_one .ac_header {
    padding: 1em 2rem .5em 1.0rem;
  }


  .accordion_area:only-child .accordion_one .ac_header, .accordion_area:only-child .accordion_one .ac_header {
    padding: 1em 2rem .5em 1.0rem;
  }


  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 1.5em 1.5rem 1em 1.5rem;
  }
}

/*=========
faq
=========*/

.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q";
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  width:30px;
  height:30px;
  text-align:center;
  padding-top:5px;
  line-height:1;
  background-color:#09357f;
  border-radius:30px;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 2rem;
}
@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }
  .p-faq__headinner::before {
    font-size: 14px;
	width:20px;
  	height:20px;
  	padding-top:3px;
  	
  }
  .p-faq__headinner p.p-faq__q-txt {
    /*font-size: 1.4rem; */
  }
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  content: "A";
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  width:30px;
  height:30px;
  text-align:center;
  padding-top:5px;
  line-height:1;
  background-color:#de0000;
  border-radius:30px;
}
.p-faq__bodyinner p.p-faq__a-txt {
  /*font-size: 2rem;*/
}
@media screen and (max-width: 736px) {
  .p-faq__bodyinner {
    padding-left: 25px;
  }
  .p-faq__bodyinner::before {
    font-size: 14px;
	width:20px;
  	height:20px;
  	padding-top:3px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    /*font-size: 1.4rem;*/
  }
}


}


