@charset "utf-8";
/*------------------------------------------------------------
	faq
------------------------------------------------------------*/
body {
	background-color: #F8F8F2;
}
#main .headLine01 .en {
	margin-right: 49px;
	width: 180px;
}
#main .mainImg {
	margin-bottom: 50px;
	border-radius: 5px;
	overflow: hidden;
}
#main .mainImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#main .faqList li {
	margin-bottom: 30px;
	position: relative;
	border-radius: 5px;
	background-color: #fff;
	transition: padding 0.3s ease;
}
#main .faqList li.on {
	padding-bottom: 20px;
}
#main .faqList li:last-child {
	margin-bottom: 0;
}
#main .faqList .h3Ttl {
	padding: 14px 20px 12px;
	font-size: 1.8rem;
	line-height: 1.778;
	font-weight: 400;
	cursor: pointer;
}
#main .faqList .h3Ttl::before,
#main .faqList .h3Ttl::after {
	width: 18px;
	height: 1px;
	position: absolute;
    right: 20px;
    top: 28px;
	background-color: #1A1818;
	transition: transform 0.3s ease;
	content: "";
}
#main .faqList .h3Ttl::after {
	transform: rotate(90deg);
}
#main .faqList li.on .h3Ttl::after {
	transform: rotate(180deg);
}
#main .faqList .innerBox {
	display: none;
	margin: 0 20px;
	padding: 13px 20px 11px;
	font-size: 1.6rem;
	line-height: 2;
	border-radius: 5px;
	background-color: #DFF0F7;
	overflow: hidden;
}
#main .faqList .innerBox .imgList {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
#main .faqList .innerBox p {
	margin-bottom: 11px;
}
#main .faqList .innerBox p:last-child {
	margin-bottom: 0;
}
#main .faqList .innerBox .imgList {
	margin-bottom: 20px;
}
#main .faqList .innerBox .imgList:last-child {
	margin-bottom: 9px;
}
#main .faqList .innerBox .imgList li {
	margin: 0;
	padding: 0;
	width: 160px;
	border-radius: 0;
	background: transparent;
}
#main .faqList .innerBox .imgList li img {
	width: 100%;
}
@media all and (min-width: 897px) {
	#main .faqList .h3Ttl {
		transition: opacity 0.3s ease;
	}
	#main .faqList .h3Ttl:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#pagePath {
		margin-bottom: 46px;
	}
	#main .headLine01 {
		margin: 0 0 42px;
	}
	#main .headLine01 .en {
		margin: 0 0 22px;
		width: 163px;
	}
	#main .content {
		padding: 0 10px;
	}
	#main .faqList .h3Ttl {
		padding: 14px 45px 12px 15px;
		position: relative;
	}
	#main .faqList .h3Ttl::before,
	#main .faqList .h3Ttl::after {
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
	#main .faqList .h3Ttl::after {
		transform: translateY(-50%) rotate(90deg);
	}
	#main .faqList li.on .h3Ttl::after {
		transform: translateY(-50%) rotate(180deg);
	}
	#main .faqList .innerBox {
		margin: 0 15px;
	}
	#main .faqList .innerBox .imgList {
		justify-content: space-between;
		gap: 17px 0;
	}
	#main .faqList .innerBox .imgList li {
		width: calc((100% - 17px) / 2);
	}
}