@charset "UTF-8";

/* question
---------------------------------------------------------------------------*/
.title-page-txt {
	margin: 60px 0 65px;
}

/* .category-list
------------------------------------*/
.category-list {
	overflow: hidden;
	border-top: 1px solid #1FAC4C;
	border-bottom: 1px solid #1FAC4C;
	border-left: 1px solid #1FAC4C;
	width: 880px;
	margin: 0 auto 70px;
}

.category-list li {
	float: left;
	box-sizing: border-box;
	border-right: 1px solid #1FAC4C;
	width: 20%;
	text-align: center;
}

.category-list li a {
	display: block;
	padding: 15px 0;
	color: #00952F;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.category-list li.current-cat a {
	background: #F1FFF1;
}

/* .question-list
------------------------------------*/
.question-list {
	border-bottom: 1px dashed #62C582;
	width: 880px;
	margin: 0 auto;
}

.question-list dt {
	position: relative;
	border-top: 1px dashed #62C582;
	padding: 25px 75px 25px 70px;
	color: #00952F;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: .1s linear;
}

.question-list dt:hover {
	color: #7FCA98;
}

.question-list dt:hover:before,
.question-list dt:hover:after {
	opacity: 0.5;
}

.question-list dt:before {
	display: block;
	content: '';
	position: absolute;
	top: 23px;
	left: 17px;
	background: url(../img/share/ico-question.svg) no-repeat;
	background-size: 32px 32px;
	width: 32px;
	height: 32px;
	transition: .1s linear;
}

.question-list dt:after {
	display: block;
	content: '';
	position: absolute;
	top: 21px;
	right: 20px;
	background: url(../img/share/btn-down.png) no-repeat;
	background-size: 35px 35px;
	width: 35px;
	height: 35px;
	transition: .1s ease-out;
}

.question-list dt.active:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.question-list dd {
	display: none;
	padding: 0 20px 35px;
}

/* .news-main
------------------------------------*/
.news-main p {
	line-height: 1.8;
}

.sec-table {
	margin-top: 40px;
}

.sec-table h3 {
	margin-bottom: 18px;
	font-size: 14px;
}

.news-table th,
.news-table td {
	font-size: 13px;
}

.news-link {
	margin-top: 10px;
}