/*---------------よくあるご質問*/
#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;
}
.qa .tab_item {
	width: 19.5%;
	margin-right: 0.5%;
  padding: 10px 0;
	height: 50px;
	border-radius: 10px;
  background-color: #0077ff;
	color: #ffffff;
  display: block;
  text-align: center;
	font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.2s ease;
	position: relative;
}
.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: #ffe60a;
  color: #0077ff;
}
@media screen and (max-width: 991px) {
	.qa .tab_item {
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.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%;
		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 #0077ff;
	background: #0077ff;
	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 #0077ff;
	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 60px;
}
.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: #0077ff;
	padding: 15px 40px 15px 10px;
	transition: .2s;
}
.qa .list_q_wrap ul.list_q li a:hover {
	background-color: #fffad9;
}
.qa .faq_box {
	border-bottom: 3px dashed #cfe2ff;
	padding: 0 30px 10px;
	max-width: 800px;
	margin: 0 auto 40px;
}
.qa .faq_box .item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto 30px;
}
.qa .faq_box .item.item_a {
	flex-direction: row-reverse;
}
.qa .faq_box .item .item-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-position: center center;
	background-size: contain;
}
.qa .faq_box .item.item_q .item-img {
	background-color: #d2eeff;
}
.qa .faq_box .item.item_a .item-img {
	background-color: #fff383;
}
.qa .faq_box .item.item_q .item-img.q01 {
	background-image: url("../img/faq/ic_q01.png");
}
.qa .faq_box .item.item_q .item-img.q02 {
	background-image: url("../img/faq/ic_q02.png");
}
.qa .faq_box .item.item_q .item-img.q03 {
	background-image: url("../img/faq/ic_q03.png");
}
.qa .faq_box .item.item_q .item-img.q04 {
	background-image: url("../img/faq/ic_q04.png");
}
.qa .faq_box .item.item_a .item-img {
	background-image: url("../img/faq/ic_a.png");
}
.qa .faq_box .item .item-text {
	width: calc(100% - 140px);
	padding: 20px 30px;
	border-radius: 10px;
	position: relative;
}
.qa .faq_box .item.item_q .item-text {
	background-color: #c0eaff;
}
.qa .faq_box .item.item_q .item-text::before {
	content: "";
	display: block;
	border-right: 15px solid #c0eaff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	position: absolute;
	top: 20px;
	left: -15px;
}
.qa .faq_box .item.item_a .item-text {
	background-color: #fffab4;
}
.qa .faq_box .item.item_a .item-text::before {
	content: "";
	display: block;
	border-left: 15px solid #fffab4;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	position: absolute;
	top: 20px;
	right: -15px;
}
.qa .faq_box .item .item-text .question {
	font-weight: 600;
	letter-spacing: 0.1em;
}
.qa .faq_box .item .item-text .answer {
	line-height: 1.8;
}
.qa .faq_box .item .item-text .link_text {
	text-decoration: underline;
}
.qa .section_inner.inner02 {
	margin-top: 60px;
}
@media screen and (max-width: 768px) {
	.qa .faq_box {
		padding: 10px;
	}
	.qa .faq_box .item .item-img {
		width: 80px;
		height: 80px;
	}
	.qa .faq_box .item .item-text {
		width: calc(100% - 110px);
		padding: 20px;
	}
}
@media screen and (max-width: 480px) {
	.qa .faq_box .item .item-img {
		width: 60px;
		height: 60px;
	}
	.qa .faq_box .item .item-text {
		width: calc(100% - 80px);
		padding: 20px;
	}
}




