.toggle_title {
	font-weight: bold;
	line-height: 42px;
	margin: 0;
	padding: 0 0 0 10px;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
    font-family: serif;
    font-weight: 400;
    font-size: 24px;
}
.btn_txt:after {
	content: "";
	display: inline-block;
	position:absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%) rotate(180deg);
	transition: 0.2s;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #bf9d5b;
}
.btn_txt.selected:after {
	transform: translateY(-50%) rotate(0deg);
	transition: 0.2s;
}
.toggle_txt {
	display: none;
    text-align: left;
    font-size: 17px;
    line-height: 1.85;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 0 14px;
}
@media screen and (max-width: 750px) {
    .toggle_title {font-size: 3.4vw;}
    .toggle_txt {font-size: 2.5vw;}
}
.toggle_txt ul {
    padding-left: 0;
}
.toggle_contents {
    /* margin: 1rem 2rem 0; */
    /* border-bottom: 1px solid #545454; */
	text-align: center;
    background-color: #e9e3da;
    padding: 2%;
}

ul.qa {
    position: relative;
    list-style: none;
    margin-left: 0;
    padding-left: 1.2em;
    margin-bottom: 16px;
}
ul.qa li {
    text-align: left;
}

ul.qa li.q {
    text-align: left;
    color: #b79147;
}

ul.qa li.q:before {
    content: "Q.";
    position: absolute;
    left: 0;
    color: var(--prd-color)
}

ul.qa li.a:before {
    content: "A.";
    position: absolute;
    left: 0;
    color: #545454
}

.circle::before {
    content: "・";
}

.btn_img:after {
	content: "";
	display: inline-block;
	position:absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%) rotate(180deg);
	transition: 0.2s;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid #ffffff;
}
.btn_img.selected:after {
	transform: translateY(-50%) rotate(0deg);
	transition: 0.2s;
}