/* CSS Document */
/* =========================================================
     共通
========================================================= */
/* 共通
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap');
body {
   /* background: url(https://jonetz.com/img/common/bg.png) repeat 0 0 ;*/
	color: #000;
	font-size: 18px;
	line-height: 1.5;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-weight: 800;
}
#body_inner {
    width: 100%;
    overflow: hidden;
    position: relative;
}
main {
	width: 100vw;
	overflow: hidden;
}
a {
    color: #000;
}
.inner {
	max-width: 1300px;
    margin: auto;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
}
.inline_B {
	display: inline-block;
}
img {
    vertical-align: bottom;
    max-width: 100%;
	width: auto;
}
section {
	scroll-margin-top: 120px!important;
}
#container_Aria {
	overflow: hidden;
    position: relative;
    z-index: 1;
}
.pc_only {
    display: block;
}
.sp_only {
    display: none;
}
.red {
    color: #E50415;
}
/* header
------------------------------ */

#top_line_box {
	width: 100vw;
	overflow: hidden;
    background: url(../img/bg_footer.png) no-repeat center center / cover;
}
ul.top_line_ul {
	display: flex;
	align-items: center;
    height: 50px;
	width: 4000px;/*画像数×1000px*/
	animation: top_line_ul 60s infinite linear both;/*画像数×1000px*/
}
ul.top_line_ul li {
	margin-right: 50px;
}
ul.top_line_ul img {
}

@keyframes top_line_ul {
	0% {transform: translateX(0);}
	100% {transform: translateX(-50%);}
}

#mv_box img {
	width: 100%;
	max-width: auto;
}
/* movie_aria
------------------------------ */
#movie_aria {
    background: url(../img/bg_movie_aria.png) no-repeat center center / cover;
    padding: 110px 0;
}
.mov_wrap {
    max-width: 750px;
    margin: auto;
}
.mov {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.mov iframe {
    width: 100%;
    height: 100%;
}
/* about_aria
------------------------------ */
#about_aria {
    background: #EAE600 url(../img/bg_text-pattern.png) repeat-y top center / 102%;
    padding: 50px 0;
}


/**/
#about_text_box {
    background: url(../img/about_text_bg.png) repeat-y bottom center / cover;
	border-radius: 80px;
	overflow: hidden;
	padding: 180px 70px 70px;
	position: relative;
}

#about_aria h2 {
	position: absolute;
	left: 0;
	right: 0;
	top: 50px;
	margin: auto;
	z-index: 10;
	
}
#about_text_box .text_box {
	background: #fff;
	border-radius: 80px;
	padding: 50px;
	
}
#about_text_box .text_box .text_box_inner {
	border: 13px solid #EAE600;
	border-radius: 50px;
	padding: 80px 70px 70px;
	
}

/**/
ul.old_site_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
ul.old_site_list li {
    width: calc(( 100% - 30px ) / 3 );
}
ul.old_site_list li:nth-child(2) {
    padding-top: 100px;
}
 
#about_aria h3 {
	margin: 90px 0 30px;
}

/* package_aria
------------------------------ */
#package_aria {
    background: #FCC928  url(../img/bg_text-pattern.png) repeat-y top center / 102%;
    padding: 150px 0 0;
	overflow: hidden;
}
#package_aria h2 {
	position: relative;
	z-index: 1;
}

#package_aria h2::before {
    background: url(../img/ttl_package_bg.png) no-repeat center / 100%;
    content: "";
    width: 130%;
    height: 0;
    padding-top: 100%;
    display: block;
    position: absolute;
    top: -32%;
    right: -25%;
    bottom: -25%;
    left: -25%;
    margin: auto;
    z-index: -1;
}
#package_aria .ttl_under_text {
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: 24px;
}
/**/
#package_contents {
	position: relative;
	z-index: 10;
	margin-top: 100px;
	
}
.package_description {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 10px solid #000;
	padding: 50px;
	background: #fff;
	position: relative;
	border-radius: 30px;
	margin-bottom: 200px;
}
.package_description:nth-child(even) {
	flex-direction: row-reverse;
}
.package_description .icon_click {
	position: absolute;
	top: -100px;
	left: -100px;
	width: 300px;
	z-index: 10;
    animation-name: icon_click;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 5s;
	pointer-events: none;
}
@keyframes icon_click {
	0% {
		transform: translate(0, 0px);
	}
	44% {
		transform: translate(0, 0px);
	}
	46% {
		transform: translate(0px, -20px);
	}
	48% {
		transform: translate(0, 0px);
	}
	50% {
		transform: translate(0px, -20px);
	}
	52% {
		transform: translate(0, 0px);
	}
	54% {
		transform: translate(0px, -20px);
	}
	56% {
		transform: translate(0px, 0px);
	}
	100% {
		transform: translate(0px, 0px);
	}
}
.package_description:nth-child(even) .icon_click {
	left: auto;
	right: -100px;
}

