@charset "utf-8";
/* CSS Document */

.faq-container {
	margin-top: 45px;
}

/*追記(2019.06.07)*/

.faqLink{
	width: 30%;
	padding-right: 30px;
}

.faqLink li{
	padding: 15px 5px;
	border-bottom: 1px dashed #ddd;
}

.faqLink a{
	color: #333;
	display: block;
}

.faqLink a:hover{
	color: #e5925d;
}

.faqArea01{
	margin-bottom: 40px;
}

.faqArea01 h4{
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5px;
}

.accordionbox {
  width: 70%;
}

.accordionlist dt {
  display: block;
  background: #fcf8f0;
  padding: 10px 45px 10px 20px;
}

.accordionlist dt:first-child {
  border-top: none !important;
}

.accordionlist dt .title {
  padding-left: 10px;
  float: left;
}

.accordionlist dd {
  display: none;
  background: #fff;
  padding: 0 0 20px 50px;
}

.accordionlist .space01{
  padding-top: 15px;
}

.accordion1 {
  position: relative;
  margin-bottom: 11px;
  cursor: pointer;
}

.plustitle {
  display: inline-block;
}

.plustitle p {
  font-size: 17px;
}

.plustitle2 {
  font-size: 16px;
  padding-top: 15px;
  width: 94%;
}

.plustitle2 span{
	margin-top: 10px;
  display: inline-block;
}

.plustitle2 a{
  color: #e8a579;
  padding: 5px 20px;
  border: 1px solid #e8a579;
  border-radius: 20px;
  display: block;
}

.plustitle2 a:hover{
  color: #fff;
	background: #e8a579;
  border: 1px solid #e8a579;
}

.plustitle1 {
  font-size: 30px;
  color: #e5925d;
  width: 30px;
  margin-right: 10px;
  display: inline-block;
}

.plusText01{
  display: inline-block;
  width: calc(100% - 40px);
  padding-top: 15px;
}

.plustitle3{
  font-size: 30px;
	color: #e38a80;
  padding-right: 10px;
}

@media screen and (max-width: 767px){
	.faqLink{
		width: 100%;
		float: none;
    padding-right: 0;
		padding-bottom: 40px;
	}
	.faqLink li{
		float: left;
		border: none;
    padding: 10px 5px;
	}
	.faqLink a{
		color: #fff;
		padding: 5px 20px;
		background: #e8a579;
		border-radius: 20px;
	}
	.faqLink a:hover{
		color: #fff;
	}
	.accordionbox{
		width: 100%;
		float: none;
	}
	.faqArea01{
		padding-top: 50px;
		margin: -50px 0 40px;
	}
  .faqArea01 h4{
    font-size: 16px;
  }
  .accordionlist dd{
    padding: 0 0 20px 22px;
  }
  .plustitle p{
    font-size: 14px;
  }
  .plustitle1{
    font-size: 20px;
    width: 20px;
  }
  .plusText01{
    width: calc(100% - 30px);
    padding-top: 10px;
  }
  .plustitle2{
    font-size: 14px;
    width: 92%;
    padding-top: 8px;
  }
  .plustitle3{
    font-size: 20px;
		width: 5%;
		padding-right: 5px;
  }
}

@media screen and (max-width: 450px){
	.plustitle3{
		width: 8%;
  }
}

/*アイコンプラスマイナス*/
.accordion_icon,
.accordion_icon span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #e5925d;
}

.accordion_icon {
  position: relative;
  width: 30px;
  height: 15px;
  margin: auto;
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
}

.accordion_icon span {
  position: absolute;
  left: 6px;
  width: 50%;
  height: 2px;
  background-color: #e5925d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
}

.accordion_icon span:nth-of-type(1) {
  top: 5px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.accordion_icon span:nth-of-type(2) {
  top: 5px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

/*＋、－切り替え*/
.accordion_icon.active span:nth-of-type(1) {
  display: none;
}

.accordion_icon.active span:nth-of-type(2) {
  top: 5px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}