@charset "UTF-8";

body {
	margin: 0;
	background-image: url("../images/bg-01.png");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
}

.visual {
	position: relative;
	width: 100%;
	height: 100vh;
}

.movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(../images/bg.jpg) no-repeat center/cover;
	overflow: hidden;
	z-index: -1;
}

.movie::after {
	content: '';
	width: 100vw;
	/* ビューポート幅にフィット */
	height: 100vh;
	/* ビューポート高さにフィット */
	background-image: url("../images/bg-01.png");
	background-size: cover;
	background-position: center;
	position: fixed;
	/* ←ここがポイント！画面に固定 */
	left: 0;
	top: 0;
	z-index: 1;
	/* 動画より上に配置 */
	pointer-events: none;
	/* ←クリック操作は下の要素に通す */
}

.movie video {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100vw;
	min-height: 100vh;
	z-index: -1;
	object-fit: cover;

}


#contents {
	position: relative;
	/*必ず必要*/
	z-index: 2;
	/*必ず必要*/
}

h1.headerText {
	font-size: 12px;
	text-align: center;
	font-weight: normal;
}

.main_logo {
	width: 1000px;
	text-align: center;
	margin: 0 auto;
	padding: 150px 0 80px;
}

.main_logo h2 {
	text-align: center;
	font-size: 35px;
	font-family: "Hiragino Mincho ProN", "MS Mincho", serif;
}

.main_logo img {
	width: 600px;
	height: auto;
	margin-top: 10px;
}

.enter_btn {
	width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.enter_btn a {
	font-family: 'Noto Serif', serif;
	display: inline-block;
	width: 350px;
	height: 85px;
	line-height: 85px;
	letter-spacing: 0.1em;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	border: 3px double #fff;
	/* 二重線ボーダー */
	transition: all 0.3s ease;
	background: #000;
}

.text01 {
	padding: 30px 0 150px;
	font-size: 13px;
	text-align: center;
}

.text01 a {
	display: inline-block;
	padding-top: 10px;
	color: #000;
	text-decoration: underline;
}


/*slid*/
.slid_banner {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	padding-bottom: 80px;
}

.slid_banner img {
	display: block;
	width: 100%;
	max-width: 640px;
	height: auto;
}

/*外部サイトバナー*/
.banner {
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 200px;
	text-align: center;
}

.banner div {
	padding-bottom: 10px;
}

@media (max-width: 768px) {
	.main_logo {
		width: 100%;
		margin: 0 auto;
		padding: 100px 0;
		text-align: center;
	}

	.main_logo img {
		width: 80%;
		height: auto;
	}



	.main_logo h2 {
		text-align: center;
		font-size: 25px;
		font-family: "Hiragino Mincho ProN", "MS Mincho", serif;
	}

	.enter_btn {
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	.enter_btn a {
		font-family: 'Noto Serif', serif;
		display: inline-block;
		width: 60%;
		height: 85px;
		line-height: 85px;
		letter-spacing: 0.1em;
		text-align: center;
		text-decoration: none;
		color: #fff;
		font-size: 40px;
		font-weight: bold;
		border: 3px double #fff;
		/* 二重線ボーダー */
		transition: all 0.3s ease;
		background: #000;
	}

	.text01 {
		padding: 30px 0 150px;
		font-size: 13px;
		text-align: center;
	}

	.text01 a {
		display: inline-block;
		padding-top: 10px;
		color: #000;
		text-decoration: underline;
	}


	/*slid*/
	.slid_banner {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		padding: 0 3% 80px;
	}

	.slid_banner img {
		display: block;
		width: 100%;
		max-width: 1000px;
		height: auto;
	}

	/*外部サイトバナー*/
	.banner {
		width: 100%;
		margin: 0 auto;
		padding: 0 3% 200px;
		text-align: center;
	}

	.banner img {
		width: 100%;
		height: auto;
	}


}