@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100..700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');





/**
 * 共通
 */
html,
body{
	scroll-behavior: smooth;
	position: relative;
	font-family: "Zen Maru Gothic", sans-serif;
	/* 300, 400, 500, 700, 900 */
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 2;
	color: #231914;
	background-color: #fff;
}
.poppins{
	font-family: "Poppins", sans-serif;
	/* 100, 200, 300, 400, 500, 600, 700, 800, 900 */
	font-weight: 500;
	font-style: normal;
}
.josefin{
	font-family: "Josefin Sans", sans-serif;
	font-optical-sizing: auto;
	/* 100, 200, 300, 400, 500, 600, 700 */
	font-weight: 500;
	font-style: normal;
}
.inner{
	width: 90vw;
	margin: 0 auto;
}
.nonei{
	display: none!important;
}
.flex{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.fwn{
	flex-wrap: nowrap;
}
.jcsb{
	justify-content: space-between;
}
.jcc{
	justify-content: center;
}
.jce{
	justify-content: end;
}
.aifs{
	align-items: flex-start;
}
.aife{
	align-items: flex-end;
}
.ais{
	align-items: stretch;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}
.peni{
	pointer-events: none!important;
}
.text_ellipsis,
.text_ellipsis2,
.text_ellipsis3{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.text_ellipsis{
	-webkit-line-clamp: 1;
}
.text_ellipsis2{
	-webkit-line-clamp: 2;
}
.text_ellipsis3{
	-webkit-line-clamp: 3;
}
.pr{
	position: relative;
}
.ofh{
	overflow: hidden;
}
.ofyh{
	overflow-y: hidden;
}
.ofys{
	overflow-y: scroll;
}
.spitme{
	display: none;
}
@media screen and (max-width: 889px){
	.spitme{
		display: block;
	}
}





/**
 * header
 */
header{
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	padding: 10px 0;
	z-index: 1;
}
header .logo a,
header .logo a img{
	display: block;
}
header .logo a{
	width: 224px;
	height: calc(224px * (90/336));
}
header .logo a img{
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 889px){
	header{
		padding: 3.08vw 0;
	}
	header .logo a{
		width: 28.72vw;
		height: calc(28.72vw * (90/336));
	}
}




/**
 * main
 */
main{
	padding-top: 80px;/* header考慮 */
}
section.preparation{
	padding: calc((100vh - (80px) - ((16px * 2) * 3) - (20px) - (800px * (360/800))) / 2) 0;
}
section.preparation p{
	font-size: 16px;
	letter-spacing: calc(16px * 0.04);
	font-weight: 400;
}
section.preparation .character{
	margin-top: 20px;
}
section.preparation .character ul.character_lists{
	width: 800px;
	height: calc(800px * (360/800));
}
section.preparation .character ul.character_lists li.character_list{
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform-origin: center bottom;
}
section.preparation .character ul.character_lists li.character_list.gound{
	top: calc(800px * (265/800));
	left: calc(800px * (1/800));
	width: calc(800px * (798/800));
	height: calc((800px * (798/800)) * (93/798));
	background-image: url('../images/character_ground_798_93.png');
}
section.preparation .character ul.character_lists li.character_list.pengin{
	top: calc(800px * (240/800));
	left: calc(800px * (114/800));
	width: calc(800px * (93/800));
	height: calc((800px * (93/800)) * (89/93));
	background-image: url('../images/character_pengin_93_89.png');
	animation: 2s linear infinite rotate_plus4deg;
}
section.preparation .character ul.character_lists li.character_list.risu{
	top: calc(800px * (253/800));
	left: calc(800px * (310/800));
	width: calc(800px * (65/800));
	height: calc((800px * (65/800)) * (57/65));
	background-image: url('../images/character_risu_65_57.png');
	animation: 2s linear infinite rotate_minus4deg;
}
section.preparation .character ul.character_lists li.character_list.kirin{
	top: calc(800px * (1/800));
	left: calc(800px * (360/800));
	width: calc(800px * (88/800));
	height: calc((800px * (88/800)) * (311/88));
	background-image: url('../images/character_kirin_88_311.png');
	animation: 4s linear infinite rotate_plus2deg;
}
section.preparation .character ul.character_lists li.character_list.wani{
	top: calc(800px * (144/800));
	left: calc(800px * (141/800));
	width: calc(800px * (177/800));
	height: calc((800px * (177/800)) * (166/177));
	background-image: url('../images/character_wani_177_166.png');
	animation: 2.4s linear infinite rotate_plus4deg;
}
section.preparation .character ul.character_lists li.character_list.zou{
	top: calc(800px * (119/800));
	left: calc(800px * (449/800));
	width: calc(800px * (185/800));
	height: calc((800px * (185/800)) * (193/185));
	background-image: url('../images/character_zou_185_193.png');
	animation: 4s linear infinite rotate_minus2deg;
}
@keyframes rotate_plus4deg{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(4deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@keyframes rotate_plus2deg{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(2deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@keyframes rotate_minus4deg{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(-4deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@keyframes rotate_minus2deg{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(-2deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
section.preparation p,
section.preparation .character ul.character_lists li.character_list{
	opacity: 0;
	transition: .8s;
}
section.preparation p.act,
section.preparation .character ul.character_lists li.character_list.act{
	opacity: 1;
}
@media screen and (max-width: 889px){
	main{
		padding-top: calc((28.72vw * (90/336)) + (3.08vw * 2));/* header考慮 */
	}
	section.preparation{
		padding: calc((100vh - ((28.72vw * (90/336)) + (3.08vw * 2)) - ((3.59vw * 2) * 4) - (5.13vw) - (90vw * (360/800))) / 2) 0;
	}
	section.preparation p{
		font-size: 3.59vw;
		letter-spacing: calc(3.59vw * 0.04);
	}
	section.preparation .character{
		margin-top: 5.13vw;
	}
	section.preparation .character ul.character_lists{
		width: 90vw;
		height: calc(90vw * (360/800));
	}
	section.preparation .character ul.character_lists li.character_list.gound{
		top: calc(90vw * (265/800));
		left: calc(90vw * (1/800));
		width: calc(90vw * (798/800));
		height: calc((90vw * (798/800)) * (93/798));
	}
	section.preparation .character ul.character_lists li.character_list.pengin{
		top: calc(90vw * (240/800));
		left: calc(90vw * (114/800));
		width: calc(90vw * (93/800));
		height: calc((90vw * (93/800)) * (89/93));
	}
	section.preparation .character ul.character_lists li.character_list.risu{
		top: calc(90vw * (253/800));
		left: calc(90vw * (310/800));
		width: calc(90vw * (65/800));
		height: calc((90vw * (65/800)) * (57/65));
	}
	section.preparation .character ul.character_lists li.character_list.kirin{
		top: calc(90vw * (1/800));
		left: calc(90vw * (360/800));
		width: calc(90vw * (88/800));
		height: calc((90vw * (88/800)) * (311/88));
	}
	section.preparation .character ul.character_lists li.character_list.wani{
		top: calc(90vw * (144/800));
		left: calc(90vw * (141/800));
		width: calc(90vw * (177/800));
		height: calc((90vw * (177/800)) * (166/177));
	}
	section.preparation .character ul.character_lists li.character_list.zou{
		top: calc(90vw * (119/800));
		left: calc(90vw * (449/800));
		width: calc(90vw * (185/800));
		height: calc((90vw * (185/800)) * (193/185));
	}
}