@charset "UTF-8";

/*-----------------------------------

	headline

-----------------------------------*/
#headline h1::after {
	content: "OUTLINE";
}
/*-----------------------------------

	date

-----------------------------------*/
#date {
	padding-bottom: 128px;
}
#date ul {
	display: flex;
	justify-content: center;
	gap: 50px;
}
#date ul li {
	letter-spacing: 0;
	line-height: 1;
}
#date ul li span {
	display: inline-block;
	color: #003a7d;
	font-weight: 500;
}
#date ul li span::after {
	content: "／";
}
@media screen and (max-width: 840px) {
	#date ul {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
}
@media screen and (max-width: 640px) {
	#date {
		padding-bottom: 60px;
	}
	#date ul {
		gap: 15px;
	}
}
/*-----------------------------------

	outline - common

-----------------------------------*/
.outline {
	padding-bottom: 49px;
}
.outline .contents_inner {
	max-width: 1100px;
}
.outline h2 {
	font-size: 23px;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1;
	color: #003a7d;
	margin-bottom: 40px;
	text-align: center;
}
.outline table {
	width: 100%;
	border-top: 1px solid #e0e0e0;
	line-height: 1.68;
	letter-spacing: 0;
}
.outline table tr {
	border-bottom: 1px solid #e0e0e0;
}
.outline table th {
	width: 170px;
	padding: 20px 0;
	text-align: center;
	font-weight: 500;
	color: #003a7d;
	background: #f5f5f5;
	vertical-align: middle;
}
.outline table td {
	width: calc(100% - 170px);
	padding: 20px 7px 20px 20px;
}
.outline .att_txt {
	font-size: 12px;
	line-height: 2;
	letter-spacing: 0;
	margin-top: 10px;
}
@media screen and (max-width: 640px) {
	.outline {
		padding-bottom: 30px;
	}
	.outline h2 {
		font-size: 17px;
		margin-bottom: 20px;
	}
	.outline table {
		border-top: none;
	}
	.outline table tr {
		border-bottom: none;
	}
	.outline table th {
		display: block;
		width: 100%;
		padding: 10px 15px;
		text-align: left;
	}
	.outline table td {
		display: block;
		width: 100%;
		padding: 10px 15px;
	}
	.outline .att_txt {
		margin-top: 0;
	}
}

