@charset "utf-8";
.ContentPageH1{
	background-image: url(../image/faq.png);
}
h2{
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
	color:#5e5757;
	margin: 45px 0 15px 0;
	position: relative;
}

h2::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%; 
	transform: translate(-50%); 
	width: 30px;
	height: 2px; 
	background-color: rgba(94,87,87,0.3);
}
.documentArea{
	padding: 10px;
}
h3{
	font-size: 1.5rem;
}

.faq_faqAccordion summary {
	cursor: pointer; /* カーソルをポインタに変更 */
	padding: 5px 5%;
	display: block;
	position: relative;
	font-size: 1.2rem;
	font-weight: 600;
}
.faq_faqAccordion p {
	padding: 0 10px; 
	margin: 5px 0 0 5%;
	letter-spacing: .1rem;
}
.faq_faqAccordion summary::after {
content: '';
display: inline-block;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #4d4c4c;
transform: rotate(180deg);
transition:.5s;
position: absolute;
right: 0;
margin:5px 4% 0 0;
}
.faq_faqAccordion details[open] summary{
  padding-bottom: 0;
  transition:.3s;
}
.faq_faqAccordion details[open] summary::after {
transform: rotate(0deg);
transition:.5s;
}
.faq_image{
	width: 90%;
	margin: 5px 0 0 5%;
	border-radius: 10px;
}
.faq_bold{
	font-weight: bold;
}