@charset "utf-8";

/* == reset == */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

html { font-size:100%; overflow-y:auto; scrollbar-gutter:stable;}
body { font-size:16px; background:#fff; font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; line-height:1.8; color:#fff;}
body, h1, h2, h3, h4, h5, h6, p, dl, dd, ul, ol, li, form, fieldset, blockquote, table, thead, tbody, tfoot, tr, td, th { margin:0; padding:0;}
th, td, table, input, button, select, textarea {
	font-size:1rem;
	font-weight:normal;
	font-style:normal;
	padding:0;
	margin:0;
}
table {
	width:100%;
	border-width:0;
	border-spacing:0;
	border-collapse:collapse;
}
img, input, button, select, textarea {
	vertical-align:middle;
}
ul, ol {
	list-style:none;
}
a {
	color:#fff;	
	text-decoration:underline;
	opacity:1;
	transition:0.3s;
}
a:hover {
	outline:none;
	text-decoration:none;
	opacity:0.8;
	transition:0.3s;
}
body * {
    box-sizing: border-box;
    word-wrap: break-word;
}
img,video {
	border:0;
	max-width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
	img{
		width: 100%;
	}
}

/* == / reset == */

/* == layout == */
.ui_screen{
	display: block;
}
.pcNone {
	display:none;
}
.ui_wide{
	max-width:1100px;
	margin:0 auto;
}
.ui_wide_s{
	max-width:800px;
	margin:0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.ui_wide,.ui_wide_s{
		width:auto;
		margin: 0 15px;
	}
}
@media only screen and (min-width: 0) and (max-width: 767px) {
	.spNone {
		display:none!important;
	}
	.pcNone {
		display:block!important;
	}
	.ui_screen{
		display: inline;
	}
	.ui_wide,.ui_wide_s{
		width:92vw;
		margin:0 4vw;
	}
}
/* == / layout == */

#opening {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ffd101;
	background-size: cover;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
}

#page {
	display: none;
}
@media only screen and (min-width: 768px){ 
	
}

.ui_menu_wp{
	position: fixed;
	z-index: 99;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}