.package_description .icon_click img {
	transform: rotate(-20deg);
}
.package_description:nth-child(even) .icon_click img {
	transform: rotate(20deg);
}

.package_description .img_box {
	width:45%;
	padding-right: 50px;
}
.package_description:nth-child(even)  .img_box {
	padding-right: 0px;
	padding-left: 50px;
}

.package_description .img_box_inner {
	padding-top: 150%;
	position: relative;
}
.package_description .img_box_inner img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}



.package_description .text_box {
	width:55%;
	text-align: left;
	margin-top: -50px;
	z-index: 10;
	position: relative;
}
.package_description:nth-child(even)  .text_box {
	text-align: right;
}
.package_description h3 {
	margin-bottom: 30px;
}
.package_description h3 .item_name_sub {
	background: #E60013;
	display: inline-block;
	padding: 10px;
	margin-bottom: 15px;
}
.package_description h3 .item_name_sub img {
	height: 60px;
}

#package_1 {
    background: #fff url(../img/package_bg_1.png) repeat-y center center / 102%;
}
#package_2 {
    background: #fff url(../img/package_bg_2.png) repeat-y center center / 102%;
}
#package_3 {
    background: #fff url(../img/package_bg_3.png) repeat-y center center / 102%;
}
#package_4 {
    background: #fff url(../img/package_bg_4.png) repeat-y center center / 102%;
}
#package_5 {
    background: #fff url(../img/package_bg_5.png) repeat-y center center / 102%;
}

/**/
.img_deco {
	position: absolute;
	bottom: 0;
}
#img_deco_1 {
    right: -75px;
    width: 33%;
    bottom: -120px;
	
	
    animation-name: img_deco_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 1s;
    transform-origin: bottom center;
}
@keyframes img_deco_1 {
	0% {
    transform: rotate(10deg);
	}
	49.99999% {
		transform: rotate(10deg);
	}
	50% {
		transform: rotate(-10deg);
	}
	99.99999% {
		transform: rotate(-10deg);
	}
	100% {
		transform: rotate(10deg);
	}
}
#img_deco_2 {
    left: 20px;
    bottom: -200px;
    width: 25%;
	
	
    animation: img_deco_2;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-duration: 2.0s;
    opacity: 1;
    transform: translateX(0%);
    transform-origin: top center;
}
@keyframes  img_deco_2 {
	0% {
		transform: rotate(-30deg);
	}
	50% {
		transform: rotate(30deg);
	}
	100% {
		transform: rotate(-30deg);
	}
}
#img_deco_3 {
    right: 0;
    bottom: -60px;
    width: 25%;
}

#img_package_decp_3-1 {
    width: 80%;
    margin-bottom: -20%;
    margin-left: -10%;
    animation: img_package_decp_3-1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    opacity: 1;
    transform: translate(0%);
    transform-origin: center;
}
@keyframes img_package_decp_3-1 {
	0% {
    transform: rotate(0deg);
	}
	60% {
		transform: rotate(0deg);
	}
	70% {
		transform: rotate(-15deg);
	}
	80% {
		transform: rotate(0deg);
	}
	90% {
		transform: rotate(-15deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

#img_deco_4 {
    left: 30px;
    bottom: -110px;
    width: 41%;
}

.decp_4-1-sub {
	position: absolute;
	top: 0;
	width: 20%;
}

#img_package_decp_4-1 {
    right: -11%;
    top: 14%;
    animation: decp_4_sub;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-delay: 1.0s;
    animation-duration: 4.0s;
    transform-origin: center bottom;
}
#img_package_decp_4-2 {
    left: 20%;
    top: -7%;
    animation: decp_4_sub;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4.0s;
    transform-origin: center bottom;
}

#img_package_decp_4-3 {
    left: -15%;
    top: 22%;
    animation: decp_4_sub;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4.0s;
    animation-delay: 2.0s;
    transform-origin: center bottom;
}

