@charset "utf-8";

.inner_1000 {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}

/* メインビジュアル */
#main_Vis.img {
	position: relative;
	width: 100%;
	height: 100vh;
	margin-bottom: 80px;
	overflow: hidden;
}

#main_Vis.img .main_Copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	position: absolute;
	top: 50%;
	right: 10vw;
	height: max-content;
	writing-mode: vertical-rl;
	transform: translateY(-50%);
}

#main_Vis.img .main_Copy>span {
	display: inline-block;
	padding: 10px;
	color: #0055a2;
	background-color: rgba(255, 255, 255, .8);
	font-size: min(5vw, 40px);
	font-weight: 600;
	box-sizing: border-box;
}

#main_Vis.img>figure {
	width: 100%;
	height: 100%;
}

#main_Vis.img>figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

#main_Vis.feature {
	width: 100%;
	margin-bottom: 50px;
}

#main_Vis.feature .inner_1000 {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding: 0;
}

#main_Vis.feature .main_Ttl {
	position: relative;
	padding: 20px 0;
	background-color: #e7ecec;
	overflow: hidden;
}

#main_Vis.feature .main_Ttl>.inner_1000 {
	position: relative;
	z-index: 2;
}

#main_Vis.feature .main_Ttl>figure {
	position: absolute;
	top: 0;
	right: 0;
	width: 40vw;
	height: 100%;
	z-index: 1;
}

#main_Vis.feature .main_Ttl>figure::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background-image: linear-gradient(to right, #e7ecec, transparent);
}

#main_Vis.feature .main_Ttl>figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#main_Vis.feature h2 {
	display: block;
	color: #25579F;
	font-size: min(6vw, 34px);
	font-weight: 600;
}

#main_Vis.feature h2 span {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: min(3.5vw, 16px);
	font-weight: 400;
}

#main_Vis.feature h2+p {
	margin-top: 10px;
}

#main_Vis.feature p {
	font-size: 14px;
	line-height: 1.8;
}

#main_Vis.feature .main_Box {
	max-width: 900px;
	width: 90%;
	margin: 10px auto 0;
}

#main_Vis.feature .main_Box>section:first-of-type {
	margin-bottom: 30px;
}

#main_Vis.feature .main_Box h3 {
	display: block;
	position: relative;
	margin-bottom: 20px;
	padding: 15px 0;
	color: #0055a2;
	background-color: #FBF253;
	font-size: min(3.5vw, 20px);
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
}

#main_Vis.feature .main_Box h3::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 40px;
	height: 40px;
	background: url(/image/search/icon_plus_acc.svg) no-repeat center center;
	background-size: cover;
	transition: .3s;
	transform: translateY(-50%);
}

#main_Vis.feature .main_Box h3.acc_active::before {
	background: url(/image/search/icon_close_acc.svg) no-repeat center center;
	transform: translateY(-50%) rotate(180deg);
}

#main_Vis.feature .main_Box h4 {
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #08774c;
	border-bottom: 1px solid #ddd;
	font-size: min(3.5vw, 20px);
	font-weight: 600;
}

#main_Vis.feature .main_Box h4:not(:first-of-type) {
	margin-top: 30px;
}

.view_Box {
	display: none;
}

@media only screen and (max-width: 900px) {
	#main_Vis.img {
		height: 50vh;
		margin-bottom: 50px;
	}

	#main_Vis.img .main_Copy {
		gap: 10px;
		right: 5vw;
	}
}

#bread_List {
	justify-content: flex-start;
	font-size: 12px;
	gap: 5px;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
}

#bread_List>li {
	display: flex;
	align-items: center;
	gap: 5px;
}

#bread_List>li::after {
	display: block;
	content: '';
	width: 0.5em;
	height: 0.5em;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
}

#bread_List>li:last-child::after {
	content: none;
}

#bread_List>li a {
	text-decoration: underline;
}