.ui_menu_logo{
	position: absolute;
	z-index: 9;
	top: 2.2vw;
	left: 2vw;
	width: 22.6vw;
	line-height: 0;
}
.ui_menu_logo a:hover{
	opacity: 1;
}
.ui_menu{
	overflow: hidden;
	position: fixed;
	z-index: 100;
	right: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 24vh;
	width: 650px;
	height: 100vh;
	background: linear-gradient(180deg, #f573ec 0%, #f5942f 100%);
	color: #fff;
	transition: 0.6s cubic-bezier(0.25,0.1,0.25,1);
	opacity: 0;
	transform: translateX(110%);
	pointer-events: none;
}
.ui_menu_list li{
	padding: 1.5vh 0;
	text-align: center;
}
.ui_menu_list li a{
	color: #fff;
	font-size: 30px;
	line-height: 1.2;
	text-decoration: none;
}
.menu_sns{
	position: relative;
	z-index: 3;
	margin-top: 3vh;
	display: flex;
	justify-content: center;
}
.menu_sns a{
	width: 50px;
	margin: 0 2%;
}
.menu_pic{
	position: absolute;
	left: -166px;
	bottom: -740px;
	width: 982px;
	height: 982px;
	animation: rotate 50s infinite linear;
}
.ui_menu_btn{
	position: fixed;
	z-index: 101;
	right: 20px;
	top: 20px;
	width: 165px;
	height: 143px;
	background: url(../img/menu_off.webp) no-repeat center center;
	background-size: 100% 100%;
	cursor: pointer;
	transition: 0.3s;
	pointer-events: none;
	opacity: 0;
	transition: 0.3s;
}
.ui_menu_btn.is_on{
	pointer-events: auto;
	opacity: 1;
}
.ui_menu_over{
	position: fixed;
	z-index: 90;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	background: rgba(255,255,255,0.6);
}
.ui_menu_wp.is_open .ui_menu_over{
	opacity: 1;
	pointer-events: auto;
}
.is_open.ui_menu_wp .ui_menu_btn{
	opacity: 1;
	background-image: url(../img/menu_on.webp);
}
.is_open.ui_menu_wp .ui_menu{
	opacity: 1;
	pointer-events: auto;
	top: 0;
	right: 0;
	transform: translateX(0);
	transition: 0.6s cubic-bezier(0.25,0.1,0.25,1);
}
.ui_totop{
	position: fixed;
	z-index: 89;
	right: 5vw;
	bottom: 13vw;
	width: 5vw;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s;
}
.ui_totop.is_on{
	opacity: 1;
	pointer-events: auto;
}
.ui_totop.is_on:hover{
	opacity: 0.6;
}
.ui_totop.is_on.is_hide{
	opacity: 0;
	pointer-events: none;
}


@media only screen and (min-width: 0) and (max-width: 767px) {
	.ui_menu_logo{
		left: 1.5vw;
		top: 2.5vw;
		width: 29vw;
	}
	.ui_menu_btn{
		right: 0;
		top: 1vw;
		width: 21vw;
		height: 18vw;
	}
	.ui_menu{
		align-items: center;
		width: 100%;
		padding: 0 0 18vh;
		text-align: center;
	}
	.ui_menu_list li{
		padding: 1.5vh;
	}
	.ui_menu_list li a{
		font-size: 6.1vw;
	}
	.menu_sns a{
		width: 14vw;
		margin: 0 5%;
	}
	.menu_pic{
		left: -25vw;
		bottom: -115vw;
		width: 150vw;
		height: 150vw;
	}
	.ui_totop{
		right: 4.5vw;
		bottom: 32.5vw;
		width: 14vw;
	}
}
.ui_fade,.ui_fade_i{
	transition: all 1000ms;
	opacity: 0;
	visibility: hidden;
	transform: translate(0px, 50px);
}
.ui_fadein{
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}

.ui_modal_wp,.ui_modal_over{
	position: fixed;
	z-index: 1010;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ui_modal_wp{
	display: none;
	opacity: 0;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.ui_modal_wp *{
	box-sizing: border-box;
	word-wrap: break-word;
}
.ui_modal_over{
	background: rgba(255,255,255,0.7);
}
.ui_modal_container{
	position: relative;
	z-index: 1011;
	background: rgba(0,174,255,0.9);
	box-shadow: 0 0 50px rgba(4,23,163,0.3);
	color: #fff;
	height: 800px;
    max-width: 1100px;
	width: 100%;
	padding: 40px;
	border-radius: 50px;
	display: flex;
	flex-direction: column;
}
.ui_modal_s{
	max-width: 500px;
	max-height: 250px;
}
.ui_modal_close{
	position: absolute;
	z-index: 102;
	right: 30px;
	top: 30px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: url(../img/ico_close.webp) no-repeat center center;
	background-size: 100% 100%;
}
.ui_modal_content{
	display: none;
}
.ui_modal_body{
    position: relative;
}
.ui_modal{
	cursor: pointer;
}
.ui_modal_black,.ui_modal_container_you,.ui_modal_container_mp4{
	padding: 0;
	background: none;
	height: auto;
}
.ui_modal_container_you .ui_modal_body,.ui_modal_container_mp4 .ui_modal_body {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.4%;
}
.ui_modal_black .ui_modal_close,
.ui_modal_container_you .ui_modal_close,.ui_modal_container_mp4 .ui_modal_close{
	top: -44px;
}
.ui_modal_container_you .ui_modal_head h4,.ui_modal_container_mp4 .ui_modal_head h4{
	display: none;
}
.ui_modal_container_you .ui_modal_close:before,.ui_modal_container_you .ui_modal_close:after,.ui_modal_container_mp4 .ui_modal_close:before,.ui_modal_container_mp4 .ui_modal_close:after{
	background: #fff;
}
.ui_you_iframe,.ui_mp4{
	position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgb(0 0 0 / 60%);
    background: black;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
	.ui_modal_container{
		width: 100%;
		height: 100vh;
		border-radius: 0;
		padding: 60px 12px 20px 25px;
	}
	.ui_modal_close{
		right: 20px;
		top: 20px;
		transform: scale(0.6);
	}
	.ui_modal_body{
		padding-right: 12px;
		overflow-y: auto;
	}
	.ui_modal_black{
		padding: 20px 4vw;
	}
	.ui_modal_black .ui_modal_body{
		padding-right: 0;
		overflow: visible;
	}
	.ui_modal_black .ui_modal_close{
		right: 1vw;
	}
	.ui_modal_body::-webkit-scrollbar {
	  width: 4px;
	  border-radius: 5px;
	}
	.ui_modal_body::-webkit-scrollbar-thumb {
	  background: linear-gradient(to bottom right, #fff 0%, #fff 100%);
	  border-radius: 5px;
	}
	.ui_modal_body::-webkit-scrollbar-track {
	  background-color: #5cd5ff;
	  border: 1px solid #5cd5ff;
	  border-radius: 5px;
	}
	.ui_modal_body::-webkit-scrollbar-button {
	  background-color: #5cd5ff;
	  border-radius: 5px;
	  height: 0;
	}
	.ui_modal_body::-webkit-scrollbar-button:hover {
	  background-color: #5cd5ff;
	}
	.ui_modal_black,.ui_modal_container_you{
		height: auto;
	}
}
.ani_footer {
	background: #fff;
	padding: 25px 0;
	text-align: center;
}
.ani_footer img{
	max-width: 350px;
}
.ani_sli{
	position: relative;
	overflow: hidden;
	max-width: 1300px;
	margin: 0 auto;
	padding: 30px 0 50px;
}
.ani_sli .sp-mask{
	overflow: visible !important;
	height: 610px !important;
	padding-top: 140px;
}
.ani_sli_box{
	width: 230px;
	text-align: center;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
}
.ani_sli_box h4{
	padding: 25px 0 2px;
	font-size: 26px;
	font-weight: 800;
}
.ani_sli_bdr{
	position: absolute;
	z-index: 9;
	left: 50%;
	top: 44px;
	transform: translateX(-50%);
	width: 418px;
	height: 418px;
	border-radius: 50%;
	border: 1px solid #fff;
	pointer-events: none;
}
.ani_sli_btn{
	position: absolute;
	z-index: 9;
	left: 50%;
	top: 408px;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 7px 7px #1477bd;
	pointer-events: none;
}
.ani_sli_btn::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border: none;
	border-style: solid;
	border-color: #220bff transparent transparent transparent;
	border-width: 25px 13px 0 13px;
	transform: translateX(-40%) translateY(-50%) rotate(-90deg);
}
.ani_mus{
	display: flex;
	justify-content: space-between;
}
.ani_mus_left{
	width: 35.7%;
	margin-left: 6.5%;
	padding-top: 25px;
	font-size: 17px;
	text-align: center;
}
.ani_mus_right{
	margin-top: 70px;
	width: 48.2%;
	font-size: 20px;
	color: #fff;
}
.ani_mus_left h3{
	margin: 25px 0 10px;
	font-size: 33px;
	font-weight: 800;
	line-height: 1.4;
}
.ani_mus_left audio{
	margin: 30px auto 0;
	width: 100%;
	height: 40px;
}
.ani_mus_pic{
	border-radius: 50%;
	padding: 10px;
	border: 1px solid #fff;
}
.ani_mus_pic img{
	border-radius: 50%;
	box-shadow: 30px 30px 30px rgba(4,23,163,0.15);
	animation: rotate 80s linear infinite;
	animation-play-state: paused;
	transform-origin: center center;
	will-change: transform;
}
.ui_modal_body .ani_mus_pic.is_on img{
	animation-play-state: running;
}
.ani_mus_dl{
	margin: 30px auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 232px;
	height: 49px;
	border-radius: 33px;
	background: #220bff;
	border: 3px solid currentcolor;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	text-decoration: none;
}
.ani_mus_dl::after{
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	width: 19px;
	height: 16px;
	background: url(../img/ico_dl.webp) no-repeat;
	background-size: 100% 100%;
}
.ani_mus_note{
	position: relative;
	z-index: 3;
	font-size: 13px;
	text-align: center;
}
.ani_mus_lyrics{
	padding-right: 25px;
	overflow-y: auto;
	max-height: 630px;
	line-height: 1.85;
}
.ani_mus_lyrics h4{
	padding-bottom: 3px;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #a3a3a3;
	font-size: 14px;
	color: #8b8b8b;
}
.ani_mus_lyrics p{
	margin-bottom: 1.1em;
}
.ani_wps_item{
	display: block;
	width: 15.6vw;
	box-shadow: 10px 10px 15px rgba(73,73,73,0.3);
}
@media only screen and (min-width: 768px) {
	.ani_mus_lyrics::-webkit-scrollbar {
	  width: 6px;
	  border-radius: 5px;
	}
	.ani_mus_lyrics::-webkit-scrollbar-thumb {
	  background: linear-gradient(to bottom right, #fff 0%, #fff 100%);
	  border-radius: 5px;
	}
	.ani_mus_lyrics::-webkit-scrollbar-track {
	  background-color: #5cd5ff;
	  border: 1px solid #5cd5ff;
	  border-radius: 5px;
	}
	.ani_mus_lyrics::-webkit-scrollbar-button {
	  background-color: #5cd5ff;
	  border-radius: 5px;
	  height: 0;
	}
	.ani_mus_lyrics::-webkit-scrollbar-button:hover {
	  background-color: #5cd5ff;
	}
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	.ani_sli{
		margin: 10px -4vw 0;
		padding-top: 50px;
	}
	.ani_sli_box{
		width: 190px;
		min-height: 320px;
		padding: 14px;
		font-size: 2vw;
	}
	.ani_sli .sp-mask{
		padding-top: 40px;
		height: 410px !important;
	}
	.ani_sli_box h4{
		padding-bottom: 3px;
		font-size: 4vw;
		line-height: 1.3;
	}
	.ani_sli_bdr{
		width: 282px;
		height: 282px;
		top: 20px;
	}
	.ani_sli_btn{
		top: 255px;
		transform: translateX(-50%) scale(0.75);
	}
	.ani_mus{
		padding-bottom: 20px;
		display: block;
	}
	.ani_mus_left{
		width: 70vw;
		margin: 0 auto 32px;
		font-size: 13px;
	}
	.ani_mus_right{
		width: 100%;
		padding: 0;
		margin-top: 50px;
		border-radius: 15px;
	}
	.ani_mus_lyrics{
		height: auto;
		max-height: none;
		overflow: visible;
		padding-right: 5px;
		font-size: 16px;
		line-height: 1.65;
	}
	.ani_mus_left h3{
		margin-top: 15px;
		margin-bottom: 6px;
		font-size: 30px;
	}
	.ani_mus_left audio{
		position: relative;
		width: 100%;
		height: 32px;
		margin: 20px auto 0;
	}
	.ani_mus_dl{
		width: 50vw;
		height: 10vw;
		font-size: 3.2vw;
		margin: 15px auto 10px;
		box-shadow: 0 7px 7px #1477bd;
	}
	.ani_mus_note{
		font-size: 3.2vw;
	}
	.ani_mus_lyrics h4{
		font-size: 2.92vw;
		padding-bottom: 2vw;
		margin-bottom: 1.2em;
	}
	.ani_mus_lyrics p{
		margin-bottom: 1.3em;
	}
}

.page_wp{
	overflow: hidden;
	width: 100%;
}
.main_wp{
	position: relative;
	z-index: 2;
	margin-bottom: -1.3vw;
}
.main_wp img{
	width: 100%;
}
.main_btn{
	position: fixed;
	z-index: 90;
	right: 2vw;
	bottom: 2vw;
	width: 11vw;
	opacity: 0 !important;
	transform: 0.3s;
	pointer-events: none;
}
.main_btn.is_on{
	opacity: 1 !important;
	pointer-events: auto;
	transform: 0.3s;
	animation: fade_shake3 0.5s linear forwards;
}
.main_btn.no_shake{
	animation: none;
}
.main_btn.is_on:hover{
	animation: fade_shake3 0.5s linear forwards !important;
}
@keyframes fade_shake3 {
	0% {transform: scale(1);}
	16% {transform: scale(1.1);}
	28% {transform: scale(0.9);}
	44% {transform: scale(1.05);}
	59% {transform: scale(0.95);}
	73% {transform: scale(1);}
	100% {transform: scale(1);}
}
@keyframes fade_shake4 {
	0% {transform: scale(1);}
	16% {transform: scale(1.1);}
	28% {transform: scale(0.9);}
	44% {transform: scale(1.05);}
	59% {transform: scale(0.95);}
	73% {transform: scale(1);}
	100% {transform: scale(1);}
}
.story_wp{
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 200px 0;
	background: linear-gradient(180deg, #f573ec 0%, #f5942f 100%);
	
}
.story_wp::before{
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../img/story_bg_pc.webp) no-repeat center top;
}
.story_wp .ui_wide{
	position: relative;
	z-index: 3;
}
.story_title{
	max-width: 496px;
	margin: 0 auto 68px;
}
.story_wp p{
	position: relative;
	margin-bottom: 2em;
	font-size: 22px;
	line-height: 2.3;
	text-align: center;
	text-shadow: 
	1px 1px 3px rgba(210,86,120,0.8),
	1px 1px 8px rgba(210,86,120,0.8),
	1px 1px 14px rgba(210,86,120,0.8);
}
.story_ruby{
	position: relative;
}
.story_ruby span{
	position: absolute;
	left: 50%;
	top: -0.8em;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.15em;
}
[class *= "story_p"]{
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
}
.story_p01{
	position: absolute;
	z-index: 3;
	left: 38px;
	top: -46px;
	width: 140px;
	transition-delay: 1s;
	transform: translateY(0);
	transition-duration: 0.2s;
}
.story_p02{
	position: relative;
	top: -5px;
	margin-right: 3px;
	width: 154px;
}
.story_p03{
	position: relative;
	z-index: 2;
	top: -10px;
	margin-right: -15px;
	width: 60px;
}
.story_p06{
	position: relative;
	top: -5px;
	margin-left: 3px;
	width: 145px;
}
.story_p07{
	position: relative;
	z-index: 2;
	top: -10px;
	margin-left: -15px;
	width: 50px;
}
.story_p04{
	position: relative;
	top: -10px;
	margin-left: 2px;
	width: 154px;
}
.story_p05{
	position: relative;
	top: -5px;
	margin-left: 2px;
	width: 239px;
}
.story_wp .story_fontL{
	font-size: 42px;
	line-height: 1.6;
	letter-spacing: -0.05em;
}
.story_btn_box{
	position: relative;
}
.story_btn{
	position: absolute;
	z-index: 5;
	left: calc(50% - 275px);
	top: 120px;
	width: 550px;
}


.movie_wp{
	position: relative;
	z-index: 4;
	margin-top: -440px;
	padding: 505px 0 270px;
	height: 2122px;
	background: url(../img/movie_bg01_pc.webp) no-repeat center top;
}
.movie_wp::before{
	content: '';
	position: absolute;
	z-index: 2;
	left: 0;
	top: 250px;
	width: 100%;
	height: 100%;
	background: url(../img/movie_bg02_pc.webp) no-repeat center top;
	pointer-events: none;
}
.movie_wp::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
@media screen and (min-width:768px) { /*PC*/
	.movie_bg{
		padding-top: 1px;
		position: relative;
		z-index: 3;
		background: #f58f4c;
	}
	.movie_bg::after{
		content: '';
		position: absolute;
		z-index: 3;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 50%;
		background: url(../img/intro_bg_pc.webp) repeat-y center top;
	}
	.movie_wp_b{
		height: 3876px;
		background-image: url(../img/movie_bg01_b_pc.webp);
	}
	.movie_wp_b::before{
		background-image: url(../img/movie_bg02_b_pc.webp);
	}
	
	.movie_wp_c{
		height: 4724px;
		background-image: url(../img/movie_bg01_c_pc.webp);
	}
	.movie_wp_c::before{
		background-image: url(../img/movie_bg02_c_pc.webp);
	}
	
	
	
	
}

.movie_title{
	max-width: 646px;
	margin: 0 auto 80px;
}
.movie_item {
    position: relative;
    padding-top: 56.24%;
}
.movie_item img,
.movie_item iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.movie_item_blue{
	padding-top: 55%;
	overflow: hidden;
	border-radius: 30px;
	border: 12px solid #092cd6;
}
.movie_lead{
	padding-bottom: 25px;
	text-align: center;
}
.movie_lead01{
	transition: 0.5s;
	opacity: 0;
	transform: scale(0.2);
}
.movie_lead01.ui_fadein{
	opacity: 1;
	transform: scale(1);
}
.movie_lead02{
	max-width: 350px;
	margin: 0 auto;
	line-height: 0;
}
.movie_note{
	text-align: center;
	padding: 30px 0 80px;
}
.movie_note img{
	width: auto;
	height: 51px;
}

.movie_sli_box .sp-arrows {
    bottom: auto;
    top: calc(50% - 100px);
}
.movie_sli_box .sp-previous-arrow {
    width: 75px;
    height: 75px;
    left: auto;
	right: calc(50% + 580px);
    background: url(../img/sli_left2.webp) no-repeat center center;
    background-size: 100% 100%;
}
.movie_sli_box .sp-next-arrow {
    width: 75px;
    height: 75px;
    right: auto;
	left: calc(50% + 580px);
    background: url(../img/sli_right2.webp) no-repeat center center;
    background-size: 100% 100%;
}
.intro_wp{
	position: relative;
	z-index: 4;
	padding: 1px 0 180px;
	background: url(../img/intro_bg_pc.webp) repeat-y center top;
}
.intro_top{
	position: relative;
	z-index: 3;
	max-width: 1540px;
	margin: -70px auto 0;
}
.intro_top_pop{
	width: 580px;
	margin: 0 auto;
	display: flex;
	flex-direction: row-reverse;
}
.intro_top_pop dt{
	width: 155px;
	margin: 0 -12px;
}
.intro_top_pop dd{
	position: relative;
	z-index: 3;
	margin: 20px -12px;
}
.intro_top_pop_b{
	margin-top: -80px;
	flex-direction: row;
	justify-content: flex-start;
}
.intro_top_pop_b dt{
	width: 177px;
}
.intro_drop{
	position: relative;
	z-index: 2;
	max-width: 1468px;
	margin: -255px auto 120px;
	transform: translateX(-3.5%);
}
.intro_drop01{
	position: absolute;
	top: 64.5%;
	left: 54.6%;
	width: 23px;
}
.intro_drop02{
	position: absolute;
	top: 73%;
	left: 53.2%;
	width: 24px;
}
.intro_drop03{
	position: absolute;
	top: 91%;
	left: 52%;
	width: 152px;
}
.intro_drop04{
	position: absolute;
	top: 115%;
	left: 47.5%;
	width: 64px;
}


.intro_title{
	max-width: 898px;
	margin: 0 auto -10px;
}
.intro_sli_box{
	margin-left: -70px;
	margin-right: -70px;
	margin-bottom: 220px;
}
.intro_sli_pd{
	padding: 80px 70px 20px;
}
[class *= "intro_sli_item"]{
	position: relative;
	font-size: 20px;
}
.intro_sli_text{
	position: absolute;
	left: 8%;
	bottom: 0;
	padding-bottom: 25px;
	width: 84%;
	font-weight: 500;
}
.intro_sli_photo_box{
	overflow: hidden;
	position: absolute;
	left: 0;
	top: -42px;
	width: 100%;
	height: 542px;
}
.intro_sli_photo{
	position: absolute;
	z-index: 1;
	left: 54.2%;
	width: 45.45%;
	transform: translate(-50%, 10px) scale(1);
}
.intro_sli_photo>div:last-child{
	position: relative;
	z-index: 3;
}
.intro_sli_photo_xs{
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-41%) translateY(4%) scale(0.87);
	transform-origin: 100% 100%;
}
.intro_sli_photo_s{
	position: absolute;
	z-index: 2;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-26%) translateY(-2%) scale(0.88);
	transform-origin: 100% 100%;
}
.intro_sli_pop{
	position: absolute;
	z-index: 2;
	left: 0;
	top: 18%;
	opacity: 0;
	transform: translate(0px, -10px) scale(0.3);
	transition: 0.15s;
	transition-delay: 2.1s;
}
.intro_sli_name{
	position: absolute;
	z-index: 3;
	right: 13%;
	top: -28px;
	width: 14%;
	text-align: right;
	opacity: 0;
	transform: translate(0px, 0) scale(1);
	transition: 0.8s;
	transition-delay: 1.4s;
}
.intro_sli_item_a{
	color: #303030;
}
.intro_beat{
	display:flex;
	justify-content: center;
	align-items:flex-end;
}
.sp-selected .intro_beat > div{
	will-change:transform;
	animation: beatWave 1.2s linear infinite;
}
@media screen and (max-width:767px) {
	.sp-selected .intro_beat > div{
		animation: beatWave 1.28s linear infinite;
	}
}
.intro_beat > div:nth-child(1){animation-delay:0s;}
.intro_beat > div:nth-child(2){animation-delay:0.08s;}
.intro_beat > div:nth-child(3){animation-delay:0.16s;}
.intro_beat > div:nth-child(4){animation-delay:0.24s;}
.intro_beat > div:nth-child(5){animation-delay:0.32s;}
.intro_beat > div:nth-child(6){animation-delay:0.4s;}
.intro_beat > div:nth-child(7){animation-delay:0.48s;}
.intro_beat > div:nth-child(8){animation-delay:0.56s;}
.intro_beat > div:nth-child(9){animation-delay:0.64s;}
.intro_beat > div:nth-child(10){animation-delay:0.72s;}
.intro_beat > div:nth-child(11){animation-delay:0.8s;}
.intro_beat > div:nth-child(12){animation-delay:0.88s;}
.intro_beat > div:nth-child(13){animation-delay:0.96s;}
.intro_beat > div:nth-child(14){animation-delay:1.04s;}
.intro_beat > div:nth-child(15){animation-delay:1.12s;}
.intro_beat > div:nth-child(16){animation-delay:1.2s;}

@keyframes beatWave{
	0%{
		transform:translateY(0);
	}
	14.99%{
		transform:translateY(0);
	}
	15%{
		transform:translateY(-10px);
	}
	29.99%{
		transform:translateY(-10px);
	}
	30%{
		transform:translateY(-20px);
	}
	44.99%{
		transform:translateY(-20px);
	}
	45%{
		transform:translateY(-10px);
	}
	59.99%{
		transform:translateY(-10px);
	}
	60%{
		transform:translateY(0);
	}
	100%{
		transform:translateY(0);
	}
}
@media screen and (max-width:767px) {
	.intro_beat > div:nth-child(10),.intro_beat > div:nth-child(11),.intro_beat > div:nth-child(12),.intro_beat > div:nth-child(13),.intro_beat > div:nth-child(14),.intro_beat > div:nth-child(15),.intro_beat > div:nth-child(16){
		display: none;
	}
	
}

@media screen and (min-width:768px) { /*PC*/
	
	.intro_sli_item_a .intro_sli_pop{
		left: -5.8%;
		width: 58.5%;
	}
	.intro_sli_item_a .intro_sli_text{
		padding-left: 15%;
	}
	.intro_sli_item_a .intro_sli_name{
		width: 16.73%;
		right: 9.4%;
	}
	.intro_a05{
		position: absolute;
		left: -2%;
		bottom: 0;
		width: 16%;
	}
	.intro_sli_item_b .intro_sli_photo{
		width: 42%;
	}
	.intro_sli_item_b .intro_sli_pop{
		left: 6%;
		top: 35%;
		width: 54.2%;
	}
	.intro_sli_item_b .intro_sli_text{
		padding-right: 15%;
	}
	.intro_b05{
		position: absolute;
		right: -4%;
		bottom: -3.5%;
		width: 21%;
	}
	.intro_sli_item_c .intro_sli_photo{
		width: 53%;
		left: 52.4%;
	}
	.intro_sli_item_c .intro_sli_photo_s{
		transform: translateX(-21%) translateY(-0%) scale(0.92);
	}
	.intro_sli_item_c .intro_sli_photo_xs{
		transform: translateX(-43%) translateY(0) scale(0.83);
	}
	.intro_sli_item_c .intro_sli_pop{
		top: 16%;
		left: 2%;
		width: 51.3%;
	}
	.intro_sli_item_c .intro_sli_text{
		padding-right: 15%;
	}
	
	.intro_c05{
		position: absolute;
		right: -6%;
		bottom: -20%;
		width: 20.8%;
	}
	.intro_sli_item_d .intro_sli_photo{
		width: 41.6%;
		margin-left: -4%;
	}
	.intro_sli_item_d .intro_sli_photo_s{
		transform: translateX(-25.5%) translateY(3%) scale(0.92);
	}
	.intro_sli_item_d .intro_sli_photo_xs{
		transform: translateX(-45%) translateY(4%) scale(0.86);
	}
	.intro_sli_item_d .intro_sli_pop{
		top: 34%;
		left: 7%;
		width: 48%;
	}
	.intro_sli_item_d .intro_sli_text{
		padding-left: 12%;
	}
	.intro_sli_item_d .intro_sli_name{
		right: 16%;
		width: 10.2%;
	}
	.intro_d05{
		position: absolute;
		left: -6%;
		bottom: 0;
		width: 19%;
	}
	.intro_sli_item_e .intro_sli_photo_box,
	.intro_sli_item_f .intro_sli_photo_box,
	.intro_sli_item_g .intro_sli_photo_box{
		height: 490px;
	}
	.intro_sli_item_e .intro_sli_photo{
		width: 39%;
		left: 55%;
	}
	.intro_sli_item_e .intro_sli_photo_s{
		transform: translateX(-36%) translateY(-9%) scale(0.83);
	}
	.intro_sli_item_e .intro_sli_photo_xs{
		transform: translateX(-58%) translateY(-9%) scale(0.76);
	}
	.intro_sli_item_e .intro_sli_pop{
		left: 12%;
		top: 38.8%;
		width: 17.73%;
	}
	.intro_e05,.intro_f05,.intro_g05{
		margin: 1% -2% -2%;
	}
	.intro_sli_item_f .intro_sli_photo{
		width: 36.4%;
		left: 52%;
	}
	.intro_sli_item_f .intro_sli_photo_s{
		transform: translateX(-30%) translateY(0%) scale(0.92);
	}
	.intro_sli_item_f .intro_sli_photo_xs{
		transform: translateX(-55%) translateY(0%) scale(0.84);
	}
	.intro_sli_item_f .intro_sli_pop{
		left: 14%;
		top: 38.8%;
		width: 17.73%;
	}
	.intro_sli_item_f .intro_sli_name{
		right: 22%;
		width: 8%;
	}
	.intro_sli_item_g .intro_sli_photo{
		width: 42%;
	}
	.intro_sli_item_g .intro_sli_photo_s{
		transform: translateX(-22%) translateY(4%) scale(0.95);
	}
	.intro_sli_item_g .intro_sli_photo_xs{
		transform: translateX(-48%) translateY(4%) scale(0.88);
	}
	.intro_sli_item_g .intro_sli_pop{
		left: 13%;
		top: 38.8%;
		width: 17.73%;
	}
	
}

.intro_sli_box .sp-arrows{
	bottom: auto;
	top: calc(50% - 32px);
}
.intro_sli_box .sp-previous-arrow{
	width: 75px;
	height: 75px;
	left: 30px;
	background: url(../img/sli_left.webp) no-repeat center center;
	background-size: 100% 100%;
}
.intro_sli_box .sp-next-arrow{
	width: 75px;
	height: 75px;
	right: 30px;
	background: url(../img/sli_right.webp) no-repeat center center;
	background-size: 100% 100%;
}
.intro_tc01{
	position: relative;
	/* overflow: hidden; */
}
.intro_tc02{
	position: absolute;
	top: 32%;
	left: 1%;
	width: 33.2%;
}
.intro_tc03{
	position: absolute;
	top: 61%;
	left: 39%;
	width: 4.8%;
}
#yogurt{
	position: relative;
	top: -80px;
}
.contents_wp{
	position: relative;
	z-index: 5;
	padding: 160px 0 70px;
	background: #00aeff;
	color: #fff;
}
.contents_wp::before{
	content: '';
	position: absolute;
	left: 0;
	top: -15px;
	width: 100%;
	height: 41px;
	background: url(../img/contents_bg_pc.webp) no-repeat;
}
.contents_title{
	text-align: center;
	margin-bottom: 34px;
}
.contents_02{
	margin-bottom: 20px;
	text-align: center;
}
.contents_lead{
	font-size: 24px;
	text-align: center;
}
.contents_note{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0 60px;
}
.contents_note p{
	padding: 2px 5px 2px 10px;
	background: #fff;
	color: #00aeff;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
}
.wall_title{
	max-width: 212px;
	margin: 0 auto 30px;
	text-align: center;
}
.wall_wp{
	position: relative;
	overflow: hidden;
	padding: 110px 0 240px;
	background: #00aeff;
	color: #fff;
}
.wall_left{
	position: absolute;
	right: calc(50% + 220px);
	top: 0;
	width: 802px;
}
.wall_right{
	position: absolute;
	left: calc(50% + 220px);
	top: 0;
	width: 802px;
}
.cast_wp{
	position: relative;
	padding: 1px 0 20px;
	background: linear-gradient(180deg , #f573ec 0% , #f5942f 100%);
	color: #fff;
}
.cast_01{
	position: absolute;
	top: -60px;
	right: calc(50% + 5px);
	width: 105px;
	opacity: 0.2;
	transform: translateX(-60vw);
}
.cast_02{
	position: absolute;
	top: -60px;
	left: calc(50% + 5px);
	width: 105px;
	opacity: 0.2;
	transform: translateX(60vw);
}
.cast_anim{
	position: relative;
	height: 200px;
	transform: translateY(0) !important;
}
.ui_fadein .cast_01{
	animation: left_in 7s infinite ease-out;
}
.ui_fadein .cast_02{
	animation: right_in 7s infinite ease-out;
}
@keyframes left_in {
	0% { transform: translateX(-60vw); opacity: 0.2;}
	25% { transform: translateX(0); opacity: 1;}
	60% { transform: translateX(0); opacity: 1;}
	100% { transform: translateX(-60vw); opacity: 0.2;}
}
@keyframes right_in {
	0% { transform: translateX(60vw); opacity: 0.2;}
	25% { transform: translateX(0); opacity: 1;}
	60% { transform: translateX(0); opacity: 1;}
	100% { transform: translateX(60vw); opacity: 0.2;}
}
.cast_title{
	max-width: 357px;
	margin: 0 auto 90px;
}
.cast_item{
	max-width: 1080px;
	margin: 0 auto 180px;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.cast_main{
	width: 46.4%;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.cast_main_text{
	margin-bottom: 20px;
	margin-left: -10px;
	margin-right: -10px;
}
.cast_main h3{
	margin-bottom: 10px;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.25;
}
.cast_main_pic{
	position: relative;
	margin: 0 0 30px;
}
.cast_main_btn{
	order: 3;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px auto 0;
	width: 310px;
	height: 70px;
	background: #fff;
	color: #1758dd;
	text-decoration: none;
	font-size: 26px;
	font-weight: 800;
	border: 3px solid #1758dd;
	border-radius: 35px;
	box-shadow: 0 7px 0 #e0e03d;
}
.cast_main_btn::after{
	content: '';
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 19px;
	background: url(../img/cast_arr.webp) no-repeat center center;
	background-size: 100% 100%;
}
.cast_pic{
	position: absolute;
	top: 0;
	right: 0;
	width: 42%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.cast_pic_l{
	max-width: 230px;
}
.cast_pic_s{
	max-width: 185px;
}
.cast_pic img{
	max-height: 521px;
	border-radius: 8px;
	box-shadow: 30px 30px 15px rgba(104,58,71,0.4);
}
.cast_item_dir .cast_main{
	margin-left: auto;
}
.cast_item_dir .cast_pic{
	left: 0;
	right: auto;
}
.cast_item_row{
	max-width: 875px;
}
.cast_item_row .cast_main{
	width: 58.28%;
}
.cast_item_row .cast_main_pic{
	margin-top: 0;
}
.cast_item_row .cast_pic{
	width: 27%;
}
.tsuk_scr{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	background: #000;
	line-height: 0;
}
.camp_wp{
	position: relative;
	padding: 110px 0 200px;
	background: url(../img/camp_bg.webp) repeat-y center top;
}
.camp_wp::before{
	content: '';
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../img/camp_bg02_pc.webp) no-repeat center 65px;
	pointer-events: none;
}
.camp_title{
	margin-bottom: 60px;
	text-align: center;
}
.camp_btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 140px;
    max-width: 535px;
    height: 70px;
    background: #ffed10;
    color: #000;
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    border: 3px solid currentcolor;
    border-radius: 35px;
    box-shadow: 0 7px 0 #1e38d3;
}
.camp_btn::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 19px;
    background: url(../img/camp_arr.webp) no-repeat center center;
    background-size: 100% 100%;
}
.camp_03{
	display: block;
	max-width: 811px;
	margin: 0 auto;
}
.camp_top{
	max-width: 900px;
	margin: 80px auto 65px;
}
.camp_top_pop{
	margin-top: -50px;
	display: flex;
	align-items: flex-end;
}
.camp_top_pop dt{
	margin: 0 -8px;
}
.camp_top_pop dd{
	position: relative;
	z-index: 2;
	margin: 0 -8px 30px;
}
.camp_top_pop_dir{
	flex-direction: row-reverse;
}
.sns_wp{
	padding: 45px 0 80px;
	background: #fede59;
}
.sns_pic{
	position: relative;
	display: flex;
}
.sns_01{
	margin-left: auto;
	margin-right: 1.8%;
	width: 57.18%;
}
.sns_02{
	position: absolute;
	left: 8.2%;
	top: -3px;
	width: 45%;
	opacity: 0;
	transform: translate(0px, -10px) scale(1.8);
	transition: 0.18s;
	transition-delay: 0.3s;
}
.sns_02.ui_fadein{
	opacity: 1;
	transform: translate(0px, 0px) scale(1);
}
.sns_list{
	position: absolute;
	left: 0;
	top: 352px;
	width: 100%;
	display: flex;
	justify-content: center;
}
.sns_list a{
	max-width: 241px;
	margin: 0 12px;
}
.sns_box{
	position: relative;
	z-index: 2;
	padding: 50px;
	margin-top: -90px;
	background: #fff;
	color: #000;
	border-radius: 15px;
	border: 2px solid #000;
	text-align: center;
	font-size: 24px;
}
.sns_list02{
	margin-top: 20px;
	display: flex;
	justify-content: center;
}
.sns_list02 a{
	width: 76px;
	margin: 0 20px;
}
.sns_03{
	position: absolute;
	left: 20%;
	bottom: 0;
	width: 78px;
	opacity: 0;
	transform: translate(0px, -30px);
}
.sns_box.ui_fade{
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}
.ui_fadein .sns_03{
	animation: fade_jump 0.6s 0.4s forwards ease-in-out;
}
@keyframes fade_jump {
	0% { opacity: 0; transform: translate(0px, 50px);}
	40% { opacity: 1; transform: translate(0px, -25px);}
	60% { opacity: 1; transform: translate(0px, -30px);}
	80% { opacity: 1; transform: translate(0px, -15px);}
	100% { opacity: 1; transform: translate(0px, 0px);}
}
.cast_svg{
	position: absolute;
	left: 77.5%;
	top: -3%;
	width: 28%;
}
.cast_item_b .cast_svg{
	left: 78.5%;
	top: 2%;
	width: 27%;
}
.cast_item_c .cast_svg{
	left: 57.5%;
	top: 22%;
	width: 26%;
}
.cast_item_d .cast_svg{
	left: 53%;
	top: 43%;
	width: 44%;
}
.cast_item_e .cast_svg{
	left: 16.5%;
	top: 22%;
	width: 24%;
}
.cast_item_f .cast_svg{
	left: 12%;
	top: 17%;
	width: 23.8%;
}
.cast_svg svg{
    width:100%;
    height:auto;
}
.drawPath{
    fill:none;
    stroke:#ff0b45;
    stroke-width:5;
    stroke-linecap:round;
    stroke-linejoin:round;
	vector-effect: non-scaling-stroke;
	shape-rendering:geometricPrecision;
}
.cast_pic>div{
	transition: 1.2s;
	opacity: 0;
	transform: translateY(20px);
}
.ui_fadein.cast_pic>div{
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.1s;
}
.ui_fadein.cast_pic .cast_pic_s{
	transition-delay: 0.5s;
}

/* .scr_content {
	display: flex;
	width: max-content;
	animation: scroll-left 60s linear infinite;
}
.scr_right_in .scr_content{
	animation: scroll-right 60s linear infinite;
}
.scr_content img{
	width: auto;
	max-width: none;
	height: 35px;
}
@keyframes scroll-left {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
 @keyframes scroll-right {
	0% { transform: translateX(-50%) }
	100% { transform: translateX(0); }
} */
.scr_wrap{
    overflow:hidden;
    width:100%;
}
.scr_content{
    display:inline-flex;
    flex-wrap:nowrap;
    white-space:nowrap;

    animation:scroll-left 30s linear infinite;

    transform:translate3d(0,0,0);
    will-change:transform;
}
.scr_right_in .scr_content{
	animation: scroll-right 30s linear infinite;
}
.scr_content img{
    flex-shrink:0;
    width:auto;
    max-width:none;
    height:35px;
}
@keyframes scroll-left{
    from{
        transform:translate3d(0,0,0);
    }
    to{
        transform:translate3d(-50%,0,0);
    }
}
@keyframes scroll-right{
    from{
		transform:translate3d(-50%,0,0);
    }
    to{
        transform:translate3d(0,0,0);
    }
}
#movie{
	position: relative;
	top: -120px;
}
#point{
	position: relative;
	top: -280px;
}
.story_lead .ui_fade,.story_lead .ui_fade_i{
	visibility: visible;
	transform: translate(0px, -20px) scale(2);
	transition: 0.3s;
	transition-delay: 0.3s;
}
.story_lead .ui_fade_i{
	transform: translate(0px, -20px) scale(2);
}
.story_lead .ui_fadein{
	transform: translate(0px, 0px) scale(1);
}
.story_cir{
	max-width: 1066px;
	margin: 0 auto;
	position: relative;
}
.story_cir01{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 66.23%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 3;
}
.story_cir02{
	position: relative;
	z-index: 1;
}
.story_cir03{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-50%) translateY(-50%) scale(0.475);
}
.story_cir04{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-50%) translateY(-50%) scale(0.225);
}
.story_cir01 img{
	animation: rotate 80s infinite linear;
}
.story_cir02 img{
	animation: rotate_dir 40s infinite linear;
}
.story_cir03 img{
	animation: rotate 40s infinite linear;
}
.story_cir04 img{
	animation: rotate_dir 40s infinite linear;
}
@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
@keyframes rotate_dir {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(-360deg); }
}
.intro_top_pop.ui_fade,
.camp_top_pop.ui_fade{
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}
.intro_top_pop .ui_fade_i,
.camp_top_pop .ui_fade_i{
	transition: 0.5s;
	transition-delay: 0.3s !important;
	opacity: 0;
	transform: scale(0.2);
	transform-origin: 100% 100%;
}
.intro_top_pop_b .ui_fade_i{
	transform-origin: 0 100%;
}
.intro_top_pop .intro_pop03{
	transition-delay: 0.4s !important;
}
.intro_top_pop .ui_fadein,
.camp_top_pop .ui_fadein{
	opacity: 1;
	transform: scale(1);
}
.camp_top_pop .ui_fade_i{
	transform-origin: 0 100%;
}
.camp_top_pop_dir .ui_fade_i{
	transform-origin: 100% 100%;
}
[class *= "intro_drop0"]{
	opacity: 0;
}
.intro_drop01.ui_fade{
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}
.intro_drop01.ui_fadein{
	animation: drop_in_out 5s infinite linear;
}
.intro_drop01.ui_fadein ~ .intro_drop02{
	animation: drop_in_out 5s 0.2s infinite linear;
}
.intro_drop01.ui_fadein ~ .intro_drop03{
	animation: drop_in_out 5s 0.4s infinite linear;
}
.intro_drop01.ui_fadein ~ .intro_drop04{
	animation: drop_in_out 5s 0.6s infinite linear;
}
@keyframes drop_in_out {
	0% { opacity: 0; }
	10% { opacity: 1; }
	33% { opacity: 1; }
	60% { opacity: 1; }
	70% { opacity: 0; }
	100% { opacity: 0; }
}
.sp-selected .ui_fadein{
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px) scale(1);
}
.sp-selected .intro_sli_photo.ui_fadein{
	transform: translate(-50%, 0px) scale(1);
}
.intro_sli_photo_m,.intro_sli_photo_s,.intro_sli_photo_xs{
	opacity: 0;
	transition: 0.3s;
}
.intro_sli_photo_xs{
	transition-delay: 0.5s;
}
.intro_sli_photo_s{
	transition-delay: 0.8s;
}
.intro_sli_photo_m{
	transition-delay: 1.1s;
}
.sp-selected .ui_fadein .intro_sli_photo_m,
.sp-selected .ui_fadein .intro_sli_photo_s,
.sp-selected .ui_fadein .intro_sli_photo_xs{
	opacity: 1;
}
.sp-selected .ui_fadein .intro_sli_name{
	opacity: 1;
	transform: translate(0px, 0px);
}
.sp-selected .ui_fadein .intro_sli_pop{
	opacity: 1;
	animation: fade_shake2 0.25s 2.1s forwards linear;
}
.camp_title.ui_fade{
	opacity: 0;
	visibility: visible;
	transform: translate(0px, -10px);
}
.camp_title.ui_fadein{
	animation: fade_shake 0.16s 0.3s forwards linear;
}
@keyframes fade_shake {
	0% { opacity: 0; transform: translate(0px, -10px) scale(1.8);}
	80% { opacity: 1; transform: translate(0px, 0px) scale(0.85);}
	90% { opacity: 1; transform: translate(0px, 0px) scale(1.15);}
	100% { opacity: 1; transform: translate(0px, 0px) scale(1);}
}
@keyframes fade_shake2 {
	0% { opacity: 0; transform: translate(0px, -10px) scale(0.3);}
	70% { opacity: 1; transform: translate(0px, 0px) scale(1.2);}
	100% { opacity: 1; transform: translate(0px, 0px) scale(1);}
}


