@charset "UTF-8";

/* *******************************************************************************************
* 
*	よくある質問
*
******************************************************************************************* */

.faq .inner{
	margin: 0 auto;
	padding: 30px 0 96px 0;
	width: 1024px;
}

@media screen and (max-width : 768px){
	.faq .inner{
		padding: 45px 18px 80px 18px;
		width: 100%;
		box-sizing: border-box;
	}
}

/* ----------------------------- ヘッダー ----------------------------- */

.faq_header{
	margin-bottom: 64px;
	text-align: center;
}
.faq_header_ttl{
	position: relative;
	margin-bottom: 24px;
	padding-bottom: 18px;
	color: #124a97;
	font-size: 33px;
	line-height: 53px;
	font-weight: 400;
	letter-spacing: 0.08em;
}
.faq_header_ttl:after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 40px;
	height: 4px;
	background: #124a97;
}
.faq_header_lead{
	font-size: 14px;
	line-height: 26px;
	font-weight: 400;
	letter-spacing: 0.08em;
}

@media screen and (max-width : 768px){
	.faq_header{
		margin-bottom: 30px;
	}
	.faq_header_ttl{
		margin-bottom: 14px;
		padding-bottom: 16px;
		font-size: 24px;
		line-height: 38px;
		letter-spacing: 0.08em;
	}
	.faq_header_ttl:after{
		width: 36px;
		height: 3px;
	}
}

div#un_cons_area {
    margin-bottom: 40px;
}

/* ----------------------------- タイトル ----------------------------- */

div.faq div.inner div.anchor_area {
  font-size: 0;
  text-align: center;
	margin-bottom: 10px;
}
div.faq div.inner div.anchor_btn {
  margin: 0 10px;
  display: inline-block;
}
div.faq div.inner div.anchor_btn a {
  color: #004ea2;
  width: 360px;
  padding: 15px 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #004ea2;
  display: block;
  position: relative;
  transition: all .2s ease;
}
div.faq div.inner div.anchor_btn a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #004ea2 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
div.faq div.inner div.anchor_btn a:hover {
  color: #fff;
  background-color: #004ea2;
}
div.faq div.inner div.anchor_btn a:hover::before {
  border-color: #fff transparent transparent transparent;
}
div.faq div.inner div.anchor_btn p {
  font-size: 16px;
}

@media screen and (max-width : 768px){
  div.faq div.inner div.anchor_area {
    font-size: 0;
  }
  div.faq div.inner div.anchor_btn {
    width: 48%;
    margin: 0;
  }
  div.faq div.inner div.anchor_btn + div.anchor_btn {
    margin-left: 10px;
  }
  div.faq div.inner div.anchor_btn a {
    color: #fff;
    width: 100%;
    padding-bottom: 25px;
    background-color: #004ea2;
  }
  div.faq div.inner div.anchor_btn a::before {
    border-width: 4.5px 4.75px 0 4.75px;
    border-color: #fff transparent transparent transparent;
    top: inherit;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  div.faq div.inner div.anchor_btn p {
    font-size: 14px;
    line-height: 1.4;
  }
}

div.faq div.inner div.each h4 {
  color: #004ea2;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 50px 0 23px;
}
/*----*/
div.each dl {
  margin-bottom: 10px;
  border: 1px solid #a8a8a8;
}
div.each dl:hover {
  background-color: #f5f5f5;
}
div.each dl dt {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}
div.each dl dd {
  display: none;
}

@media screen and (max-width : 768px){
 
  div.faq div.inner div.each h4 {
    font-size: 17px;
    margin: 0 0 17px;
    padding: 35px 0 0;
    text-align: left;
  }
  /*----*/
  div.each dl dt {
  padding: 15px;
  }
}

/* ----------------------------- アコーディオン ----------------------------- */

div.faq dl dt div {
  vertical-align: middle;
}
div.faq dl dt:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 1px;
  transform: rotate(90deg);
  background: #000;
  transition: all .3s ease-in-out;
}
div.faq dl dt:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 1px;
  background: #000;
  transition: all .3s ease-in-out;
}
/*----*/
div.each dl.open {
  background-color: #f5f5f5;
}
div.faq dl.open dt:before {
  transform: rotate(180deg);
  background: #000;
}
div.faq dl.open dt:after {
  opacity: 0;
}
/*----*/
div.faq dl dt div.accList_col {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
div.faq dl dd div.accList_col {
  padding: 20px;
  border-top: 1px solid #a8a8a8;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  text-align: justify;
  background-color: #fff;
  letter-spacing: 2px;
}
/*----*/
div.faq dl dd div a {
  display: inline-block;
  position: relative;
  margin-top: 2px;
  padding-left: 14px;
  text-decoration: none;
  border-bottom: 1px solid #000;
}
div.faq dl dd div a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 4.5px 0 4.5px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
div.faq dl dd div a:hover {
  text-decoration: none;
}

@media screen and (max-width : 768px){

  div.faq dl dt div.accList_col {
    width: 90%;
    font-size: 14px;
  }
  div.faq dl dd div.accList_col {
    font-size: 13px;
    padding: 15px;
  }
}

div.faq div.inner div.btn_area a {
  color: #000;
  width: 360px;
  padding: 15px 0;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  border: 1px solid #000;
  display: block;
  position: relative;
}
div.faq div.inner div.btn_area a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 5px 3.5px 0;
  border-color: transparent #000 transparent transparent;
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width : 768px){
  div.faq div.inner div.btn_area a {
    width: auto;
    padding: 22px 0;
  }
}