@charset "utf-8";


.faq__list {
	margin: 60px 0;
	display: flex;
	justify-content: space-between;
}

.faq__list:last-child {
	margin-bottom: 0;
}

.faq__list__main {
	margin: 10px 0;
	background-color: rgba(0, 0, 0, .05);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: all 250ms ease;
}

.faq__list__main:hover {
	background-color: rgba(0, 0, 0, .1);
}

.faq__list__main.open {
	background-color: rgba(255, 126, 120, 1);
}

.faq__list__main.open:hover {
	background-color: rgba(255, 102, 95, 1);
}

.faq__list__title {
	margin-right: auto;
}

.faq__list__title__text {
	height: 70px;
	display: flex;
	position: sticky;
	top: 40px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
}

.faq__list__title__text:after {
	content: "";
	width: 100%;
	height: 2px;
	display: block;
	background-color: rgba(0, 0, 0, 1);
}

.faq__list__title__text .en {
	margin-right: 10px;
	font-size: 2.4rem;
	font-weight: normal;
	color: rgba(255, 126, 120, 1);
}

.faq__list__contents {
	max-width: calc(100% - 240px - 80px);
	flex-basis: calc(100% - 240px - 80px);
}

.faq__list__main__q {
	padding: 20px 60px;
	display: flex;
/* 	border-radius: 10px; */
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8;
	color: rgba(0, 0, 0, 1);
	transition: all 250ms ease;
}

.open .faq__list__main__q {
	color: rgba(255, 255, 255, 1);
}

/*
.faq__list__main__q:hover {
	background-color: rgba(0, 0, 0, .1);
}
*/

.faq__list__main__q:before {
	content: "Q";
	position: absolute;
	top: 14px;
	left: 30px;
	font-size: 2.4rem;
	font-family: "bebas_neue_semirounded", sans-serif;
	font-weight: normal;
	color: rgba(0, 0, 0, .3);
}

.open .faq__list__main__q:before {
	color: rgba(255, 255, 255, .5);
}

.faq__list__main__q:after {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background-image: url(../images/common/icon_arrow_b_bk_naked.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	right: 25px;
	top: 28px;
	transform-origin: center;
}

.open .faq__list__main__q:after {
	background-image: url(../images/common/icon_arrow_t_wt_naked.png);
	transform: rotate3d(0, 0, 1, 180deg);
}

.faq__list__main__a {
	height: 0;
	padding: 0 60px;
/* 	display: none; */
/* 	border-radius: 0 0 10px 10px; */
	position: relative;
	z-index: 0;
	color: rgba(0, 0, 0, 1);
	transition: all 250ms ease;
}

.open .faq__list__main__a {
	height: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	color: rgba(255, 255, 255, 1);
}

.faq__list__main__a:before {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: transparent;
	position: absolute;
	left: 0;
	top: -1px;
}

.open .faq__list__main__a:before {
	background-color: rgba(255, 255, 255, 1);
}


.main-body-text img{
	display: inline-block;
	margin: 5px;
	width: 49%;
}

@media screen and ( max-width: 960px ) {

	.faq__list {
		display: block;
	}

	.faq__list__contents {
		max-width: none;
	}

}


@media screen and ( max-width: 640px ) {

	.faq__list__title__text {
		height: auto;
		font-size: 1.6rem;
	}

	.faq__list__title__text .en {
		font-size: 2rem;
	}

	.faq__list__main__q {
		padding: 15px 30px;
		font-size: 1.5rem;
	}

	.faq__list__main__q:before {
		top: 11px;
		left: 14px;
		font-size: 2.2rem;
	}

	.faq__list__main__q:after {
		width: 12px;
		height: 12px;
		right: 14px;
		top: 22px;
	}

	.faq__list__main__a {
		padding-left: 30px;
		padding-right: 30px;
	}

	.main-body-text img{
		width: 100%;
	}

}