@media screen and (min-width:768px) { /*PC*/
	
	#slide02 .sp-slides{
		display: flex;
	}
	#slide02 .sp-slide{
		position: static;
		margin: 0 2%;
	}
	
}
.slide05_wp{
	overflow: hidden;
	padding: 20px 0 70px;
}
.slide05_wp .sp-mask{
	overflow: visible;
}
.slide05_wp .sp-buttons{
	bottom: -80px;
}
.slide05_wp .sp-arrows {
    bottom: auto;
    top: calc(50% - 32px);
}
.slide05_wp .sp-previous-arrow {
    width: 60px;
    height: 60px;
    left: auto;
	right: calc(50% + 475px);
    background: url(../img/sli_left.webp) no-repeat center center;
    background-size: 100% 100%;
}
.slide05_wp .sp-next-arrow {
    width: 60px;
    height: 60px;
    right: auto;
	left: calc(50% + 475px);
    background: url(../img/sli_right.webp) no-repeat center center;
    background-size: 100% 100%;
}

@media screen and (max-width:767px) { /*SP*/
	.intro_sli_photo_m,.intro_sli_photo_s,.intro_sli_photo_xs{
		transition-duration: 0.4s;
	}
	
	
}
@media screen and (min-width:1921px) {
	.contents_wp::before{
		background-position: center top;
		background-size: contain;
	}
	.intro_wp,.camp_wp,.movie_bg::after{
		background-size: 100% auto;
	}
}


