
[data-method="droplist"] {
	width: 100%;
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 30px 0 50px;
	border-top: 2px solid rgba(112, 112, 114, 1);
	border-bottom: 2px solid rgba(112, 112, 114, 1);
	font-family: var(--html-font-god);
}

[data-method="droplist"] li {
	padding: 16px 0;
	border-bottom: 1px solid #aaa;
	font-size: 1.2rem;
	font-weight: 700;
	vertical-align: top;
	cursor: pointer;
	background-color: rgba(77, 107, 153, 0.03);
	background-image: url('/images/qna_open.png');
	background-repeat: no-repeat;
	background-position: top 20px right 30px;
	user-select: none;
}

[data-method="droplist"] li::last-child {
	border-bottom: 0;
}

[data-method="droplist"] li::before {
	content: 'Q.';
	font-size: 1.35rem;
	font-weight: 900;
	margin-left: 30px;
	margin-right: 7px;
}

[data-method="droplist"] li p {
	display: none;
	position: relative;
	top: 16px;
	padding: 20px 30px 100px 60px;
	line-height: 1.8;
	border-top: 1px dotted #707070;
	white-space: pre-wrap;
	font-size: 1.2rem;
	font-weight: 400;
	color: black;
	background-image: url('/images/qna_answer.png');
	background-repeat: no-repeat;
	background-position: top 18px left 36px;
}

[data-method="droplist"] li.active {
	background-color: rgba(58, 60, 86, 1);
	background-image: url('/images/qna_close.png');
	font-weight: bold;
	color: white;
}

[data-method="droplist"] li.active p {
	display: block;
	font-weight: normal;
	background-color: white;
}

[data-method="droplist"] a,
[data-method="droplist"] a:active,
[data-method="droplist"] a:visited {
	color: blue;
	text-decoration: underline;
}