@media only screen and (max-width: 900px) {
	#bread_List {
		display: none;
	}
}

#content_Wrap {
	padding: 80px 0;
}

.blue_Bg {
	background-color: #dce2e7;
}


/* お知らせ一覧 */
#news_Area {
	padding: 0 0 80px;
	max-width: 1000px;
}

#news_Area .select_Btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* margin-bottom: 30px; */
}

#news_Area .select_Btn li {
	width: 24.5%;
	text-align: center;
	color: #fff;
	opacity: .5;
}

#news_Area .select_Btn li:nth-child(4),
#news_Area .select_Btn li:nth-child(5),
#news_Area .select_Btn li:nth-child(6) {
	display: none;
}

#news_Area .select_Btn li.active {
	opacity: 1;
}

#news_Area .select_Btn li p {
	padding: 10px 0;
	font-size: 15px;
	transition: 0.3s;
}

#news_Area .select_Btn li p:hover {
	opacity: 0.7;
}

#news_Area article {
	border-bottom: 1px dashed #dce2e7;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 50px 20px;
	padding: 0 0 30px;
}

#news_Area figure {
	margin-bottom: 20px;
	transition: 0.3s;
	overflow: hidden;
}

#news_Area figure img {
	aspect-ratio: 16 / 9.5;
	object-fit: cover;
}

#news_Area article a {
	width: calc((100% - 40px) / 3);
	display: block;
	transition: 0.5s;
	/* border-top: 1px dashed #dce2e7; */
}

#news_Area article a .date {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
}

#news_Area article a .date span {
	width: 10em;
	text-align: center;
	color: #fff;
	font-size: 12px;
	margin-left: 1em;
	padding: 3px 0;
	letter-spacing: 0.1em;
}

/* newアイコン */
#news_Area article a.new {
	position: relative;
}

#news_Area article a.new::before {
	display: block;
	content: '';
	position: absolute;
	top: 25px;
	left: 10px;
	width: 3em;
	height: 3em;
	background-color: #e50005;
	clip-path: polygon(0 0, 0 100%, 100% 0);
	z-index: 1;
}

#news_Area article a.new::after {
	display: block;
	content: 'NEW';
	position: absolute;
	top: 34px;
	left: 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	transform: rotate(315deg);
	z-index: 2;
}

#news_Area article a .title {
	font-size: 14px;
	line-height: 1.5;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}

#news_Area article a figure img {
	transition: 0.5s;
}

#news_Area article a:hover figure img {
	transform: scale(1.1);
}

#news_Area .pagination {
	width: 700px;
	max-width: 90%;
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
	border: none;
	flex-wrap: wrap;
	align-items: center;
}

#news_Area .pagination li {
	width: auto;
	border-bottom: none;
}

#news_Area .pagination li a {
	margin: 0 7px;
	color: #0A51A1;
	text-decoration: none;
	border: 1px solid #0A51A1;
	padding: 5px 8px;
}

#news_Area .pagination li a img {
	width: 10px;
}

#news_Area .pagination li.over {
	color: #0A51A1;
}

#news_Area .pagination li:first-child a,
#news_Area .pagination li:last-child a {
	border: none;
}

#news_Area .pagination li a.here,
#news_Area .pagination li a:hover {
	color: #fff;
	background: #0A51A1;
}

#news_Area .pagination li a.none {
	opacity: 0.3;
	pointer-events: none;
}

/* 詳細 */
#news_Area .blog {
	gap: 0;
}

#news_Area .blog .date {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#news_Area .blog .date span {
	width: 10em;
	text-align: center;
	color: #fff;
	font-size: 12px;
	margin-left: 1em;
	padding: 3px 0;
	letter-spacing: 0.1em;
}

#news_Area .blog .title {
	width: 100%;
	font-size: 20px;
	line-height: 1.6;
	font-weight: 600;
	margin-bottom: 30px;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}