@media only screen and (min-width: 768px) and (max-width: 1100px) { /*PAD*/
	.story_title{
		width: 45vw;
	}
	.story_wp p{
		font-size: 2vw;
	}
	.story_p01{
		left: calc(50% - 43vw);
		top: -6.6vw;
		width: 12.7vw;
	}
	.story_p02 {
	    top: -0.5vw;
	    margin-left: 0.3vw;
	    width: 18.7vw;
	}
	.story_p03 {
	    top: -1vw;
	    margin-left: -1.4vw;
	    width: 5.7vw;
	}
	.story_p04 {
	    top: -1vw;
	    margin-left: 0.2vw;
	    width: 14vw;
	}
	.story_p05 {
	    top: -0.4vw;
	    margin-left: 0.2vw;
	    width: 21.7vw;
	}
	.story_wp .story_fontL{
		font-size: 3.8vw;
	}
	.story_cir{
		width: 97vw;
	}
	.movie_title{
		width: 58vw;
	}
	.movie_note img {
	    height: 5.5vw;
	}
	.movie_sli_box{
		padding: 0 15px;
	}
	.intro_top_pop{
		width: 53vw;
	}
	.intro_top_pop dt{
		min-width: 14vw;
		max-width: 14vw;
	}
	.intro_drop01{
		width: 2vw;
	}
	.intro_drop02{
		width: 4.3vw;
	}
	.intro_drop03{
		width: 13.6vw;
	}
	.intro_drop04{
		width: 5.8vw;
	}
	.intro_title{
		width: 82vw;
	}
	.intro_sli_photo_box{
		height: 46vw;
	}
	.intro_sli_item_e .intro_sli_photo_box, .intro_sli_item_f .intro_sli_photo_box, .intro_sli_item_g .intro_sli_photo_box{
		height: 42vw;
	}
	.intro_sli_text{
		font-size: 1.8vw;
		padding-bottom: 2.2vw;
	}
	.intro_sli_box .sp-button{
		width: 13vw;
		height: 11vw;
		margin: 0 1vw 0 0;
	}
	.contents_title{
		width: 63vw;
	}
	.contents_lead{
		font-size: 2.2vw;
	}
	.ani_sli_box h4{
		font-size: 2.4vw;
	}
	.ani_sli_box{
		font-size: 1vw;
	}
	.wall_title{
		width: 20vw;
	}
	.contents_note p{
		font-size: 1.3vw;
	}
	.cast_title{
		width: 32.5vw;
	}
	.cast_main h3{
		font-size: 3.6vw;
	}
	.cast_main{
		font-size: 1.8vw;
	}
	.cast_main_btn{
		width: 28vw;
		height: 6.4vw;
		font-size: 2.4vw;
		border-radius: 3.2vw;
	}
	.cast_main_btn::after{
		width: 1.8vw;
		height: 1.8vw;
	}
	.cast_pic_l{
		width: 20vw;
	}
	.cast_pic_s{
		width: 16.8vw;
	}
	.cast_pic img{
		max-height: 45vw;
	}
	.camp_title{
		width: 57.6vw;
		margin-left: auto;
		margin-right: auto;
	}
	.camp_03{
		width: 74vw;
	}
	.sns_list{
		top: 32vw;
	}
	.sns_list a{
		width: 22vw;
	}
	.sns_box{
		padding: 4.5vw;
		font-size: 2.2vw;
	}
	.sns_list02 a{
		width: 7vw;
		margin: 0 2vw;
	}
	.sns_03{
		width: 7.2vw;
	}
}


