/*---------------よくあるご質問*/
#qa.page-title-out .page-title-text h3 {
	background-image: url("../img/faq/ic_pagetitle.png");
}
.qa {
	overflow: hidden;
}

/*タブ切り替え*/
.qa .tab_container {
  padding-bottom: 1em;
  background-color: #fff;
  margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.qa .tab_item {
	width: 24.5%;
  padding: 10px 0;
	height: 70px;
	border-radius: 35px;
  background-color: #ffe60a;
	color: #2c3d83;
  display: block;
  text-align: center;
	font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.2s ease;
	position: relative;
	cursor: pointer;
}
.qa .tab_item:last-child {
	margin-right: 0;
}
.qa .tab_item span {
	width: 100%;
  position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.qa .tab_item:hover {
  opacity: 0.7;
}
.qa input[name="tab_item"] {
  display: none;
}
.qa .tab_content {
  display: none;
	width: 100%;
  padding: 40px;
	margin-top: 40px;
	border: 1px solid #dddddd;
}
.qa #tab1:checked ~ #tab1_content,
.qa #tab2:checked ~ #tab2_content,
.qa #tab3:checked ~ #tab3_content,
.qa #tab4:checked ~ #tab4_content,
.qa #tab5:checked ~ #tab5_content{
  display: block;
}
.qa .tab_container input:checked + .tab_item {
  background-color: #2c3d83;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
	.qa .tab_item {
		width: 49%;
		margin: 0 0 10px;
	}
	.qa .tab_item:nth-last-of-type(2n) {
		margin-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.qa .tab_content {
		padding: 30px;
		margin-top: 20px;
	}
}
@media screen and (max-width: 480px) {
	.qa .tab_item {
		width: 100%;
		height: 60px;
		margin: 0 auto 10px;
	}
	.qa .tab_content {
		padding: 10px;
	}
}


/*アコーディオン*/
.qa .ac_wrap {
	max-width: 900px;
	margin: 0 auto 10px;
}
.qa .ac-check {
	display: none;
}
.qa .ac-label {
	border: 1px solid #2c3d83;
	background: #2c3d83;
	color: #ffffff;
	font-weight: 600;
	display: block;
	padding: 10px 30px 10px 20px;
	cursor: pointer;
	position: relative;
}
.qa .ac-label::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	transition: .3s;
}
.qa .ac-check[type=checkbox] + .ac-label::after {
	content: "+";
}
.qa .ac-check[type=checkbox]:checked + .ac-label::after {
	content: "ー";
}
.qa .ac-content {
	border: 1px solid #2c3d83;
	height: 0;
	opacity: 0;
	padding: 0 10px;
	transition: .5s;
	visibility: hidden;
}
.qa .ac-check:checked + .ac-label + .ac-content {
	height: auto;
	opacity: 1;
	padding: 5px 10px;
	visibility: visible;
}


/*Q&A中身*/
.qa .list_q_wrap {
	max-width: 800px;
	margin: 0 auto 40px;
}
.qa .list_q_wrap ul.list_q li {
	border-bottom: 1px dashed #cccccc;
	position: relative;
}
.qa .list_q_wrap ul.list_q li::after {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	background-image: url("../img/common/arrow_right.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.qa .list_q_wrap ul.list_q li a {
	display: block;
	color: #2c3d83;
	padding: 15px 40px 15px 10px;
	transition: .2s;
}
.qa .list_q_wrap ul.list_q li a:hover {
	background-color: #fff383;
}
.qa .faq_box {
	max-width: 800px;
	margin: 0 auto;
}
.qa .faq_box .dl_qa {
	padding: 20px 10px;
	margin: 0 auto;
	border-bottom: 3px dashed #cfe2ff;
}
.qa .faq_box:last-child .dl_qa {
	border-bottom: none;
}
.qa .faq_box .dl_qa dt {
	padding-left: 50px;
	color: #2c3d83;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
}
.qa .faq_box .dl_qa dt::before {
	content: "Q";
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #2c3d83;
	color: #ffffff;
	text-align: center;
	padding: 1px 0 0 3px;
	position: absolute;
	left: 0;
	top: 0;
}
.qa .faq_box .dl_qa dd {
	padding-left: 50px;
	position: relative;
}
.qa .faq_box .dl_qa dd::before {
	content: "A";
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #ffe60a;
	color: #2c3d83;
	text-align: center;
	font-weight: 600;
	padding: 1px 0 0 3px;
	position: absolute;
	left: 0;
	top: 0;
}
.qa .faq_box .dl_qa dd .link_text {
	color: #333333;
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.qa .faq_box .dl_qa dt::before {
		padding: 2px 0 0 1px;
	}
	.qa .faq_box .dl_qa dd::before {
		padding: 2px 0 0 1px;
	}
}
@media screen and (max-width: 480px) {
	.qa .faq_box .dl_qa dt::before {
		padding: 3px 0 0 1px;
	}
	.qa .faq_box .dl_qa dd::before {
		padding: 3px 0 0 1px;
	}
}




