@charset "UTF-8";

/* ----------------------------------------------- CSS Information
 Style Info:     よくある質問
 Notes:          
--------------------------------------------------------------- */
.content .wrap {
	width: 80%;
  max-width: 1225px;
  margin: 0 auto 15%;
}
.content .txt01 {
	text-align: center;
	margin: 0 auto 5%;
	color: #0080CB;
	font-size: 1.3em;
	font-weight: bold;
}
/* アコーディオン */
dl.accordion {
  width: 100%;
  margin: 0 auto;
}
dl.accordion dt::before {
  content: '';
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  float: left;
  background-image: url(../img/faq/plus.png);
  background-size: 100%;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.7em;
	right: 5em;
}
dl.accordion dt.open::before {
  content: '';
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  float: left;
  background-image: url(../img/faq/minus.png);
  background-size: 100%;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.7em;
	right: 5em;
}
dl.accordion dt {
  font-size: 1.2em;
}
dl.accordion dd {
  width: 100%;
}
.faq-box {
  width: 100%;
  margin: 0 0 3%;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid #AEAEAE;
  position: relative;
  cursor: pointer;
}
.faq-box .txt-q {
	width: 100%;
	margin: 0 auto;
  padding: 0.5em 7.5em 0.5em 6em;
  background-image: url(../img/faq/q.png);
  background-repeat: no-repeat;
  background-position: 4em 0.6em;
  background-size: 1.5em;
}
.faq-box .txt-a {
	width: 95%;
	margin: 0 auto;
  padding: 1.5em 7em 1.5em 7.5em;
  line-height: 2;
  background-image: url(../img/faq/a.png);
  background-repeat: no-repeat;
  background-position: 5em 1.2em;
	background-size: 1.7em;
	border-top: 1px solid #999;
	color: #666;
}
.faq-box .txt-a a {
  color: #BC091A;
}
.faq-wrap {
  margin: 0 auto 10%
}
/* ================= smartphone ================= */
@media only screen and (max-width:699px) {
.content .wrap {
  width: 90%;
}
.content .txt {
  text-align: left;
	margin: 0 auto 15%;
}
.content .txt01 {
  font-size: 1.1em;
}
dl.accordion dt {
  font-size: 1em;
}
.faq-box .txt-q {
  padding: 0.5em 2.5em 0.5em 2.5em;
  background-position: 0.7em 1em;
  background-size: 1em;
}
dl.accordion dt::before {
	top: 50%;
  right: 0.5em;
  transform: translateY(-50%) translateX(0);
  -webkit- transform: translateY(-50%) translateX(0);
  z-index: 2;
}
dl.accordion dt.open::before {
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) translateX(0);
  -webkit- transform: translateY(-50%) translateX(0);
  z-index: 2;
}
.faq-box .txt-a {
  width: 85%;
  margin: 0 0 0 0.5em;
  padding: 0.5em 0 0.5em 2em;
	background-position: 0.3em 1em;
	background-size: 1em;
}
}