@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@700&display=swap");

:root {
	--primary-color: #e50012;
	--primary-color-rgb: 229, 0, 18;
	--sub-color: #eb6d8e;
	--sub-color-rgb: 235, 109, 142;
	--secondary-color: #204fa2;
	--secondary-color-rgb: 32, 79, 162;
	--white-color: #fff;
	--white-color-rgb: 255, 255, 255;
	--black-color: #000;
	--black-color-rgb: 00, 00, 00;
	--sans-serif-jp: "Noto Sans JP", sans-serif;
	--sans-serif-en: "Oswald", sans-serif;
	--sans-serif-en2: "Roboto Mono", serif;
}

html {
	font-size: 62.5%;
	height: 100%;
	overflow-y: scroll;
}

body {
	position: relative;
	background-color: var(--white-color);
	color: var(--black-color);
	font-family: var(--sans-serif-jp);
	font-weight: 400;
	line-height: 1.75;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	box-sizing: border-box;
	overflow-x: clip;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

a {
	color: var(--primary-color);
}

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

figure img {
	display: block;
}

.mv {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100svh;
	max-width: 1600px;
	min-height: 680px;
	max-height: 960px;
	margin: 0 auto;
	overflow: hidden;
}

.mv .mv-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin-top: 0;
	z-index: 1;
}

.mv .mv-bg-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	animation: fadeInOut 8s infinite;
	transition: opacity 2s ease-in-out;
}

.mv .mv-bg-image img:nth-child(1) {
	position: relative;
	animation-delay: 0s;
}

.mv .mv-bg-image img:nth-child(2) {
	animation-delay: 4s;
}

@keyframes fadeInOut {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.mv h1 {
	position: absolute;
	bottom: 5%;
	left: 10px;
	width: auto;
	max-width: 65vw;
	max-width: 65svw;
	height: 65vh;
	height: 65svh;
	max-height: 600px;
	z-index: 2;
	/*background-color: #f00;*/
}

.mv h1 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom left;
}

@media only screen and (min-width: 480px) {
	.mv h1 {
		left: 15px;
		max-height: 640px;
	}
}

@media only screen and (min-width: 768px) {
	.mv h1 {
		max-width: 70vw;
		max-width: 70svw;
		max-height: 700px;
		left: 30px;
	}
}

@media only screen and (min-width: 1080px) {
	.mv h1 {
		left: auto;
		right: 60%;
		max-width: inherit;
		height: 780px;
		max-height: inherit;
	}

}

/*--------------------------*/
/* フッター */
/*--------------------------*/
#footer {
	background-color: var(--white-color);
	padding: 45px 0 45px;
}

#footer h2 {
	width: 40vw;
	max-width: 220px;
	margin: 0 auto 20px;
}

#footer .copy {
	text-align: center;
	font-size: 1.1rem;
	font-family: var(--sans-serif-en);
	font-weight: 400;
	color: #999;
}

#footer .polycy1 ul {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	font-size: 1.3rem;
	margin-top: 3rem;
	margin-bottom: 5rem;
}

#footer .polycy1 ul li {
	cursor: pointer;
}

@media only screen and (min-width: 480px) {
	#footer .copy {
		font-size: 1.3rem;
	}

	#footer .polycy1 ul {
		gap: 3.5rem;
		font-size: 1.5rem;
	}
}

@media only screen and (min-width: 768px) {
	#footer {
		padding: 75px 0 75px;
	}
}

.fa-twitter:before {
	content: "𝕏";
	font-family: unset;
	font-weight: bold;
}


#loading-bg {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: #e50012;
	z-index: 9996;
	opacity: 1;
	animation: bg-change 10s infinite linear both;
}

@keyframes bg-change {
	0% {
		background-color: #e50012;
	}

	25% {
		background-color: #9d020a;
	}

	50% {
		background-color: #600509;
	}

	75% {
		background-color: #9d020a;
	}

	100% {
		background-color: #e50012;
	}
}

