
:root {
	--orange: #eb8c38;
}



body{
	background: #fff;
	margin: 0px;
	color: rgba(0, 0, 0, 0.87);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0.00938em;
	overflow: hidden;
	
}


@media all and (min-width: 1024px) {
	.pc{display: block !important;}
	.sp{display: none !important;}
}

@media all and (max-width: 1023px) {
	body{
		overflow-y: scroll;
		overflow-x: hidden;
	}
	img{max-width: 100%;}
	.sp{display: block !important;}
	.pc{display: none !important;}
}


.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


.dotted_line{
	border-bottom: var(--color) dotted 1px;
}

.object-fit-img {
  object-fit: contain;
  font-family: 'object-fit: contain;'
}
.object-fit-img {
  object-fit: cover;
  object-position: bottom;
  font-family: 'object-fit: cover; object-position: bottom;'
}

.btn_fade{
	transition: 0.2s;
}

.btn_fade:hover{
	opacity: 0.5;
}


/*----------------------------------
js-animation
------------------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}




img.img-responsive{
	width: auto;
	max-width: 100%;
}


.text_center{
	text-align: center;
}


span.red{
	font-family: "Dela Gothic One", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #c40000;
}



@media all and (min-height: 730x) {
	br.max-size{
		display: block;
	}
}
@media (min-width: 1024px) and (max-height: 729px) {
	br.max-size{
		display: none;
	}
}


@media all and (max-width: 1023px) {
	br.max-size{
		display: none;
	}
}

/*----------------------------------
footeer
------------------------------------*/
footer{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	padding-bottom: 5px;
}

footer .logo{
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}

footer .logo li{
	list-style: none;
	margin: 0;
	padding: 0;
	
}

footer address{
	font-size: 60%;
	line-height: 1em;
	font-style: normal;
	text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}


@media (min-width: 1024px) and (max-height: 729px) {
	footer .logo li img{
		zoom:0.5;
	}
}

@media all and (max-width: 1023px) {
	footer{
		position: static;
		margin-top: -100px;
	}
	footer .logo li img{
		height: 30px;
	}
}




/*----------------------------------
loding
------------------------------------*/

#loding{
	height: 100vh;
	width: 100vw;
	overflow: hidden;	
	
	background: url("../../images/back1.webp") center no-repeat;
	background-size: cover;
}


#loding .inner{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	margin-top: -50px;
}


#loding .inner .bar{
	background: var(--orange);
	border-radius: 10px;
	width: 650px;
	height: 20px;
	margin: 0 auto;
	padding: 10px;
}

#loding .inner .bar p{
	margin: 0;
	display: block;
	background: #924e12;
	width: 100%;
	height: 100%;
}

#loding .inner .bar p span{
	margin: 0;
	display: block;
	background: #fef04d;
	width: 0%;
	height: 100%;
	
	animation-duration: 3s;
	animation-name: loding_anime;
	animation-fill-mode: forwards;
}


#loding .inner .logo{
	text-align: center;
}
#loding .inner .logo img{
	height: 300px;
}


@keyframes loding_anime {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}






@media all and (max-width: 1023px) {
	#loding .inner .logo {
		width: 90vw;
	}
	#loding .inner .logo img{
		width: auto;
		height: auto;
	}
	
	#loding .inner .bar{
		width: 90%;
	}
}


/*----------------------------------
main
------------------------------------*/

main{
	height: 100vh;
	width: 100vw;
	overflow-x: hidden;
	
	background: url("../../images/back2.webp") center no-repeat;
	background-size: cover;
	
	display: none;
}


main header{
	width: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	/*z-index: 10;*/
}

main header .logo img{
	/*height: 100px;*/
	width: auto;
    height: 20vh;
}


main .inner{
	width: 1024px;
	height: 100vh;
	min-height: 500px;
	
	margin: 0 auto;
	position: relative;
	overflow-y: hidden;
}

main .inner .flex_box{
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	align-items: center;
	
	position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}




main .inner #character{
	margin: 0;
	display: block;
	text-align: center;
	
	animation-duration: 0.5s;
	animation-name: character_anime;
	animation-fill-mode: forwards;
}

main .inner #character img{
	height: 60vh;
	max-height: 700px;
}

main .inner #text_window .box{
	margin-top: 30px;
}

main .inner #text_window .window{
	background: #fff;
	box-shadow: 4px 4px 0px 0px #503637;
	color: #503637;
	border-radius: 20px;
	width: 100%;
	height: auto;
	padding: 20px 0;
	font-size: 16px;
	position: relative;
}

main .inner #text_window .name{
	margin-top: -50px;
	margin-left: 20px;
	width: 200px;
	background: var(--orange);
	border: #fff solid 3px;
	border-radius: 20px;
	color: #fff;
	/*font-size: 24px;*/
	font-size: clamp(16px, 2vw, 20px);
	font-weight: bold;
	padding: 10px 20px;
}


main .inner #text_window p{
	margin:0 30px;
}



@keyframes character_anime {
	0% {
		margin-top: -50px;
		opacity: 0;
	}
	
	100% {
		margin-top: 0;
		opacity: 1;
	}
}