#news_Area .blog .txt {
	width: 100%;
	margin-bottom: 0px;
	padding-bottom: 50px;
}

#news_Area .blog .txt .thumbnail {
	width: 80%;
	max-width: 600px;
	margin: 30px auto;
}

#news_Area .blog .txt .thumbnail img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#news_Area .blog .txt img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	max-width: 100%;
}

#news_Area .blog .txt p {
	text-align: left;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

#news_Area .blog .txt p.small {
	font-size: 12px;
	margin-bottom: 20px;
}

#news_Area .blog .txt p strong {
	font-weight: 600;
}

#news_Area .blog .txt p strong.red {
	font-weight: 600;
	color: #b90404;
}

#news_Area .blog .txt a {
	text-decoration: underline;
	color: #026EB8;
	display: inline;
	padding: 0;
	border: none;
}

#news_Area .blog .txt a:hover {
	text-decoration: none;
	background: none;
}

#news_Area .blog .txt a.linkbox {
	display: inline-block;
	max-width: 90%;
	min-width: 300px;
	padding: 20px 0px;
	background: #026EB8;
	border: 1px solid #026EB8;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin: 30px auto;
}

#news_Area .blog .txt a.linkbox:hover {
	color: #026EB8;
	background: #fff;
}

#news_Area .blog .txt h3 {
	font-size: 18px;
	font-weight: 600;
	border-bottom: 3px solid #026EB8;
	margin-bottom: 20px;
	margin-top: 30px;
	padding: 10px;
	background: #f4f4f4;
	color: #026EB8;
}

#news_Area .blog .txt h4 {
	font-weight: 600;
	font-size: 16px;
	border-left: 4px solid #026EB8;
	color: #026EB8;
	padding: 6px 10px 6px .5em;
	margin-bottom: 20px;
}

#news_Area .blog .txt .right_img{
	max-width: 400px;
	margin: 0 0 1.5em 1.5em;
	float: right;
}

#news_Area .blog .txt .image_list{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 5px;
}

#news_Area .blog .txt .image_list li img{
	aspect-ratio: 1/1;
	object-fit: cover;
}

#news_Area .blog .txt .column_link_btn a{
	display: block;
	margin: 2em auto;
	padding: 1em 2em;
	color: #5b9bd5;
	text-align: center;
	text-decoration: none;
	border: 2px solid #5b9bd5;
	box-sizing: content-box;
	padding: 1em;
	font-size: 16px;
	max-width: 90%;
	width: 300px;
	box-sizing: border-box;
}

#news_Area .back_link {
	display: block;
	max-width: 90%;
	width: 300px;
	margin: 0 auto;
	padding: 20px 0px;
	background: #026EB8;
	border: 1px solid #026EB8;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

#news_Area .back_link:hover {
	color: #026EB8;
	background: #fff;
}

@media only screen and (max-width: 900px) {
	#content_Wrap {
		padding: 50px 0;
	}

	#news_Area article a {
		width: calc((100% - 20px) / 2);
		/* margin-right: 4%; */
		/* padding: 10px 0; */
	}

	#news_Area article a.new::before {
		top: 10px;
		left: 0px;
	}

	#news_Area article a.new::after {
		top: 20px;
		left: 2px;
		font-size: 11px;
	}

	#news_Area .select_Btn li:nth-child(1) {
		width: 100%;
		margin-bottom: 10px;
	}

	#news_Area .select_Btn li:nth-child(n+2) {
		width: 31%;
		margin-bottom: 10px;
	}

	#news_Area article a .title {
		font-size: 14px;
	}

	#news_Area article a .date {
		flex-wrap: wrap;
		align-items: flex-end;
	}

	#news_Area .blog .txt .right_img{
		max-width: 100%;
		float: none;
		margin: 0 0 1.5em;
	}

	/* #news_Area article a .date span {
		margin-left: 0;
		margin-top: 10px;
	} */


}