@charset "utf-8";

/* information */

.information {
	padding: 24px;
	background-image: url(../img/bg-info.png);
	background-size: 256px;
	background-repeat: repeat;
}

.information__container {
	line-height: 1.6;
	width: 80%;
	margin: 0 auto;
	max-width: 750px;
}

.information__h2 img {
	width: 250px;
	height: auto;
}


.information__container-h3 {
	font-size: 1.2rem;
	text-align: left;
	margin-top: 64px;
	padding: 4px 16pt;
	color: rgb(0, 49, 0);
	background: url(../img/info-h2.png) center/cover rgb(106, 201, 106);
}

.information__container-h3::before {
	content: '\025c6';
	color: var(--brand-color);
}

.information__container-p {
	margin: 16px 0 0 16px ;
	line-height: 1.6;
}

.information__container dl {
	margin: 16px 0;
}

.information__container dt {
	margin: 4px 0 0 16px;
}

.information__container dt:first-child {
	margin: 16px 0 0 16px;
}

.information__container dd {
	margin-left: 32px;
}

.information__container dt::before {
	content: '\025c7 ';
	color: var(--brand-color);
}



/* hr */

hr {
	margin: 64px;
  border: none;
  border-top: 3px dotted var(--brand-color);
  overflow: visible;
  text-align: center;
  height: 5px;
}



/* evaluation */

.information__evaluation__table {
	border-collapse: collapse;
	width: 100%;
	margin: 64px auto 8px;
	font-size: 12px;
	line-height: 14pt;
}

.information__evaluation__table a:hover {
	text-decoration-line: underline;
}

.information__evaluation__table th,
.information__evaluation__table td {
	border: 1px solid #ccc;
	width: 25%;
	padding: 2px;
	text-align: center;
	font-weight: normal;
}

.information__evaluation__table caption {
  padding: 4px;
  font-weight: bold;
	text-align: left;
}




/* small screen */

@media (max-width: 767px) {

	.information {
		padding: 16px;
	}

	.information__container {
		width: 100%;
	}

}