@media (min-width: 1024px) and (max-height: 729px) {
	main .inner #character img{
		height: 70vh;
	}
	main .inner #text_window .name{
		font-size: 16px;
		padding: 5px 10px;
		border-radius: 10px;
	}
	
}



main .inner .flex_box .box:last-child{
	width: 580px;
}
@media all and (min-width: 1024px) {
	

	main .inner .flex_box .box:last-child{
		max-width: 500px;
		flex: 1;
		/*margin-bottom: 50px;*/
		height: 90vh;
		position: relative;
	}

	main .inner .flex_box .box:last-child #text_window{
		position: absolute;
		top: 50%;
		left: 45%;
		transform: translate(-45%, -50%);
		-webkit-transform: translate(-45%, -50%);
		-ms-transform: translate(-45%, -50%);
		width: 100%;
		margin-top: 40px;
	}
}

@media all and (max-width: 1023px) {
	
	main .inner{
		width: 100vw;
	}
	main header .logo img{
		height: 80px;
	}
	main .inner .flex_box{
		display: block;
		position: relative;
		top: auto;
		left: auto;
		transform: translateY(0%);
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		
		height: calc(100vh - 240px);
		margin-top: 100px;
	}
	

	main .inner #character{
		width: 100vw;
		opacity: 1;
		transition: 1s;
	}
	
	
	main .inner #character img{
		width: 50%;
		height: auto;
		max-height: none;
	}

	main .inner #character.hide_sp{
		opacity: 0 !important;
	}

	
	main .inner #text_window {
        position: absolute;
        /*bottom: 20px;*/
		bottom: 0;
        left: 10px;
        width: calc(100vw - 20px);
    }
	
	main .inner #text_window p{
		margin: 0 20px;
	}
	
	main .inner #text_window .name{
		font-size: 16px;
		padding: 6px 10px;
		border-radius: 16px;
	}
	
	
	
}


/*--text_1---*/

main .inner #text_window #text_1 .text_box{
	/*font-size: 24px;*/
	font-size: clamp(14px, 2vw, 16px);
	padding: 20px 0;
	
	opacity: 0;
	animation-delay: 0.2s;
	animation-duration: 0.5s;
	animation-name: text_box_anime;
	animation-fill-mode: forwards;	
}

main .inner #text_window #text_1 .next{
	margin: 0;
	position: absolute;
	bottom: 20px;
	right: 30px;
	cursor: pointer;
	transition: 0.2s;
	
	animation-duration: 1s;
	animation-name: next_anime;
	animation-iteration-count:infinite;
}

main .inner #text_window #text_1 .next img{
	zoom:1.5;
}


@keyframes next_anime {
	0% {
		right: 30px;
	}
	100% {
		right: 20px;
	}
}


@keyframes text_box_anime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}




@media (min-width: 1024px) and (min-height: 730px) {
	main .inner #text_window #text_1 .text_box{
		font-size: 20px;
	}
}


@media all and (max-width: 1023px) {
	
	main .inner #text_window #text_1 .text_box{
		font-size: 16px;
	}
}



/*---text_2----*/

main .inner #text_window #text_2 ul{
	margin: 0;
	padding: 0;
}

main .inner #text_window #text_2 ul li{
	list-style: none;
	margin: 0;
	/*font-size: 20px;*/
	font-size: clamp(12px, 2vw, 14px);
	
	background: #ffffffb5;
	border: #ffffff00 solid 3px;
	box-shadow: 4px 4px 0px 0px rgba(80, 54, 55, 0.4);
	border-radius: 20px;
	padding: 10px 20px;
	line-height: 1em;
	font-weight: bold;
	
	display: flex;
	
	cursor: pointer;
	transition: 0.2s;
	margin-bottom: 5px;
}

main .inner #text_window #text_2 ul li:last-child{
	margin-bottom: 0;
}


main .inner #text_window #text_2 ul li:hover{
	background: var(--orange);
	border: #fff solid 3px;
	color: #fff;
}


main .inner #text_window #text_2 ul li .next{
	padding-right: 10px;
}

main .inner #text_window #text_2 ul li .next img{
	opacity: 0;
	transition: 0.2s;
	height: 1em;
}

main .inner #text_window #text_2 ul li:hover .next img{
	opacity: 1;
}
main .inner #text_window #text_2 ul li p{
	margin: 0;
}

main .inner #text_window #text_2 ul li.menu1{
	background-image: url("../../images/btn1_off.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: #ffffff solid 3px;
	
	height: 130px;
}



main .inner #text_window #text_2 ul li.menu1:hover{
	background-image: url("../../images/btn1_hover.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--orange);
}




main .inner #text_window #text_2 ul li.menu1{
	opacity: 0;
	animation-delay: 0.2s;
	animation-duration: 0.5s;
	animation-name: menu_anime;
	animation-fill-mode: forwards;	
}

main .inner #text_window #text_2 ul li.menu2{
	opacity: 0;
	animation-delay: 0.4s;
	animation-duration: 0.5s;
	animation-name: menu_anime;
	animation-fill-mode: forwards;	
}

