@charset "utf-8";
/*----------------------------
	main visual
-----------------------------*/
.mv {
	position: relative;
	background-color: var(--light-black);
	color: var(--white);
	padding-bottom: 70px;
}
.mv::before {
	content: "";
	background: url(../images/common/bg_logo_opacity_sp.png) center / 100% no-repeat;
	width: 176px;
	height: 199px;
	position: fixed;
	right: 0;
	top: 6.5rem;
}
.mv .inner {
	padding-top: 3.9375rem;
}
.breadcrumb_outer {
	width: calc(100% - 40px);
	font-size: var(--fs-12);
	border-bottom: 1px solid var(--gray-2);
	margin: 0 auto 50px;
	padding-bottom: 15px;
}
.list-breadcrumb_item {
	float: left;
}
.list-breadcrumb_item:last-child {
	float: none;
}
.list-breadcrumb_item::after {
	content: "＞";
	margin: 0 5px;
	font-size: .6875rem;
	line-height: var(--fs-12);
}
.list-breadcrumb_item:last-child::after {
	content: none;
}
.link-breadcrumb {
	color: var(--white);
}
.mv_title_outer {
	padding: 0 20px;
	box-sizing: border-box;
}
.mv_title_date {
	font-size: var(--fs-14);
	margin-bottom: 30px;
}
.mv_title {
	font-size: var(--fs-20);
	width: calc(100% - 70px);
}
/*----------------------------
	contents
-----------------------------*/
.sec {
	position: relative;
	z-index: 1;
	background: var(--gray);
	padding: 36px 20px 61px;
}
.contents {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--black);
	margin-bottom: 30px;
}
.contents p {
	font-size: var(--fs-13);
	font-weight: bold;
	margin-bottom: 40px;
}
.contents img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 40px;
}
.list-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--fs-18);
}
.next a,.prev a {
	font-size: var(--fs-12);
	border: solid 1px var(--black);
	line-height: 1;
	padding: 3px 16px;
	border-radius: .625rem;
}
/*----------------------------
	media query
-----------------------------*/
@media screen and (min-width: 769px){
	.mv {
		padding-bottom: 161px;
	}
	.mv::before {
		background: url(../images/common/bg_logo_opacity_pc.png) center / 100% no-repeat;
		width: 706px;
		height: 703px;
		top: 0;
	}
	.mv .inner {
		padding-top: 9.25rem;
	}
	.breadcrumb_outer {
		font-size: 1rem;
		padding-bottom: 20px;
		margin-bottom: 104px;
	}
	.list-breadcrumb,.contents,.list-btn {
		max-width: 808px;
	}
	.list-breadcrumb_item::after {
		font-size: 1rem;
		line-height: 1;
	}
	.mv_title_date {
		font-size: var(--fs-20);
		margin-bottom: 34px;
	}
	.mv_title {
		font-size: var(--fs-40);
		max-width: 808px;
	}
	.sec {
		padding: 100px 20px 116px;
	}
	.contents {
		padding-bottom: 50px;
		margin-bottom: 60px;
	}
	.contents p {
		font-size: var(--fs-18);
		margin-bottom: 50px;
	}
	.contents img {
		margin-bottom: 50px;
	}
	.list-btn {
		font-size: var(--fs-24);
	}
	.next a, .prev a {
		font-size: 1rem;
		padding: 5px 22px;
		border-radius: .875rem;
	}
}