@charset "UTF-8";
/* CSS Document */

/* contents */
#contents {
	max-width: 1000px;
	margin: 100px auto;
	padding: 0 40px;
}
@media screen and (max-width: 750px) {
#contents {
	padding: 0 20px;
	margin: 60px auto;
}
}

/* section */
section {
	padding-top: 100px;
}
.ttl + section {
	padding-top: 0;
}
section#cancel {
	padding-top: 120px;
	margin-top: -20px;
}
section h2,
section ul li,
section table th,
section table td,
section p{
	font-size: 16px;
	line-height: 2;
}
section ul {
	margin-top: 10px;
	counter-reset: number;
}
section ul li {
  padding-left: 2em;
	position: relative;
}
section ul li::before {
	position: absolute;
	top:0;
	left:0;
 	counter-increment: number;
 	content: counter(number);
 	padding-right: 2em;
 }
section ul li a{
	font-weight: bold;
	text-decoration: underline !important;
}
section ul li a:hover{
	text-decoration: none !important;
}
section ul li .indent {
	margin-left: 40px;
}
section table {
	margin: 30px 0 30px 60px;
	max-width: 530px;
	width: 100%;
}
section table tr {
	border-top: solid #515266 1px;
}
section table th,
section table td {
		padding: 10px 10px;
}
section table tr:last-child {
	border-bottom: solid #515266 1px;
}
section .btn {
margin-top: 10px;
}
section .btn a {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	color: #515266;
	padding: 15px;
	border: solid #515266 1px;
}
@media screen and (max-width: 750px) {
section {
	padding-top: 60px;
}
section#cancel {
	padding-top: 80px;
	margin-top: -20px;
}
section h2,
section ul li,
section table th,
section table td,
section p{
	font-size: 13px;
}
section ul li .indent {
	margin-left: 20px;
}
section table {
	margin: 15px 0 30px 0;
}
section table th,
section table td {
	padding: 8px 4px;
}
section ul .indent {
	margin-left: 40px;
}
section .btn a {
	font-size: 13px;
	padding: 15px;
}
}