@keyframes decp_4_sub {
	0% {
    transform: scale(0.0) translate(0%, 0%);
	}
	20% {
		opacity: 1;
	}
	70% {
		opacity: 1;
	}
	100% {
		transform: scale(1) translate(0%, -20%);
		opacity: 0;
	}
}


#img_deco_5 {
	
}


.puni_jump:hover img {
   /* The bounce animation with release pushing */
   transition: 0s;  
   animation: puni_jump 1s;
	transform: scale(1,1) translateY(0);
}
 @keyframes puni_jump {
    /* main keyframe animation for bouncing */
     0%   { transform: scale(.9,1.05)      translateY(0); }
     15%  { transform: scale(1.1,.9)   translateY(10%); }
     30%  { transform: scale(1,1)   translateY(0); }
     45%  { transform: scale(1.05,.95) translateY(5%); }
     60%  { transform: scale(1,1)      translateY(0); }
     75%  { transform: scale(1.02,.98) translateY(2%); }
     90%  { transform: scale(1,1)      translateY(0); }
     100% { transform: scale(1,1)      translateY(0); }
 }


/* footer
------------------------------ */

#footer_aria {
    background: url(../img/bg_footer.png) no-repeat center center / cover;
    padding: 50px 0 50px;
    text-align: center;
}
ul.footer_sns {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
ul.footer_sns li {
    width: 100px;
    margin: 0 20px; 
}
footer p.copy {
    color: #fff;
    line-height: 1;
    font-weight: normal;
}



/* ========================================
     1600px
======================================== */
@media screen and (max-width:1600px){
}
/* ========================================
     1400px
======================================== */
@media screen and (max-width:1300px){

	/* footer
	------------------------------ */
	.inner {
		padding-left: 8vw;
		padding-right: 8vw;
	}
	

	/* about_aria
	------------------------------ */
	#movie_aria {
		padding: 10vw 0;
	}
	/* about_aria
	------------------------------ */
	#about_aria {
		padding: 7vw 0;
	}
	#about_text_box {
		border-radius: 7vw;
		padding: 10vw 6vw 6vw;
	}
	#about_aria h2 {
		top: 3vw;
	}
	#about_text_box .text_box {
		background: #fff;
		border-radius: 15vw 15vw 7vw 7vw;
		padding: 5vw;
	}
	#about_text_box .text_box .text_box_inner {
		border-width: 1.3vw;
		border-radius: 4vw;
		padding: 8vw 5vw 5vw;
	}
	#about_aria h3 {
		margin: 7vw 0 3vw;
	}
	ul.old_site_list li {
		width: calc((100% - 0vw) / 3);
	}
	ul.old_site_list li:nth-child(2) {
		padding-top: 8vw;
	}
	
	/* package_aria
	------------------------------ */
	#package_aria {
		padding: 13vw 0 0;
	}
	#package_contents {
		margin-top: 8vw;
	}
	#package_aria .ttl_under_text {
		font-size: 2.5vw;
	}
	.package_description {
		border: 0.8vw solid #000;
    	padding: 3vw;
    	margin-bottom: 18vw;
    	border-radius: 3vw;
	}
	.package_description .icon_click {
		top: -8vw;
		left: -8vw;
		width: 25vw;
	}
	.package_description:nth-child(even) .icon_click {
		right: -8vw;
	}
	.package_description h3 {
		margin-bottom: 3vw;
	}
	.package_description h3 .item_name_sub {
		padding: 1vw;
		margin-bottom: 1.5vw;
	}
	.package_description h3 .item_name_sub img {
		height: 4vw;
	}
	.package_description .text_box {
		margin-top: -3vw;
	}
	
	
	.package_description .img_box {
		padding-right: 3vw;
	}
	.package_description:nth-child(even) .img_box {
		padding-left: 3vw;
	}
	
	#img_deco_1 {
		right: -6vw;
		width: 33%;
		bottom: -10vw;
	}
	#img_deco_2 {
		left: 4vw;
		bottom: -16vw;
	}
	#img_deco_4 {
		left: 3vw;
		bottom: -11vw;
	}
}
/* ========================================
     1200px
======================================== */
@media screen and (max-width:1200px){
}
/* ========================================
     1000px
======================================== */
@media screen and (max-width:1000px){
}
/* ========================================
     768px
======================================== */
@media screen and (max-width:768px){
    /* common
    --------------------------------------------------------- */
    .inner {
        padding-left: 4vw;
        padding-right: 4vw;
    }
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
    /* about_aria
    --------------------------------------------------------- */
	ul.top_line_ul {
		height: 40px;
		width: 3000px;
		animation: top_line_ul 40s infinite linear both;
	}
	ul.top_line_ul li {
		margin-right: 30px;
		text-align: center;
		font-size: 0;
		line-height: 1;
	}
	ul.top_line_ul img {
		height: 23px;
		width: auto;
	}
    /* about_aria
    --------------------------------------------------------- */
	#about_aria {
        padding: 10vw 0;
    }
	#about_aria h2 {
        top: 2vw;
    }
	#about_aria h3 {
        margin: 8vw 0 5vw;
    }
	ul.old_site_list li {
        width: calc((100% - 0vw) / 2);
    }
	ul.old_site_list li:nth-child(2) {
        padding-top: 18vw;
        margin-bottom: -8vw;
    }
	#about_text_box {
        padding: 12vw 4vw 4vw;
    }
	#about_text_box .text_box {
		padding: 3vw;
	}
	#about_text_box .text_box .text_box_inner {
        border-width: 1.5vw;
        padding: 12vw 4vw 6vw;
    }
    /* package_aria
    --------------------------------------------------------- */
	#package_aria {
        padding: 17vw 0 0;
    }
	#package_contents {
        margin-top: 17vw;
    }
	#package_aria .ttl_under_text {
        font-size: 4.0vw;
        padding-top: 3vw;
    }
	.package_description {
		margin-bottom: 16vw;
        flex-wrap: wrap;
        border: 1.3vw solid #000;
        padding: 6vw 6vw 15vw;
        margin-bottom: 40vw;
        border-radius: 4vw;
    }
	.package_description .text_box ,
	.package_description .img_box {
    	width: 100%;
	}
	.package_description .img_box ,
	.package_description:nth-child(even) .img_box {
		padding-left: 0;
		padding-right: 0;
    }

	.package_description .img_box_inner {
		padding-top: 0;
		height: auto;
	}
	.package_description .img_box_inner img {
		position: relative;
	}
	.package_description h3 .item_name_sub img {
        height: 8vw;
    }
	.package_description .text_box {
        margin-top: 4vw;
    }
	.package_description .icon_click {
        top: -15vw;
        left: -5vw;
        width: 35vw;
    }
	.package_description:nth-child(even) .icon_click {
        right: -5vw;
    }
	
	#img_deco_1 {
        right: auto;
        width: 63%;
        bottom: -38vw;
        left: 2vw;
	}
	#img_deco_2 {
        left: auto;
        bottom: -43vw;
        width: 42%;
        right: 13vw;
    }
	#img_deco_3 {
        right: auto;
		bottom: -34vw;
		width: 55%;
		left: 10vw;
	}
	#img_deco_4 {
        left: auto;
        bottom: -35vw;
        width: 70%;
        right: 2vw;
    }
	
	#package_5 {
		margin-bottom: 28vw;
	}
    /* footer
    --------------------------------------------------------- */
    ul.footer_sns li {
        width: 70px;
        margin: 0 15px;
    }
    footer p.copy {
        font-size: 12px;
    }
    footer {
    }
}
/* ========================================
     481px
======================================== */
@media screen and (max-width:480px){
}






















