@charset "UTF-8";

.vermin-box {
	padding-top: 51px;
	margin-bottom: 30px;
}
.vermin-box img {
	width: 100%;
	vertical-align: bottom;
}
.qa_section {
	padding: 50px;
}
.qa_section .qa_box {
	margin-top: 70px;
}
.qa_section .qa_box dl {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 10px;
}

.qa_section .qa_box dt {
	font-size: 24px;
	margin-bottom: 10px;
    cursor: pointer;
    background-color: #FFFFFF;
    padding: 10px;
    font-weight: bold;
    position: relative;
	border-radius: 10px;
	display: flex;
	align-items: center;
}
.qa_section .qa_box dt:before {
	content: "Q";
	color: #0E98DD;
	font-size: 40px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.qa_box dt::after {
    content: '+'; /* 初期状態で「+」を表示 */
    position: absolute;
    right: 10px; /* 右端に表示 */
	font-size: 30px;
    font-weight: normal;
    color: #007BFF;
    transition: transform 0.3s;
}

.qa_box dt.active::after {
    content: '-'; /* 開いた状態で「-」に切り替え */
	font-size: 30px;
	font-weight: normal;
}


.qa_section .qa_box dd {
	position: relative;
	font-size: 22px;
	line-height: 1.4;
    margin: 0;
	padding-top: 20px;
	padding-left: 55px;
	padding-right: 20px;
	padding-bottom: 20px;
    background-color: #CFEAF8;
    display: none; /* 初期状態では非表示 */
}
.qa_section .qa_box dd:before {
	position: absolute;
	top: 1px;
	left: 14px;
	content:"A";
	color: #E74939;
	font-size: 40px;
	margin-right: 20px;
}
