@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Noto+Serif+JP:wght@200..900&display=swap');

/*==============================================================
	common
==============================================================*/
:root {
	/* colors */
	--base-color: #363636;
	--main-color: #ffffff;
	--btn-color: #00b900;
	font-size: 0.833vw; /* 1920px幅時16px相当 */
}
body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	color: var(--base-color);
	word-break: break-all;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
p + p {
	margin-top: 1rem;
}
a {
	color: var(--base-color);
	text-decoration: none;
	transition: 0.3s ease;
}
a:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
}
video {
	width: 100%;
	height: auto;
	vertical-align: top;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
@media only screen and (max-width:749px) {
	:root {
		font-size: 2.133vw; /* 750px幅時16px相当 */
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}


/*==============================================================
	fv
==============================================================*/
#fv .fv__wrap {
	position: relative;
}
#fv .fv__wrap .fv__cv {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 21%;
	max-width: 100%;
	aspect-ratio: 403 / 59;
	top: 62%;
	left: 51.3%;
	padding-left: 0.2em;
	border-radius: 999px;
	font-size: 1.65rem;
	color: var(--main-color);
	letter-spacing: 0.2em;
	background: var(--btn-color);
}
@media screen and (max-width: 749px) {
	#fv .fv__wrap .fv__cv {
		width: 88%;
		top: 84.7%;
		left: 6%;
		border-radius: 100vh;
		font-size: 2.71rem;
	}
}


/*==============================================================
	content11
==============================================================*/
#content11 .content11__wrap {
	position: relative;
}
#content11 .content11__wrap .content11__cv {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 21%;
	max-width: 100%;
	aspect-ratio: 403 / 59;
	top: 68.52%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 100vh;
	font-size: 1.65rem;
	color: var(--main-color);
	letter-spacing: 0.2em;
	padding-left: 0.2em;
	background: var(--btn-color);
	white-space: nowrap;
}
@media screen and (max-width: 749px) {
	#content11 .content11__wrap .content11__cv {
		width: 88%;
		top: 66.29%;
		left: 6%;
		transform: none;
		font-size: 2.71rem;
	}
}


/*==============================================================
	footer
==============================================================*/
#footer {
	padding: 6.5rem 0 4.18rem;
	background: #1f2a66;
}
#footer .footer__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 62.5vw;
	margin: 0 auto;
}
#footer .footer__nav {
	display: flex;
	margin-top: 5rem;
	gap: 2.875rem;
}
#footer .footer__nav .nav__item a {
	font-size: 1.5rem;
	color: var(--main-color);
	letter-spacing: 0.2em;
}
#footer .footer__copy {
	margin-top: 3.43rem;
	color: var(--main-color);
	text-align: center;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 749px) {
	#footer {
		padding: 6.25rem 0 3.125rem;
		background: #1f2a66;
	}
	#footer .footer__wrap {
		max-width: 88%;
	}
	#footer .footer__nav {
		margin-top: 5rem;
	}
	#footer .footer__copy {
		margin-top: 4.25rem;
	}
}