@charset "UTF-8";
/*PC用CSS                         */
body * {
	word-break: break-all;
	box-sizing: border-box;
}

body {
	height: auto;
	font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
}

a {
	color: #000000;
}

.sp {
	display: none;
}

.pc {
	display: block;
}

.red {
	color: #cc0033;
}

.caption {
	font-size: 16px;
	text-align: justify;
}

strong {
	font-weight: bold;
}

main {
	max-width: 768px;
	margin: 0 auto;
	position: relative;
	display: block;
}

section {
	padding: 5% 3% 7.5%;
}

h2 {
	margin: 0 0 0.5em 0;
	font-size: 3rem;
	font-weight: bold;
}

.table_outer {
	margin: 0 0 5% 0;
}

.table_outer .caption {
	margin: 0;
	padding: 1em 0;
}

table {
	width: 100%;
	margin: 0 0 4% 0;
	line-height: 1;
	border: solid 1px #9b9b9b;
}

table:last-of-type {
	margin: 0;
}

table th,
table td {
	padding: 1.5%;
}

table th {
	font-size: 2.8rem;
	font-weight: bold;
	border-bottom: solid 1px #9b9b9b;
	background: #d9d9d9;
}

table th span {
	font-size: 1.7rem;
}

table tr:not(:first-child) th:first-child {
	border-right: solid 1px #9b9b9b;
}

table tr:first-child th {
	font-size: 3rem;
	border-bottom: solid 1px #9b9b9b;
	background: #bfbfbf;
}

table td {
	font-size: 2.8rem;
	border-bottom: solid 1px #9b9b9b;
	vertical-align: middle;
}

table td:first-child {
	text-align: left !important;
	text-decoration: underline;
	border-right: solid 1px #9b9b9b;
}

table td:last-child {
	text-align: center;
}

table tr:last-child td {
	border-bottom: none;
}

p {
	margin: 0 0 1em 0;
	text-align: center;
}

footer {
	margin-top: 100px;
	text-align: center;
}

footer .copyright {
	font-size: 24px;
}

/* SP用CSS                      */
@media only screen and (max-width: 768px) {
	.sp {
		display: block;
	}
	
	.pc {
		display: none;
	}
	
	.caption {
		font-size: 1rem;
	}
	
	h2 {
		font-size: 1.53rem;
	}
	
	table {
	}
	
	table th {
		font-size: 1.4rem;
	}
	
	table th span {
		font-size: 1rem;
	}
	
	table tr:first-child th {
		font-size: 1.53rem;
		border-bottom: solid 1px #9b9b9b;
	}
	
	table td {
		font-size: 1.4rem;
	}
	
	p {
		font-size: 1rem;
	}
	
	footer .copyright {
		font-size: calc(24vw / 2 / 375 * 100);
	}
	
}