#loading-logo {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9997;
	transition: transform 5s;
	opacity: 1;
}

#loading-logo span {
	display: block;
	width: 15vw;
	width: 15dvw;
	max-width: 120px;
	height: 15vw;
	height: 15dvw;
	max-height: 120px;
	animation: scale 2s ease-in-out infinite;
}

#loading-logo span img {
	display: block;
	width: 100%;
	height: 100%;
}

@keyframes scale {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.5);
	}
}

.shutter {
	position: fixed;
	z-index: 9993;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	animation: byeShutter 2.4s forwards;
}

.shutter::before, .shutter::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	z-index: 9995;
}

.shutter::before {
	background-color: #9d020a;
	width: 0;
	height: 1px;
	animation: shutterOpen1 2.4s forwards;
	z-index: 9994;
}

.shutter::after {
	width: 120%;
	height: 0;
	margin-left: -10%;
	background-color: #e50012;
	animation: shutterOpen2 2.4s forwards;
}

@keyframes byeShutter {
	80% {
		opacity: 1;
	}

	100% {
		display: none;
		opacity: 0;
	}
}

@keyframes shutterOpen1 {
	0% {
		width: 0;
		height: 0px;
	}

	50% {
		width: 100%;
		height: 0px;
	}

	90% {
		width: 100%;
		height: 100%;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}

@keyframes shutterOpen2 {
	60% {
		width: 120%;
		height: 0;
		transform: rotate(7.5deg);
	}

	90% {
		width: 120%;
		height: 100%;
		transform: rotate(-7.5deg);
	}

	100% {
		width: 120%;
		height: 100%;
		transform: rotate(-7.5deg);
	}
}

/*-------------------------------
		sitepolicy
--------------------------------*/
.sitepolicy_bg {
	background: rgb(247, 248, 248);
	position: fixed;
	width: 100%;
	height: 100%;
	margin: 0;
	padding-bottom: 75px;
	top: 0;
	left: -750px;
	display: block;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 9975;
	font-size: 1.5rem;
}

.policyFrame {
	position: relative;
	width: 100%;
	max-width: 1050px;
	height: auto;
	margin: 0 auto;
	padding: 70px 0 0;
}

.pc_show {
	display: none;
}

.sp_show {
	display: block;
}

.sitepolicy ul li {
	text-indent: 1rem;
}

.sp_frame90 {
	width: 90%;
	margin: 0 auto;
}

.sitepolicy_bg .text11,
.sitepolicy_bg .text13 {
	font-size: 1.4rem !important;
}

.sitepolicy_bg .text15 {
	font-size: 1.3em !important;
}

.sitepolicy_bg .text18 {
	font-size: 1.4em !important;
}

.sitepolicy_bg .text25,
.sitepolicy_bg .text30 {
	font-size: 1.6em !important;
}

.sitepolicy_bg .padding_b20 {
	padding-bottom: 1.5rem;
}

.sitepolicy_bg p {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.closePolicy {
	position: absolute;
	width: 58px;
	height: 58px;
	top: 15px;
	right: 10px;
	cursor: pointer;
}

@media only screen and (min-width: 768px) {
	.sitepolicy_bg {
		position: absolute;
		height: auto;
		left: 0;
		top: auto;
		bottom: -1000px;
		display: none;
	}

	.policyFrame {
		padding: 35px 0 0;
	}

	.sitepolicy {
		min-height: 50vh;
		max-height: 75vh;
		padding: 50px 0;
		width: 100%;
	}

	.sitepolicy_bg ul li {
		text-indent: 1rem;
	}

	.sp_frame90 {
		width: 100%;
	}

	.pc_show {
		display: block;
	}

	.sp_show {
		display: none;
	}

	.closePolicy {
		position: absolute;
		width: 35px;
		height: 35px;
		top: 0;
		right: 0;
		cursor: pointer;
	}
}

/*# sourceMappingURL=common.css.map */