main .inner #text_window #text_2 ul li.menu3{
	opacity: 0;
	animation-delay: 0.6s;
	animation-duration: 0.5s;
	animation-name: menu_anime;
	animation-fill-mode: forwards;	
}

main .inner #text_window #text_2 ul li.menu4{
	opacity: 0;
	animation-delay: 0.8s;
	animation-duration: 0.5s;
	animation-name: menu_anime;
	animation-fill-mode: forwards;	
}


@keyframes menu_anime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}




@media (min-width: 1024px) and (min-height: 730px) {
	main .inner #text_window #text_2 ul li{
		font-size: 20px;
		padding: 20px;
		margin-bottom: 20px;
	}
}

@media all and (max-width: 1023px) {
	main .inner #text_window #text_2 ul li{
		padding: 10px;
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	main .inner #text_window #text_2 ul li.menu1{
		height: 120px;
	}
}




/*---text_3----*/
main .inner #text_window #text_3 .red{
	font-size: 140%;
}


main .inner #text_window #text_3 .img_p{
	margin: 0;
}
main .inner #text_window #text_3 .img_p img{
	width: 100%;
}


main .inner #text_window #text_3 .text_box p{
	font-size: clamp(16px, 2vw, 18px);	
}
main .inner #text_window #text_3 p:nth-child(1){
	opacity: 0;
	animation-delay: 0.2s;
	animation-duration: 0.5s;
	animation-name: text3_anime;
	animation-fill-mode: forwards;	
	
}

main .inner #text_window #text_3 p:nth-child(2){
	opacity: 0;
	animation-delay: 0.6s;
	animation-duration: 0.5s;
	animation-name: text3_anime;
	animation-fill-mode: forwards;	
	
}

main .inner #text_window #text_3 p:nth-child(3){
	opacity: 0;
	animation-delay: 1s;
	animation-duration: 0.5s;
	animation-name: text3_anime;
	animation-fill-mode: forwards;	
	
}

main .inner #text_window #text_3 .text_box{
	position: relative;
}

@keyframes text3_anime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}




@media (min-width: 1024px) and (max-height: 729px) {
	main .inner .flex_box .box:last-child #text_window{
		width: 80%;
	}
	
	
	main .inner #text_window #text_3 .text_box p{
		font-size: 10px;
	}
}



@media (max-width: 1023px) {
	main .inner .flex_box .box:last-child{
		width: 100%;
	}
	main .inner #text_window #text_3 .text_box p{
		font-size: 14px;
	}
}


/*----------------------
back
-----------------------*/
#back{
	position: absolute;
    top: -60px;
    right: 0;
    cursor: pointer;
    transition: 0.5s;
}

#back span{
	padding: 10px;
	/*font-size: 24px;
	font-size: clamp(16px, 2vw, 18px);*/
	font-weight: bold;
}


#back span.arrow{
	border-radius: 50%;
	height: 30px;
	width: 30px;
    background: var(--orange);
    display: block;
}

#back span.arrow img{
	/*height: 16px;*/
	height: auto;
	display: block;
}







@media (min-width: 1024px) and (min-height: 730px) {
	
}
@media (min-width: 1024px) and (max-height: 729px) {
	
}


@media all and (max-width: 1023px) {
	
}





/*----------------------
modal
-----------------------*/

.modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url("../../images/pop_cover.webp") center no-repeat;
	background-size: cover;
	z-index: 100;
	
}

.modal .modal_inner{
	width: 640px;
	height: 483px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	
}



.modal .modal_inner h2{
	background: var(--orange);
	margin: 0;
	position: relative;
	color: #fff;
	/*font-size: 30px;*/
	font-size:clamp(20px, 2vw, 30px);
	padding: 10px 20px;
	border-radius: 30px 30px 0 0 ;
	
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}



.modal .modal_inner .white_box{
	background: #fff;
	border-radius: 0 0 30px 30px;
	padding: 50px;
}


.modal .modal_inner .close{
	background: #fff;
	font-weight: bold;
	color: var(--orange);
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	cursor: pointer;
	transition: 0.2s;
}

.modal .modal_inner .close:hover{
	opacity: 0.5;
}







/*---menu2_box----*/

#menu2_box .movie iframe{
	width: calc(640px - 50px - 50px);
	height: auto;
	aspect-ratio:16 / 9;
}

/*---menu4_box----*/
#menu3_box p{
	font-size: 24px;
}


/*---menu4_box----*/

#menu4_box .twitter-tweet{
	margin: 0 auto;
}

#menu4_box .modal_inner .white_box{
	height: 300px;
	overflow-y: scroll;
}









@media all and (max-width: 1023px) {
	.modal .modal_inner{
		width: 94%;
	}
	
	.modal .modal_inner h2{
		font-size: 18px;
	}
	
	.modal .modal_inner .close{
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	
	.modal .modal_inner .white_box{
		padding: 20px;
	}
	
	#menu2_box .movie iframe{
		width: 100% !important;
	}
}




.hide{
	display: none;
}

.show{
	display: block;
}


#back.hide{
	margin-left: -500px;
}

#back.show{
	margin-left: 0;
}
















