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

/*ぱんくず*/
.second {
	position: relative;
}

.pancz {
	width: 1280px;
	position: absolute;
	top: 10px;
	right: 50%;
	transform: translateX(640px);
	display: flex;
	justify-content: flex-end;
}

.pancz li {
	font-size: 14px;
	color: #1c1c1c;
	padding-right: 25px;
	position: relative;
}

.pancz li:last-child {
	padding-right: 0;
}

.pancz li::after {
	content: ">";
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);	
}

.pancz li:last-child::after {
	display: none;
}

.pancz li a {
	color: #1c1c1c;
	text-decoration: none;
}

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


/*見出し*/
.h_cont {
	width: 100%;
	height: 286px;
	background-color: #eef4fb;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.h_cont h1 {
	text-align: center;
	font-size: 38px;
	color: #161316;
	font-weight: 500;
	line-height: 1.2em;
}