@charset "UTF-8";
/* CSS Document */

/*----- PAGE-HEADER -----*/

.page-header{
	background-image: url("../../../images/_assets-page/faq/img-cover-sp.webp");
}

@media screen and (min-width: 768px) {
	
	.page-header{
		background-image: url("../../../images/_assets-page/faq/img-cover-pc.webp");
	}
	
}

/*----- PAGE-CONTENT -----*/

#faq div.content{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:10px;
}

@media screen and (min-width: 768px) {
	
	#faq div.content{
		padding:20px;
	}
	
}

/*----- TAB-CONTENT -----*/

.tab{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.tab div.tab-child{
	width:50%;
	
	font-size:1.25rem;
	line-height:30px;
	
	text-align: center;
	
	box-sizing: border-box;
	padding:10px 0;
	
	background-color:#dfd0d2;
	color:#5f161d;
	
	transition:0.25s;
}

.tab div.tab-child:hover{
	cursor: pointer;
	opacity: 0.75;
}

.tab div.tab-child.active{
	background-color:#5f161d;
	color:#fff;
}

.tab div.tab-child span.note{
	display:block;
	
	font-size:0.8rem;
	line-height:20px;
}

.tab-content{
	width:100%;
	
	background-color:#fff;
	color:#000;
}

.tab-content-child {
    display: none;
	
	width:100%;
	
	box-sizing: border-box;
	padding:10px;
	border:solid 5px #5f161d;
}

.tab-content-child.show {
    display: block;
}

.tab-content-child div.row{
	width:100%;
	margin-bottom:10px;
	
	font-size:1.0rem;
	line-height:1.75em;
	
	box-sizing: border-box;
	padding:9px;
	border:solid 1px #5f161d;
	
	position: relative;
}

.tab-content-child div.row:last-child{
	margin-bottom:0;
}

.tab-content-child div.row h6{
	width:100%;
	position: relative;
	
	box-sizing: border-box;
	padding:5px;
	padding:0 40px;
}

.tab-content-child div.row h6:hover{
	cursor: pointer;
}

.tab-content-child div.row h6::before{
	display:block;
	content:"Q";
	
	width:30px;
	height:30px;
	
	font-size:0.8rem;
	line-height: 30px;
	
	background-color:#5f161d;
	color:#fff;
	
	text-align: center;
	
	position: absolute;
	top:0;
	left:0;
}

.tab-content-child div.row h6 span.toggle{
	display:block;
	
	width:30px;
	height:30px;
	
	background-color:#f0f0f0;
	
	position: absolute;
	top:0;
	right:0;
}

.tab-content-child div.row h6 span.toggle::before{
	display:block;
	content:"";
	
	width:30px;
	height:30px;
	
	background-color:transparent;
	
	background-image: url("../../../images/_assets-page/faq/icon_arrow-faq.webp");
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center;
	
	position: absolute;
	top:0;
	right:0;
	
	transition: 0.5s;
}

.tab-content-child div.row h6.active span.toggle::before{
	transform: rotate(180deg);
}

.tab-content-child div.row nav{
	display:none;
	
	width:100%;
	margin-top:10px;
	
	position: relative;
	
	box-sizing: border-box;
	padding-left:40px;
	
	/*background-color:#f8f8f8;*/
	color:#222;
	
	font-size:0.8rem;
	line-height:1.75em;
}

.tab-content-child div.row nav::before{
	display:block;
	content:"A";
	
	width:30px;
	height:30px;
	
	line-height: 30px;
	
	background-color:#fd5e53;
	color:#fff;
	
	text-align: center;
	
	position: absolute;
	top:0;
	left:0;
}

@media screen and (min-width: 768px) {
	
	.tab-content-child {
		padding:20px;
	}
	
	.tab-content-child div.row{
		margin-bottom:20px;
	}
	
}
