@charset "utf-8"; 

/* ===========================================================================================================================
	トップページ top css
	
	---- INDEX ----
	メインビジュアルスライダー
	sec1 リードコピー
	sec2 slickスライダー
	sec3 コンテンツバナー
============================================================================================================================== */
/* メインビジュアルスライダー
------------------------------------------ */
.slider {
	width: 100%;
}
.slider ul {
	width: 100%;
}
.slider ul li img{
	width: 100%;
}
.catchcopy {/*本件では使用せず*/
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 2;
	width: 100%;
}
.catchcopy h1 {/*本件では使用せず*/
	display: inline-block;
	padding: 0 1em 0.4em 0;
	border-bottom: 1px solid #000;
	margin: 0 0 0.4em 0;
}
@media screen and (min-width: 1000px) {/* PC */
	#visualSp {
		display: none;/*SP用スライダーを非表示*/
	}
	.slider {
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	#visual {
		display: none;/*PC用スライダーを非表示*/
	}
	.slider {
	}
}
@media screen and (max-width: 767px) {/* SP */
	#visual {
		display: none;/*PC用スライダーを非表示*/
	}
	.slider {
	}
}

/* パララックス（今回は使用しない）
------------------------------------------ */
.parallax {
	width: 100%;
	height: 50vh;
	position: sticky;
	top: 100px;/*ヘッダー分空ける*/
	left: 0;
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.parallax {
		top: 80px;/*ヘッダー分空ける*/
		height: 50vh;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.parallax {
		top: 60px;/*ヘッダー分空ける*/
		height: 30vh;
	}
}
.parallax01 {
  background-image: url("../../img_top/visual1.jpg");
}
.parallax02 {
  background-image: url("../../img_top/visual2.jpg");
}
.parallax03 {
  background-image: url("../../img_top/visual3.jpg");
}

/* sec1 リードコピー
------------------------------------------ */
.top_sec1 {
	background: #003C92;
	position: relative;
}
.top_sec1::before {
	content: " ";
	position: absolute;
	top: 5px;
	left: 0;
	width: 100%;
	border-top: 2px solid #D9B901;
}
.top_sec1::after {
	content: " ";
	position: absolute;
	bottom: 7px;
	left: 0;
	width: 100%;
	border-bottom: 2px solid #D9B901;
}
.top_sec1 .lead {
	font-family: 'Noto Serif JP', serif;
	line-height: 2.4;
	color: #fff;
}
@media screen and (min-width: 1000px) {/* PC */
	.top_sec1 .lead {
		font-size: 23px;
		text-align: center;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.top_sec1 .lead {
		font-size: 20px;
		text-align: center;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.top_sec1 .lead {
		font-size: 19px;
	}
}
/* sec3 コンテンツバナー
------------------------------------------ */
ul.top_banner {
	display: flex;
	flex-wrap: wrap; /* 内包要素を折り返す（内包要素にwidth:を指定） */
	justify-content: space-between;/* 内包要素を両端に合わせて均等間隔に配置 */
}
ul.top_banner li {
	overflow: hidden;
	position: relative;
}
ul.top_banner li img {
	width: 100%;
	transition: 1s;
}
ul.top_banner li:hover img {
	transform: scale(1.2);
}
ul.top_banner li h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	width: 6em;
	text-align: center;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
ul.top_banner li h2::before {
	content: "\f054";/* > */
	font-family: "Font Awesome 6 Pro";
	padding-right: .5em
}

@media screen and (min-width: 1000px) {/* PC */
	ul.top_banner li {
		width: 455px;
		height: 360px;
	}
	ul.top_banner li h2 {
		font-size: 28px;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	ul.top_banner li {
		width: calc((100% - 20px) / 2);
	}
	ul.top_banner li h2 {
		font-size: 28px;
	}
}
@media screen and (max-width: 767px) {/* SP */
	ul.top_banner li {
		width: calc((100% - 10px) / 2);
	}
	ul.top_banner li h2 {
		font-size: 22px;
	}
}


@media screen and (min-width: 1000px) {/* PC */
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
}
@media screen and (max-width: 767px) {/* SP */
}