/* =========================================================
     ローディング専用
========================================================= */
:root{
  /* animations constants */
  --steps: 10;
  --saturation: 80%;
  --lightness: 60%;
  --hue-offset: 320;
  --duration: 5000ms;

  /* generate some colors */
  --color-01: hsl( calc( 360 / var(--steps) *  1 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-02: hsl( calc( 360 / var(--steps) *  2 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-03: hsl( calc( 360 / var(--steps) *  3 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-04: hsl( calc( 360 / var(--steps) *  4 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-05: hsl( calc( 360 / var(--steps) *  5 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-06: hsl( calc( 360 / var(--steps) *  6 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-07: hsl( calc( 360 / var(--steps) *  7 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-08: hsl( calc( 360 / var(--steps) *  8 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-09: hsl( calc( 360 / var(--steps) * 9 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-10: hsl( calc( 360 / var(--steps) * 10 + var(--hue-offset)), var(--saturation), var(--lightness) );
  --color-11: hsl( calc( 360 / var(--steps) * 11 + var(--hue-offset)), var(--saturation), var(--lightness) );  
  --color-crayon: #fff;

  /* build some backgrounds */
  --bg-01-a: no-repeat left       0% top    / 11%   0% linear-gradient(to right, var(--color-01), var(--color-02));
  --bg-01-b: no-repeat left       0% top    / 11% 100% linear-gradient(to right, var(--color-01), var(--color-02));
  --bg-02-a: no-repeat left   11.11% bottom / 11%   0% linear-gradient(to right, var(--color-02), var(--color-03));
  --bg-02-b: no-repeat left   11.11% bottom / 11% 100% linear-gradient(to right, var(--color-02), var(--color-03));
  --bg-03-a: no-repeat left   22.22% top    / 11%   0% linear-gradient(to right, var(--color-03), var(--color-04));
  --bg-03-b: no-repeat left   22.22% top    / 11% 100% linear-gradient(to right, var(--color-03), var(--color-04));
  --bg-04-a: no-repeat left   33.33% bottom / 11%   0% linear-gradient(to right, var(--color-04), var(--color-05));
  --bg-04-b: no-repeat left   33.33% bottom / 11% 100% linear-gradient(to right, var(--color-04), var(--color-05)); 
  --bg-05-a: no-repeat left   44.44% top    / 11%   0% linear-gradient(to right, var(--color-05), var(--color-06));
  --bg-05-b: no-repeat left   44.44% top    / 11% 100% linear-gradient(to right, var(--color-05), var(--color-06)); 
  --bg-06-a: no-repeat left   55.55% bottom / 11%   0% linear-gradient(to right, var(--color-06), var(--color-07));
  --bg-06-b: no-repeat left   55.55% bottom / 11% 100% linear-gradient(to right, var(--color-06), var(--color-07)); 
  --bg-07-a: no-repeat left   66.66% top    / 11%   0% linear-gradient(to right, var(--color-07), var(--color-08));
  --bg-07-b: no-repeat left   66.66% top    / 11% 100% linear-gradient(to right, var(--color-07), var(--color-08));
  --bg-08-a: no-repeat left   77.77% bottom / 11%   0% linear-gradient(to right, var(--color-08), var(--color-09));
  --bg-08-b: no-repeat left   77.77% bottom / 11% 100% linear-gradient(to right, var(--color-08), var(--color-09));
  --bg-09-a: no-repeat left   88.88% top    / 11%   0% linear-gradient(to right, var(--color-09), var(--color-10));
  --bg-09-b: no-repeat left   88.88% top    / 11% 100% linear-gradient(to right, var(--color-09), var(--color-10));  
  --bg-10-a: no-repeat left   99.99% bottom / 11%   0% linear-gradient(to right, var(--color-10), var(--color-11));
  --bg-10-b: no-repeat left   99.99% bottom / 12% 100% linear-gradient(to right, var(--color-10), var(--color-11));   
}

.rainbow-marker-loader {
  height:4rem;
  width:20rem;
  max-width:100%;
  border:.5rem solid var(--color-crayon);
  border-radius:.5rem;
  animation: infinite alternate rainbow-fill var(--duration) ease-in-out;
  box-sizing:border-box;
  position:relative;
  margin:1rem;
  background:
    var(--bg-01-a),
    var(--bg-02-a),
    var(--bg-03-a),
    var(--bg-04-a),
    var(--bg-05-a),
    var(--bg-06-a),
    var(--bg-07-a),
    var(--bg-08-a),
    var(--bg-09-a),
    var(--bg-10-a); 
}

.rainbow-marker-loader::after{
  content:'';
  display:block;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  transform-origin:left center;
  border-radius:.5rem;
  box-sizing:border-box;  
  margin-top:-7.5%;
  margin-left:-2.5%;
  animation: infinite alternate move-marker var(--duration) ease-in-out;    
  background:
    no-repeat left   0% top    / 3rem  50% linear-gradient(to bottom right, transparent, transparent 40%, var(--color-crayon) 40%),
    no-repeat left   0% bottom / 3rem  50% linear-gradient(to top right, transparent, transparent 40%, var(--color-crayon) 40%),
    no-repeat left 3rem bottom / 100% 100% linear-gradient( var(--color-crayon), var(--color-crayon))
}

@keyframes move-marker{
  10%{
    transform: translate(5%, 100%) rotate(2.5deg);
  }
  20%{
    transform: translate(20%, 0) rotate(-5deg);
  }
  30%{
    transform: translate(30%, 100%) rotate(2.5deg);
  }  
  40%{
    transform: translate(40%, 0) rotate(-5deg);
  } 
  50%{
    transform: translate(50%, 100%) rotate(2.5deg);
  }   
  60%{
    transform: translate(60%, 0) rotate(-5deg);
  }   
  70%{
    transform: translate(70%, 100%) rotate(2.5deg);
  }  
  80%{
    transform: translate(80%, 0) rotate(-5deg);
  }  
  90%{
    transform: translate(90%, 100%) rotate(2.5deg);
  }  
  100%{
    transform: translate(100%, 0) rotate(-5deg);
  }   
}

@keyframes rainbow-fill{
  0%{
    background:
      var(--bg-01-a),
      var(--bg-02-a),
      var(--bg-03-a),
      var(--bg-04-a),
      var(--bg-05-a),
      var(--bg-06-a),
      var(--bg-07-a),
      var(--bg-08-a),
      var(--bg-09-a),
      var(--bg-10-a);
  }
  10%{
    background:
      var(--bg-01-b),
      var(--bg-02-a),
      var(--bg-03-a),
      var(--bg-04-a),
      var(--bg-05-a),
      var(--bg-06-a),
      var(--bg-07-a),
      var(--bg-08-a),  
      var(--bg-09-a), 
      var(--bg-10-a);      
  }
  20%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-a),   
      var(--bg-04-a),
      var(--bg-05-a),
      var(--bg-06-a),
      var(--bg-07-a),  
      var(--bg-08-a),
      var(--bg-09-a),
      var(--bg-10-a);      
  }
  30%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-a),
      var(--bg-05-a),
      var(--bg-06-a),
      var(--bg-07-a),  
      var(--bg-08-a),
      var(--bg-09-a),
      var(--bg-10-a);      
  }
  40%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-b), 
      var(--bg-05-a), 
      var(--bg-06-a), 
      var(--bg-07-a),  
      var(--bg-08-a),
      var(--bg-09-a),
      var(--bg-10-a);      
  }
  50%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-b), 
      var(--bg-05-b), 
      var(--bg-06-a),
      var(--bg-07-a),   
      var(--bg-08-a),
      var(--bg-09-a),
      var(--bg-10-a);      
  }
  60%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-b), 
      var(--bg-05-b), 
      var(--bg-06-b), 
      var(--bg-07-a),   
      var(--bg-08-a),
      var(--bg-09-a),
      var(--bg-10-a);      
  }    
  70%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-b), 
      var(--bg-05-b), 
      var(--bg-06-b), 
      var(--bg-07-b),  
      var(--bg-08-a),
      var(--bg-09-a),
      var(--bg-10-a);      
  }  
  80%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-b), 
      var(--bg-05-b), 
      var(--bg-06-b), 
      var(--bg-07-b),  
      var(--bg-08-b),
      var(--bg-09-a),
      var(--bg-10-a);      
  }
  90%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-b), 
      var(--bg-05-b), 
      var(--bg-06-b), 
      var(--bg-07-b),  
      var(--bg-08-b),
      var(--bg-09-b), 
      var(--bg-10-a);     
  }   
  100%{
    background:
      var(--bg-01-b),
      var(--bg-02-b),
      var(--bg-03-b),
      var(--bg-04-b), 
      var(--bg-05-b), 
      var(--bg-06-b), 
      var(--bg-07-b),  
      var(--bg-08-b),
      var(--bg-09-b), 
      var(--bg-10-b);     
  }
}


/* for demo */
#loader-bg{
	width: 100vw;
	height:100vh;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	padding:1rem 1rem 2rem 1rem;
	box-sizing:border-box;
	overflow:hidden;
	background:#fac82b url(../img/bg_loading.png) no-repeat center center / cover;
	text-align: center;
	z-index: 99999999;
}

.load_title{
	color:var(--color-crayon);
	font-size:1.5rem;
	font-family: 'M PLUS Rounded 1c', sans-serif; 
	text-transform:uppercase;
	letter-spacing:1px;
}








/* =========================================================
     弾幕
========================================================= */
:root {
  --border_color: #fff;
}
.canvans_text_animation {
	position:fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 200vw;
	pointer-events: none;
	z-index: 99999999999;
	font-size: 32px;
	font-weight: 900;

	text-shadow: var(--border_color) 2px 0px 0px, var(--border_color) -2px 0px 0px,     var(--border_color) 0px -2px 0px, var(--border_color) 0px 2px 0px,     var(--border_color) 2px 2px 0px, var(--border_color) -2px 2px 0px,     var(--border_color) 2px -2px 0px, var(--border_color) -2px -2px 0px,     var(--border_color) 1px 2px 0px, var(--border_color) -1px 2px 0px,     var(--border_color) 1px -2px 0px, var(--border_color) -1px -2px 0px,     var(--border_color) 2px 1px 0px, var(--border_color) -2px 1px 0px,     var(--border_color) 2px -1px 0px, var(--border_color) -2px -1px 0px,     var(--border_color) 1px 1px 0px, var(--border_color) -1px 1px 0px,     var(--border_color) 1px -1px 0px, var(--border_color) -1px -1px 0px;
	
	opacity: 0;
	transition: 0.4s;
}

.comment{
	position: absolute;
	left: 0;
    animation-name: comment_scroll;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
	display: block;
	z-index: 999999999999;
}

.comment_1 {
    animation-duration: 8s;
	font-size: 200%;
}
.comment_2 {
    animation-duration: 12s;
	font-size: 120%;
}
.comment_3 {
    animation-duration: 15s;
	font-size: 150%;
}
.comment_4 ,
.comment_5 ,
.comment_6 {
    animation-duration: 10s;
}

.comment_7 {
    animation-duration: 9s;
	font-size: 90%;
}
.comment_8 {
    animation-duration: 17s;
	font-size: 80%;
}
.comment_9 {
    animation-duration: 13s;
	font-size: 60%;
}
.comment_10 ,
.comment_11 ,
.comment_12 {
    animation-duration: 10s;
	font-size: 40%;
}
@keyframes comment_scroll {
from{left: 50%; }
to{ left: -100%; }
}
@media screen and (max-width:767px){
	
	
	.canvans_text_animation {
		width: 300vw;
		font-size: 5.2vw;
	}
	
	
	@keyframes comment_scroll {
	from{left: 100vw; }
	to{ left: -400vw; }
	}
}



/* =========================================================
     colorbox
========================================================= */
#cboxWrapper {
	overflow: hidden;
    width: 600px;
}
#colorbox{
    position: relative;
}
#colorbox #cboxContent .pop_up_box {
    padding: 40px 40px 40px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
    /* height: 790px; */
    margin: 0 auto;
}