@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	.main_btn{
		width: 32vw;
		right: -5vw;
		bottom: 2vw;
	}
	.story_wp{
		margin-bottom: -50vw;
		padding: 37vw 0 15vw;
	}
	.story_wp::before{
		background-image: url(../img/story_bg_sp.webp);
		background-size: 100% auto;
	}
	.story_title{
		width: 77vw;
		margin-bottom: 10vw;
	}
	.story_wp p{
		margin-bottom: 1.9em;
		font-size: 3.73vw;
		line-height: 2.05;
	}
	.story_wp .story_fontL{
		font-size: 5.46vw;
		line-height: 1.8;
	}
	.story_ruby span{
		font-size: 1.8vw;
	}
	.story_p01{
		left: 3vw;
		top: -7vw;
		width: 20.4vw;
	}
	.story_p02{
		width: 27vw;
		top: 0;
		margin: 0;
	}
	.story_p03{
		width: 11vw;
		top: -1vw;
		margin: 0 -3vw 0 0;
	}
	.story_p04{
		width: 26.5vw;
		top: -1.5vw;
		margin-bottom: -5vw;
	}
	.story_p05{
		width: 41vw;
		top: 0;
		margin: -2vw 0 -2vw;
	}
	.story_p06{
		width: 28vw;
		top: -1vw;
		margin-left: 0;
	}
	.story_p07{
		width: 9.4vw;
		top: -2.5vw;
		margin-left: -2vw;
	}
	.story_cir{
		max-width: none;
		position: relative;
		left: -31vw;
		width: 154vw;
		height: 154vw;
	}
	.story_btn{
		left: 0;
		top: 15vw;
		width: 100%;
	}
	.movie_wp {
	    position: relative;
		margin-top: 0;
	    padding: 62vw 0 62vw;
		height: auto;
	    background-image: url(../img/movie_bg01_sp.webp);
		background-size: 100% auto;
	}
	.movie_wp::before{
		top: 22.5vw;
		background: url(../img/movie_bg03_sp.webp) no-repeat center top;
		background-size: 100% auto;
	}
	.movie_wp::after{
		background: url(../img/movie_bg02_sp.webp) no-repeat center bottom;
		background-size: 100% auto;
	}
	.movie_title{
		width: 85vw;
		margin-bottom: 10vw;
	}
	.movie_lead{
		padding-bottom: 3vw;
	}
	.movie_note{
		padding: 3vw 0 8vw;
		line-height: 0;
	}
	.movie_note img{
		height: 6vw;
	}
	.movie_wp .ui_wide .movie_note:last-child{
		margin-bottom: 0;
	}
	.movie_sli_box .sp-arrows{
		top: 21vw;
	}
	.movie_sli_box .sp-previous-arrow{
		left: 1vw;
		right: auto;
		width: 10vw;
		height: 10vw;
	}
	.movie_sli_box .sp-next-arrow{
		left: auto;
		right: 1vw;
		width: 10vw;
		height: 10vw;
	}
	.intro_wp{
		padding-bottom: 26vw;
		background-image: url(../img/intro_bg_sp.webp);
		background-size: 100% auto;
	}
	.intro_top{
		width: 84vw;
		margin: -10vw auto 0;
	}
	.intro_top_pop{
		width: 100%;
	}
	.intro_top_pop dt{
		margin: 0 -2vw;
		width: 22vw;
	}
	.intro_top_pop dd{
		margin: 2vw -2vw;
		width: 51vw;
	}
	.intro_top_pop_b{
		margin-top: -10vw;
	}
	.intro_top_pop_b dt{
		width: 25.5vw;
	}
	.intro_top_pop_b dd img{
		width: auto;
		height: 8.2vw;
	}
	.intro_drop{
		width: 100vw;
		margin: -15vw auto 16vw;
		transform: translateX(0);
	}
	.intro_drop01{
		top: 50%;
		left: 51%;
		width: 2.8vw;
	}
	.intro_drop02{
		top: 63%;
		left: 49.5%;
		width: 2.8vw;
	}
	.intro_drop03{
		top: 89%;
		left: 48%;
		width: 17vw;
	}
	.intro_drop04{
		top: 121%;
		left: 42%;
		width: 8.3vw;
	}
	.intro_title{
		margin-bottom: 6.8vw;
	}
	.intro_sli_photo_box{
		top: -6.5vw;
		height: 90vw;
		overflow: visible;
	}
	.intro_sli_photo{
		overflow: hidden;
		left: 0;
		width: 81vw;
		height: 100%;
		transform: translateX(0) !important;
	}
	.intro_sli_photo_oh{
		overflow: hidden;
	}
	.intro_sli_pop{
		width: 90%;
		left: 5%;
	}
	.intro_sli_name{
		top: -3vw;
		right: 8vw;
		width: 23vw;
	}
	.intro_sli_text{
		width: 92%;
		left: 4%;
		bottom: 5vw;
		padding: 0 !important;
		font-size: 3.45vw;
	}
	.intro_sli_text_pr{
		display: inline-block;
		padding-right: 26vw;
	}
	.intro_sli_text_pl{
		display: inline-block;
		padding-left: 26vw;
	}
	.intro_sli_item_a .intro_sli_photo{
		width: 80vw;
	}
	.intro_sli_item_a .intro_sli_photo img{
		transform: translateX(2vw);
	}
	.intro_sli_item_a .intro_sli_photo_s img{
		transform: translateX(3vw);
	}
	.intro_sli_item_a .intro_sli_name{
		right: 3vw;
		width: 27.6vw;
	}
	.intro_sli_item_a .intro_sli_pop{
		width: 85vw;
		left: -6vw;
		top: 49vw;
	}
	.intro_sli_item_a .intro_sli_text_pl{
		padding-left: 17vw;
	}
	.intro_a05{
		overflow: hidden;
		position: absolute;
		left: -4.55vw;
		bottom: -5vw;
		width: 21vw;
		border-radius: 0 0 0 6vw;
	}
	.intro_sli_item_b .intro_sli_pop{
		top: 60vw;
		left: -2%;
		width: 103%;
	}
	.intro_sli_item_b .intro_sli_text_pr{
		padding-right: 32vw;
	}
	.intro_sli_item_b .intro_sli_photo_s{
		transform: translateX(-25%) translateY(0%) scale(0.89);
	}
	.intro_b05{
		position: absolute;
		right: 0;
		bottom: -5.8vw;
		width: 31vw;
	}
	.intro_sli_item_c .intro_sli_photo{
		width: 110%;
		left: -10vw;
	}
	.intro_sli_item_c .intro_sli_photo_oh{
		position: absolute;
		left: 10vw;
		width: 100%;
		height: 100%;
	}
	.intro_sli_item_c .intro_sli_photo_s{
		transform: translateX(-30%) translateY(0) scale(0.9);
	}
	.intro_sli_item_c .intro_sli_photo_xs{
		transform: translateX(-44%) translateY(4%) scale(0.87);
	}
	.intro_sli_item_c .intro_sli_pop{
		top: 46vw;
		left: -4%;
	}
	.intro_sli_item_c .intro_sli_name{
		right: 5vw;
		width: 24.5vw;
	}
	.intro_c05{
		position: absolute;
		left: 0;
		bottom: -8vw;
		width: 24vw;
	}
	.intro_sli_item_d .intro_sli_photo{
		left: -6vw;
		width: 80vw;
	}
	.intro_sli_item_d .intro_sli_photo_oh{
		position: absolute;
		left: 6vw;
		width: 100%;
		height: 100%;
	}
	.intro_sli_item_d .intro_sli_photo_s{
		transform: translateX(-27%) translateY(0%) scale(0.88);
	}
	.intro_sli_item_d .intro_sli_photo_xs{
		transform: translateX(-44%) translateY(4%) scale(0.85);
	}
	.intro_sli_item_d .intro_sli_photo_s img{
		transform: translateX(-5vw);
	}
	.intro_sli_item_d .intro_sli_photo_xs img{
		transform: translateX(-6vw);
	}
	.intro_sli_item_d .intro_sli_name{
		width: 18vw;
	}
	.intro_sli_item_d .intro_sli_pop{
		top: 65vw;
		left: 1%;
		width: 76%;
	}
	.intro_sli_item_d .intro_sli_text_pr{
		padding-right: 26vw;
	}
	.intro_d05{
		overflow: hidden;
		position: absolute;
		right: -3vw;
		bottom: -5vw;
		width: 32vw;
		border-radius: 0 0 5vw 0;
	}
	.intro_sli_item_e .intro_sli_photo_s + div img{
		transform: translateX(5vw);
	}
	.intro_sli_item_e .intro_sli_photo_s img{
		transform: translateX(5vw);
	}
	.intro_sli_item_e .intro_sli_name{
		right: 6vw;
	}
	.intro_sli_item_e .intro_sli_pop{
		width: 30vw;
		left: 9%;
		top: 62vw;
	}
	.intro_e05,.intro_f05,.intro_g05{
		padding-top: 3vw;
		margin-bottom: -5vw;
	}
	.intro_sli_item_f .intro_sli_photo{
		left: -3vw;
		width: 80vw;
	}
	.intro_sli_item_f .intro_sli_photo_oh{
		position: absolute;
		left: 3vw;
		width: 100%;
		height: 100%;
	}
	.intro_sli_item_f .intro_sli_photo_s img{
		transform: translateX(-6vw);
	}
	.intro_sli_item_f .intro_sli_photo_xs img{
		transform: translateX(-9vw);
	}
	.intro_sli_item_f .intro_sli_name{
		width: 14vw;
	}
	.intro_sli_item_f .intro_sli_pop{
		width: 30vw;
		left: 9%;
		top: 62vw;
	}
	.intro_sli_item_g .intro_sli_photo{
		left: -6vw;
		width: 94vw;
	}
	.intro_sli_item_g .intro_sli_photo_oh{
		position: absolute;
		left: 6vw;
		width: 100%;
		height: 100%;
	}
	.intro_sli_item_g .intro_sli_photo_s img{
		transform: translateX(-1vw) translateY(1.5vw);
	}
	.intro_sli_item_g .intro_sli_photo_xs img{
		transform: translateX(-3vw) translateY(2vw);
	}
	.intro_sli_item_g .intro_sli_name{
		width: 14vw;
	}
	.intro_sli_item_g .intro_sli_pop{
		width: 30vw;
		left: 9%;
		top: 62vw;
	}
	.intro_sli_box{
		margin-bottom: 130px;
	}
	.intro_tc02{
		top: 32%;
		left: 0;
		width: 30%;
	}
	.intro_tc03{
		top: 39%;
		left: 27%;
		width: 10%;
	}
	.contents_wp{
		padding: 22vw 0 16vw;
	}
	.contents_wp::before{
		background-image: url(../img/contents_bg_sp.webp);
		background-size: 100% auto;
	}
	.contents_02{
		padding-top: 20px;
		margin-left: -4vw;
		margin-right: -4vw;
	}
	.contents_lead{
		font-size: 4vw;
	}
	.contents_note{
		margin: 3vw 0 4vw;
		padding: 1vw 1vw 1vw 2vw;
	}
	.contents_note p{
		border-radius: 4px;
		font-size: 2.4vw;
	}
	.wall_wp{
		padding: 6vw 0 30vw;
	}
	.wall_title{
		margin-bottom: 5vw;
		width: 28vw;
	}
	.wall_left{
		left: -4%;
		right: auto;
		width: 32vw;
	}
	.wall_right{
		left: auto;
		right: -4%;
		width: 32vw;
	}
	.wall_top_box{
		display: flex !important;
		align-items: center;
	}
	[class *= "wall_top0"]{
		position: relative;
		z-index: 4;
		overflow: hidden;
		width: 40%;
		margin: 0 -5%;
		opacity: 0;
		transform: translateY(0px);
		transition: 0.8s;
	}
	.wall_left .ui_fade,
	.wall_right .ui_fade{
		opacity: 1;
		transform: translateY(0);
	}
	.ui_fadein [class *= "wall_top0"]{
		opacity: 1;
		transform: translateY(0);
		transition: 0.8s;
	}
	.wall_top01{
		transition-delay: 1.2s !important;
	}
	.wall_top02{
		z-index: 3;
		width: 35%;
		transition-delay: 0.9s !important;
	}
	.wall_top03{
		z-index: 2;
		width: 30%;
		transition-delay: 0.6s !important;
	}
	.wall_top04{
		z-index: 1;
		width: 25%;
		transition-delay: 0.3s !important;
	}
	.wall_right .wall_top_box{
		justify-content: flex-end;
	}
	.wall_right .wall_top01{
		z-index: 1;
		width: 25%;
		transition-delay: 0.3s !important;
	}
	.wall_right .wall_top02{
		z-index: 2;
		width: 30%;
		transition-delay: 0.6s !important;
	}
	.wall_right .wall_top03{
		z-index: 3;
		width: 35%;
		transition-delay: 0.9s !important;
	}
	.wall_right .wall_top04{
		z-index: 4;
		width: 40%;
		transition-delay: 1.2s !important;
	}
	
	.slide05_wp{
		width: 100%;
		margin: 0;
	}
	.cast_01,.cast_02{
		top: -30px;
		width: 50px;
	}
	.ui_fadein .cast_01,
	.ui_fadein .cast_02{
		animation-duration: 5.5s;
	}
	.cast_wp{
		padding: 1px 0 2vw;
	}
	.cast_anim{
		height: 29vw;
	}
	.cast_title{
		width: 47vw;
		margin-bottom: 12vw;
	}
	.cast_item{
		margin-left: -4vw;
		margin-right: -4vw;
		margin-bottom: 20vw;
		display: block;
	}
	.cast_main{
		display: block;
		width: 100% !important;
		font-size: 3.6vw;
	}
	.cast_main .cast_pic{
		position: static;
		display: flex !important;
		justify-content: center;
		width: 100%;
	}
	.cast_pic_l{
		margin: 0 4vw;
		width: 36.26vw;
	}
	.cast_pic_s{
		margin: 0 4vw;
		width: 29.2vw;
	}
	.cast_pic img{
		width: auto;
		max-height: 82.23vw;
		border-radius: 5px;
		box-shadow: 15px 15px 8px rgba(104,58,71,0.4);
	}
	.cast_main h3{
		margin-top: 9vw;
		font-size: 6.6vw;
	}
	.cast_main_btn{
		width: 56vw;
		height: 12.6vw;
		font-size: 4.2vw;
		box-shadow: 0 5px 0 #e0e03d;
	}
	.cast_main_btn::after{
		background-size: 80% auto;
	}
	.tsuk_scr{
		height: 45px;
	}
	.camp_wp{
		padding: 16vw 0 24vw;
		background-size: 200% auto;
	}
	.camp_wp::before{
		background: url(../img/camp_bg02_sp.webp) no-repeat center 8vw;
		background-size: 100% auto;
	}
	.camp_top{
		margin: -4vw auto 10vw;
		max-width: 80vw;
	}
	.camp_top_pop{
		margin-top: -2vw;
	}
	.camp_top_pop dt{
		margin: 0 -1vw;
		width: 27vw;
	}
	.camp_top_pop dd{
		margin: 0 -1vw 4vw;
		max-width: calc(100% - 27vw);
	}
	.camp_top_pop dd img{
		width: auto;
		max-height: 13vw;
	}
	.camp_top_t08{
		width: 46vw;
	}
	.camp_title{
		width: 95%;
		padding-top: 1vw;
		margin: 0 auto 9vw;
	}
	.camp_btn{
		width: 90%;
		margin: 6vw auto 16vw;
		height: 12.6vw;
		font-size: 4.2vw;
		box-shadow: 0 5px 0 #1e38d3;
	}
	.camp_btn::after{
		right: 3%;
		background-size: 80% auto;
	}
	.camp_03{
		margin-top: -5vw;
	}
	
	.sns_wp{
		padding: 5vw 0 12vw;
	}
	.sns_01{
		margin-top: 3vw;
		margin-right: -12vw;
		width: 65vw;
	}
	.sns_02{
		width: 58vw;
		left: 0;
	}
	.sns_list{
		width: 96%;
		left: 2%;
		top: 43vw;
	}
	.sns_list a{
		width: 30%;
		margin: 0 1.5%;
	}
	.sns_box{
		margin-top: -5vw;
		padding: 6vw 4vw 7vw;
		border-radius: 10px;
	}
	.sns_box h4{
		font-size: 4vw;
	}
	.sns_list02{
		margin-top: 4vw;
	}
	.sns_list02 a{
		width: 14vw;
		margin: 0 3vw;
	}
	.sns_03{
		left: 4%;
		width: 10.2vw;
	}
	.ani_footer{
		padding: 15px 0;
	}
	.ani_footer img {
	    max-width: 220px;
	}
	.scr_content img{
		height: 25px;
	}
	.intro_sli_box .sp-arrows{
		top: calc(50% - 8vw);
	}
	.intro_sli_box .sp-previous-arrow{
		width: 10vw;
		height: 10vw;
		left: 16vw;
	}
	.intro_sli_box .sp-next-arrow{
		width: 10vw;
		height: 10vw;
		right: 16vw;
	}
	.intro_sli_pd{
		padding: 7vw 5vw;
	}
	.ui_modal_close{
		top: 42px;
	}
	.movie_lead02{
		width: 44vw;
	}
	.slide05_wp .sp-buttons{
		bottom: -60px;
	}
	.ani_wps_item{
		width: 40vw;
	}
	.movie_item_blue{
		border-radius: 10px;
		border: 4px solid #092cd6;
	}
	
}
















