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

#faq_wrapper{
	max-width: 1980px;
	background: url("../../img/faq_page_bg.svg");
	background-position: center;
	background-repeat: repeat;
	background-size:cover;
	padding: 100px;
}

/* faq_title */
#faq_wrapper .faq_title{
	margin: 0 auto;
}
#faq_wrapper .faq_title img{
	text-align: center;
	margin: 0 auto;
}

/* faq_contents */
#faq_wrapper .faq_box{
	display: flex;
	flex-direction: column;
}
.question_balloon{
	position: relative;
	display: inline-block;
	margin: 1.5em 0;
	min-width: 120px;
	max-width: 650px;
	color: #555;
	font-size: 16px;
	background: #932A13;
}
.question_balloon:before {
	content: "";
	position: absolute;
	bottom:-45px;
	right: 10%;
	margin-left: -15px;
	border: 20px solid transparent;
	border-top: 40px solid #932A13;
	-webkit-transform: rotate(-25deg);
	transform: rotate(-25deg);
}
#faq_wrapper .question_box{
	flex-wrap: nowrap;
	border-radius: 30px;
	padding: 20px;
	align-items: center;
}
#faq_wrapper  .icon_question{
	width: 60px;
}
#faq_wrapper  .icon_question img{
	width: 60px;
	height: 60px;
	max-width: 100%;
}
#faq_wrapper .text_question{
	width: calc(100% - 60px);
}
#faq_wrapper .text_question p {
	color:#fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	margin-left: 10px;
	padding: 10px;
	position: relative;
}

#faq_wrapper .answer_box{
	width: 80%;
	background: #fff;
	border: 2px solid #932A13;
	padding: 50px;
	border-radius: 20px;
	align-self: flex-end;
	margin-top: 10px;
}
#faq_wrapper .answer_main{
	align-items: center;
	border-bottom: 2px solid #932A13;
	padding-bottom: 20px;
	gap:20px;
}
#faq_wrapper .column{
	flex-direction: column;
}
#faq_wrapper .chart-item{/*円グラフがスマホでつぶれないようにする*/
	position: relative;
	width:100%;
	height:250px;
}
#faq_wrapper .chart-area{
	width: 250px;
	position: relative;
}
#faq_wrapper .image-area{
	width: 40%;
}
#faq_wrapper .text-area{
	width:calc(100% - 250px);
}
#faq_wrapper .text-area-all{
	width:100%;
}
#faq_wrapper .text-area p,
#faq_wrapper .text-area-all p{
	line-height: 2;
	text-align: justify;
}
#faq_wrapper .answer_65{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}
#faq_wrapper .answer_voice{
	padding-top: 20px;
}
#faq_wrapper .answer_voice h3 img{
	margin: 0 auto;
	text-align: center;
}
#faq_wrapper ul.answer_voice_flexbox{
	gap:20px;
	margin-top: 20px;
}
#faq_wrapper ul.answer_voice_flexbox li{
	flex: 1;
	font-size: 15px;
	font-weight: 700;
	text-align: justify;
	line-height: 1.6;
	padding: 30px;
	border-radius: 10px;
}

@media screen and (max-width: 599px){
	#faq_wrapper{
		padding:60px 30px;
	}
	/* faq_contents */
	.question_balloon{
		margin: 1.5em 0;
		font-size: 15px;
	}
	#faq_wrapper .question_box{
		border-radius: 20px;
		padding: 10px;
	}
	#faq_wrapper  .icon_question{
		width: 40px;
	}
	#faq_wrapper  .icon_question img{
		width: 40px;
		height: 40px;
	}
	#faq_wrapper .text_question{
		width: calc(100% - 40px);
	}
	#faq_wrapper .text_question p {
		font-size: 18px;
		line-height: 1.4;
	}
	#faq_wrapper .answer_box{
		width: 100%;
		padding: 20px;
	}
	#faq_wrapper .answer_main{
		flex-direction: column;
	}
	#faq_wrapper .image-area{
		width: 100%;
	}
	#faq_wrapper .text-area{
		width:100%;
	}
	#faq_wrapper .text-area-all{
		width:100%;
	}
	#faq_wrapper .answer_voice{
	padding-top: 20px;
	}
	#faq_wrapper ul.answer_voice_flexbox{
		flex-wrap: wrap;
		gap:10px;
	}
	#faq_wrapper ul.answer_voice_flexbox li{
		flex:auto;
		width: 100%;
		font-size: 14px;
		padding: 10px;
	}
}