#colorbox .pop_text_box {
    text-align: left;
    margin-top: 25px;
    line-height: 1.5;
    font-size: 16px;
	text-align: center;
}
#colorbox .pop_text_box p {
	margin-bottom: 0.5em;
}
#colorbox h3 {
    line-height: 1.3;
    font-size: 24px;
    letter-spacing: 0.02em;
	margin-bottom: 10px;
	display: none;
}
#colorbox #cboxContent .pop_up_box .pop_img_box {
    position: relative;
    height: 450px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    align-items: center;
	text-align: center;
}
#colorbox #cboxContent .pop_up_box .pop_img_box > img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
#colorbox a.close {
    width: 300px;
    height: 55px;
    font-size: 24px;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #E51C13;
    margin: auto;
        transition: 0.2s;
	margin-top: 20px;
}
#colorbox a.close:hover {
	opacity: 0.5;
}


@media screen and (max-width:1000px){
    #colorbox #cboxContent .pop_up_box {
        height: auto;
    }
    #colorbox .pop_text_box {
        margin-top: 30px;
    }
	#colorbox #cboxContent .pop_up_box .pop_img_box {
		height: 400px;
	}
}

@media screen and (max-width:767px){

	#cboxWrapper {
        width: 400px;
	}
    #colorbox #cboxContent .pop_up_box {
        padding: 30px;
        height: auto;
    }
    #colorbox h3 {
        font-size: 20px;
    }
    #colorbox .pop_text_box {
        margin-top: 30px;
        font-size: 14px;
    }
    #colorbox a.close {
        width: calc(100% - 80px );
        height: 50px;
        font-size: 18px;
        bottom: 40px;
    }
    #colorbox #cboxContent .pop_up_box .pop_img_box {
    }
}
@media screen and (max-width:480px){
	#cboxWrapper {
        width: 320px;
	}
	#cboxContent {
    	margin-top: 15px;
	}
    #colorbox #cboxContent .pop_up_box {
        padding: 20px;
        height: auto;
    }
    #colorbox .pop_text_box {
        margin-top: 20px;
    }
    #colorbox h3 {
        font-size: 18px;
    }
    #colorbox .small_catch {
        font-size: 80%;
        margin-bottom: 2px;
    }
    #colorbox a.close {
        width: calc(100% - 40px );
        height: 40px;
        font-size: 16px;
        bottom: 30px;
    }
    #colorbox .start_day {
        left: 20px;
        top: 20px;
        width: 60px;
        height: 60px;
        font-size: 10px;
        background: #fff;
    }
    
    #colorbox .price span.asterisk {
        font-size: 10px;
        margin-top: 5px;
    }
    #colorbox #cboxContent .pop_up_box .pop_img_box {
		height: auto;
    }
    #colorbox #cboxContent .pop_up_box .pop_img_box img {
		max-height: 350px;
    }
}






