@charset "utf-8";
.under {
	font-weight: bold;
	background:linear-gradient(transparent 60%, #ff6 60%);
}
.font_b {
	font-weight: bold!important;
}
.title {
	padding-left: 20px;
	position: relative;
	font-size: 20px;
}
.title::before {
	content: "\025C9";
	position: absolute;
	top: 0;
	left: 0;
	color: #04ADA8;
}
.title + p {
	padding-left: 20px;
}

.sub_box {
	margin-top: 20px;
	border-radius: 5px;
	border: 2px solid #ccc;
	position: relative;
	padding: 15px 10px 10px;
}
.sub_box .sub_title {
	padding: 0 10px 0 20px;
	display: inline-block;
	background-color: #fff;
	font-weight: bold;
	position: absolute;
	left: 20px;
	top: -15px;
}
.sub_box .sub_title::before {
	content: "!";
	position: absolute;
	top: -5px;
	left: 5px;
	color: #ff0000;
	font-size: 24px;
}
.caution {
	margin-top: 30px;
	padding: 15px 10px 10px;
	border-radius: 5px;
	border: 2px solid #ff0000;
	position: relative;
}
.caution .sb_title {
	display: inline-block;
	padding: 0 10px;
	background-color: #fff;
	font-weight: bold;
	font-size: 20px;
	color: #ff0000;
	position: absolute;
	top: -18px;
	left: 10px;
}

.kinds_list {
	margin-top: 20px;
}
.kinds_list dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.kinds_list dl:first-of-type {
	border-top: 1px solid #ccc;
}
.kinds_list dl dt {
	width: 25%;
	padding: 10px;
	background-color: #F3FEFF;
	display: flex;
	align-items: center;
	font-size: 20px;
}
.kinds_list dl dt rt {
	font-weight: bold;
}
.kinds_list dl dd {
	width: 75%;
	padding: 10px;
	border-left: 1px solid #ccc;
}
.list_box {
	margin-left: 20px;
	margin-top: 15px;
	border-radius: 5px;
	border: 2px solid #0DBFD6;
	padding: 10px;
}
.list_box ul {
	list-style: decimal;
	list-style-position: inside;
	padding-left: 20px;
	font-size: 16px;
}
.list_box ul li {
	padding: 5px 0;
	border-bottom: 1px dashed #ccc;
}
.list_box .sb_title {
	padding-left: 10px;
	border-left: 6px solid #04ADA8;
	font-weight: bold;
	line-height: 1.3;
}


.shuha_table {
	width: 100%;
	border: 1px solid #ccc;
	margin: 0 auto;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.shuha_table th {
	font-weight: bold;
}
.shuha_table th,
.shuha_table td {
	padding: 8px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.shuha_table  th:last-of-type,
.shuha_table  td:last-of-type {
	border-right: none;
}
.shuha_table tr:last-of-type th,
.shuha_table tr:last-of-type td {
	border-bottom: none;
}
.shuha_table th{
	background-color: #F3FEFF;
}
.shuha_table th,
.shuha_table td {
	text-align: center;
}
.shuha_table tr th:first-of-type,
.shuha_table tr td:first-of-type {
	width: 25%;
}
.shuha_table tr th:nth-of-type(2),
.shuha_table tr td:nth-of-type(2) {
	width: 60%;
}
.shuha_table tr th:last-of-type,
.shuha_table tr td:last-of-type {
	width: 15%;
}


@media only screen and (max-width: 768px){
	.kinds_list dl {
		border-top: none;
	}
	.kinds_list dl:first-child {
		border-top: 1px solid #ccc;
	}
	.kinds_list dl dt {
		font-size: 18px;
		width: 100%;
		border-bottom: 1px solid #ccc;
	}
	.kinds_list dl dd {
		width: 100%;
		border-left: none;
		font-size: 16px;
	}
	.shuha_table {
		font-size: 14px;
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
	}
	.title + p {
		margin-top: 5px;
	}
	.sm_txt {
		color: #888;
		font-size: 14px;
		padding: 5px 0;
	}
}