@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP&display=swap');

@media all and (max-width: 767px) {
	.pc { display: none; }
}

@media all and (min-width: 768px) {
	.sp { display: none; }
}

html, 
body {
	min-width: auto;
	height: 100%;
}

html {
	font-size: 62.5%;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
}
@media all and (min-width: 768px) {
	body {
		font-size: 2rem;
	}
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
}

a:hover {
	text-decoration: none;
}

footer {
	margin: 30px 0 0 0;
	padding: 30px 0 10px 0;
	font-weight: normal;
	font-family: sans-serif;
	border-top: solid 2px #E6E6E6;
}

@media all and (min-width: 768px) {
	footer > div {
		display: flex;
		justify-content: space-between;
	}
}

footer ul {
	display: flex;
	flex-direction: column;
	gap: 20px 30px;
	padding: 0 0 30px 0;
	font-size: 1.4rem;
}

@media all and (min-width: 768px) {
	footer ul {
		flex-direction: row;
		padding: 30px 0 0 0;
	}
}

footer ul li a::after {
	content: "";
	display: inline-block;
	margin-left: 0.5em;
	width: 1em;
	height: 1em;
	background: url(../img/link.svg) no-repeat;
}

footer .logo {
	height: 40px;
}

footer .copyright {
	padding-top: 10px;
	font-size: 1.1rem;
}

.container {
	margin: auto;
	padding: 0 10px;
}

@media all and (min-width: 768px) {
	.container {
		width: 1020px;
	}
}

.iblock { display: inline-block; }
.hidden { display: none; }

.center { text-align: center; }
.left { text-align: left; }
.right { text-align: right; }

.serif {
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.scroll {
	opacity: 0;
	transform: translateY(80px);
	transition: 1s;
	transition-delay: 0.5s;
}
.scroll.is-show {
	transform: translate(0);
	opacity: 1;
}


#main {
	overflow: hidden;
	animation: fadeIn 2s linear 0s 1 normal both;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#main .swiper .swiper-slide {
	position: relative;
	width: 100%;
}

#main .swiper .swiper-slide img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
@media all and (min-width: 768px) {
	#main .swiper .swiper-slide img {
		aspect-ratio: auto;
	}
}


#bodycopy {
	padding: 30px 0;
	background: url(../img/bg_bodycopy.jpg) no-repeat center center;
	background-size: cover;
	animation: fadeIn 3s linear 0s 1 normal both;
	animation-delay: 1s;
}

#bodycopy h1 {
	padding: 1em 0;
	font-size: 1.3em;
}
@media all and (min-width: 768px) {
	#bodycopy h1 {
		font-size: 1.8em;
	}
}
#bodycopy p {
	display: inline-block;
	padding: 10px 0 2.5em 0;
	margin: auto;
	font-size: 3.2vw;
	line-height: 2;
}
@media all and (min-width: 768px) {
	#bodycopy p {
		font-size: 1em;
	}
}


#movie {
	padding: 30px 0;
}
@media all and (min-width: 768px) {
	#movie {
		padding: 60px 0 100px 0;
	}
}

#movie strong {
	font-size: 1.3em;
}
@media all and (min-width: 768px) {
	#movie strong {
		font-size: 1.8em;
	}
}

#movie h2 {
	padding: 30px 0 10px 0;
	font-size: 1.2em;
	font-weight: normal;
}
@media all and (min-width: 768px) {
	#movie h2 {
		padding-top: 100px;
	}
}

#modal {
	display: none;
}

#modal.overlay {
	display: block;
}

@media all and (min-width: 768px) {
	#modal.overlay {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		background-color: rgb(0, 0, 0, 0.5);
		z-index: 999;
	}
	
	.window {
		display: inline-block;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.btn_close {
		position: absolute;
		top: 0;
		right: 0;
		padding: 0.5em;
		width: 56px;
		height: 56px;
		color: #FFFFFF;
		line-height: 1;
		background-color: #000000;
		border: solid 3px #FFFFFF;
		border-radius: 100px;
		transform: translate(50%, -50%);
		cursor: pointer;
		z-index: 9999;
	}
	
	.btn_close::before, 
	.btn_close::after {
		content: "";
		display: inline-block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 65%;
		height: 4px;
		background-color: #FFFFFF;
	}
	
	.btn_close::before {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	
	.btn_close::after {
		transform: translate(-50%, -50%) rotate(45deg);
	}
}

#modal iframe, 
#movie .thumb {
	margin: auto;
	width: 90%;
	height: auto;
	aspect-ratio: 550 / 310;
}
@media all and (min-width: 768px) {
	#modal iframe {
		width: 800px;
		aspect-ratio: 560 / 315;
	}
}

#movie .thumb {
	position: relative;
	cursor: pointer;
}
@media all and (min-width: 768px) {
	#movie .thumb {
		width: 800px;
	}
}
#movie .thumb::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 10px;
	width: 70px;
	height: 70px;
	border: solid 4px #FFFFFF;
	border-radius: 9999px;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

#movie .thumb::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 30px;
	background-color: #FFFFFF;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}


#banner {
	padding: 30px 0;
	font-weight: 900;
	z-index: 0;
}
@media all and (min-width: 768px) {
	#banner {
		height: 200px;
	}
}

#banner a {
	display: flex;
	flex-direction: column;
	margin: auto;
	width: 14em;
	color: #0693CD;
	line-height: 2;
	border: solid 3px #0693CD;
}

#banner a span {
	color: #FFFFFF;
	background-color: #0693CD;
}