/* =========================================================
     アニメーション
========================================================= */

.item_anim.top_slide  {
    transform:translateY(200px);
    opacity: 0;
    transition: 1s;
}
.item_anim.top_slide.active {
    transform: translateY(0px);
    opacity: 1;
}


/* パッケージ紹介 タイトル＆テキスト*/
#package_about.item_anim h2 img {
    transform: rotate(0) scale(0);
}
#package_about.item_anim.active h2 img {
    animation-name: package_about_h2;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 0.8s;
    animation-delay: 0.2s;
    transform: rotate(0) scale(0);
    
}
@keyframes package_about_h2 {
    0% {
        transform: rotate(-360deg) scale(0);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

#package_about.item_anim .ttl_under_text {
    transform: scale(0);
}
#package_about.item_anim.active .ttl_under_text {
    animation-name: package_about_under_text;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 0.5s;
    animation-delay: 1s;
    transform: scale(0);
    
}
@keyframes package_about_under_text {
    0% {
        transform:  scale(0);
    }
    80% {
        transform:  scale(1.1);
    }
    100% {
        transform:  scale(1);
    }
}


/* パッケージ紹介 一覧*/
.package_description.item_anim {
    transform:translateY(200px);
    opacity: 0;
    transition: 1s;
}
.package_description.item_anim.active {
    transform: translateY(0px);
    opacity: 1;
}



