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

/**/
.t_box {
	width: 100%;
	border-bottom: 2px solid #04378c;
}

.t_box div {
	width: 1200px;
	height: 76px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.t_box div h1 {
	font-size: 24px;
	font-weight: 500;
	color: #0b2d6e;
}

.t_box div ol {
	display: flex;
}

.t_box div ol li {
	line-height: 1.3em;
	color: #1c1c1c;
	font-size: 14px;
}

.t_box div ol li::after {
	content: "＞";
	display: inline-block;
	padding: 0 6px;
}

.t_box div ol li:last-child::after {
	display: none;
}

.t_box div ol li a {
	color: #1c1c1c;
	text-decoration: none;
}

.t_box div ol li a:hover {
	text-decoration: underline;
}


/*コンテンツ*/
#contents {
	padding-top: 46px;
	padding-bottom: 130px;
	background-image: url("../../images/contents_bg.webp");
	background-repeat: repeat-x;
	background-position: top;
}


/*目次*/
.page_list {
	width: 986px;
	margin: 0 auto;
	border: 2px solid #04378c;
	margin-bottom: 74px;
}

.page_list p {
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	background-color: #184ea9;
	position: relative;
}

.page_list p::after {
	content: "ー";
	font-size: 18px;
	color: #fff;
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
}

.page_list p.close::after {
	content: "+";
	font-size: 26px;
	right: 37px;
}

.page_list ul {
	padding: 35px 50px;
	column-count: 2;
	border-top: 2px solid #04378c;
}

.page_list ul li {
	padding-left: 25px;
	padding-bottom: 25px;
	line-height: 1.3em;
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.page_list ul li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

.page_list ul li a {
	color: #101010;
	text-decoration: none;
}

.page_list ul li a:hover {
	text-decoration: underline;
}