.package_description.item_anim .pop_anim ,
.package_description.item_anim .img_box {
    transform: scale(0);
}

.package_description.item_anim.active .pop_anim ,
.package_description.item_anim.active .img_box {
    animation-name: package_img_box;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    transform: scale(0);
}

@keyframes package_img_box {
    0% {
        transform:  scale(0);
    }
    80% {
        transform:  scale(1.1);
    }
    100% {
        transform:  scale(1);
    }
}
.package_description.item_anim .text_box {
    transform:translateY(200px);
    opacity: 0;
}

.package_description.item_anim.active .text_box {
    animation-name: package_text_box;
    animation-timing-function: ease;
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 0.8s;
    animation-delay: 1s;
    transform:translateY(200px);
    opacity: 0;
}

@keyframes package_text_box {
    0% {
        transform:translateY(200px);
        opacity: 0;
    }
    100% {
        transform:translateY(0px);
        opacity: 1;
    }
}


.package_description.item_anim .text_box {
    transform:translateY(200px);
    opacity: 0;
}

.package_description.item_anim.active .text_box {
    animation-name: package_text_box;
    animation-timing-function: ease;
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 0.8s;
    animation-delay: 1s;
    transform:translateY(200px);
    opacity: 0;
}

@keyframes package_text_box {
    0% {
        transform:translateY(200px);
        opacity: 0;
    }
    100% {
        transform:translateY(0px);
        opacity: 1;
    }
}



.package_description.item_anim .slide_top_deco {
    transform: scale(0);
}
.package_description.item_anim.active .slide_top_deco {
    animation-name: package_img_box;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 0.5s;
    animation-delay: 1.5s;
    transform: scale(0);
}

@keyframes package_img_box {
    0% {
        transform:  scale(0);
    }
    80% {
        transform:  scale(1.1);
    }
    100% {
        transform:  scale(1);
    }
}