@charset "utf-8";



/*  ===============================
			ROOT
===============================*/

/* variable
===============================
	--bigInrMaxW -
	--cntInrMaxW - pc時inrのmaxwidth inr
*/


img{
	width: auto;
}


/* 1200px < window */
:root{
	--windowMinW: 1024px;
	--windowMaxW: none;
	--cntInrMaxW: 960px;
	--bigInrMaxW: 1200px;
	--secBodyWidth: 960px;

	/* js */
	--documentHeight: ;

	--commonSidePadding: 40px;
	--sans-serif: "Noto Sans JP", sans-serif;;
	--serif: "Noto Serif JP" , serif;
	--en: "EB Garamond", sans-serif;;

	--fzBody: 16px;
	--letterBody: 1px;

	--primaryColor: #647D8E;
	--textColor: var(--primaryColor);
	--lightTextColor: #fff;

	--bgBody: url(../images/bg_body.jpg) repeat;
	--bgColor: #DCDBDB;


	font-size: 10px;

}

body{

	font-family: var(--serif);
	color: var(--textColor);
	background: var(--bgBody);
	background-color: var(--bgColor);

	font-size: var(--fzBody);
	letter-spacing: var(--letterBody);

}

body.develope{
	/* display */
	--dvModeDisplay: block;
	--dvModeAlpha:   1;
}

body:not(.develope){
	/* display */
	--dvModeDisplay: none;
	--dvModeAlpha:   0;
}

html,
body,
.loading{
	max-width: var(--windowMaxW);
	min-width: var(--windowMinW);
}

.Ghdr,
.mv,
.main{
	min-width: var(--windowMinW);
}


.inr{
	max-width: var(--cntInrMaxW);
	margin-left: auto;
	margin-right: auto;
}

.inr--mid{
	padding-right: 40px;
	padding-left: 40px;
}

.inr--big{
	max-width: var(--bigInrMaxW);
	margin-left: auto;
	margin-right: auto;
}







/* window = 1025px ~ 1199px */
@media screen and (min-width: 1025px) and (max-width: 1199px) {
	:root{
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1200px;
	}
}

/* window = 769px ~ 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
	:root{
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1200px;
	}
}

/* window < 768px */
@media screen and (max-width: 768px) {
	:root{
		--windowMinW: none;
		--windowMaxW: 100%;
		--cntInrMaxW: 480px;
		--bigInrMaxW: 100%;
	}

	.inr{
		padding-left:  var(--commonSidePadding);
		padding-right: var(--commonSidePadding);
	}

	.inr--mid{
		padding-right: 0;
		padding-left: 0;
	}
}



/* init */

body{
	position: relative;
	overflow-x: hidden;
}



/* fade init */

.sec{
	opacity: var(--dvModeAlpha);
}
.fade.is-show,
.sec.is-show{
	animation: fadeInToTop 1s forwards;
	will-change: opacity , transform , animation;
}

/* develope */
.develope .sec,
.develope .main img,
.develope .Gcontainer img{
	opacity: var(--dvModeAlpha) !important;
}


.develope .Gcontainer:not(.is-active),
.develope .main:not(.is-active),
.develope .Gftr:not(.is-active){
	display: var(--dvModeDisplay) !important;
}






/*  ===============================
	animation & transition
===============================*/


/* clip-to-bottom
===============================
*/


.clip-to-bottom{
    clip-path: inset(100% 0 0 0);
    transition: .5s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}

	.mv .clip-to-bottom{
		transition-delay: .3s;
	}


	.mv.is-active .clip-to-bottom,
	.sec.is-show .clip-to-bottom{
			clip-path: inset(0);
	}



.fall_sakura{
	position: absolute;

}



/*  ===============================
			GLOBAL
===============================
container
header
navi
footer
other
*/

.Gcontainer{
	overflow: hidden;
}


/* footer
===============================
Gftr
*/

.Gftr{
	--verticalPadding: 6rem;

	color: var(--lightTextColor);
	font-family: var(--en);
	position: relative;
	padding-top:    80px;
	padding-bottom: 50px;
}

.Gftr > *{
	z-index: 2;
}




	.Gftr::before,
	.Gftr::after{
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}


	.Gftr::before{
		z-index: 0;
		background: var(--bgBody);

	}

	.Gftr::after{
		z-index: 1;
		background-color: #5e7d92cf;
		mask-image: linear-gradient(to bottom, #fff0 0%, #fffd 40%, #ffff 70%, #ffff 100%);
		mix-blend-mode: multiply;
	}


.Gftr_obj_wrap{}

.Gftr_obj{
	position: absolute;
	z-index: 2;
	transition: 3s ease;
}

.Gftr_obj:not(.is-show){
	scale: .5;
	rotate: 185deg;
	opacity: 0;
}

.Gftr_obj--left{
	top: 30%;
	right: calc( 50vw + 300px);
	translate: calc( var(--l) * -1 ) calc( var(--t) * -1 );
}

.Gftr_obj--right{
	top: -20%;
	left: calc( 50vw + 400px);
	translate: calc( var(--l) * -1 ) calc( var(--t) * -1 );
	transition-delay: .5s;
}


.Gftr_obj img{
	max-width: none;
}


.Gftr_inr{
	position: relative;
}
.Gftr_sns{
}

.Gftr_anchor{
	font-size: 21px;
	font-weight: 400;
	text-decoration: none;
}

.Gftr_link{
	margin-top: 30px;
	text-align: center;
}

.Gftr_copy{
	margin-top: 50px;
	text-align: center;
	font-size: 13px;
}





/*  ===============================
		  block , element
===============================*/

.main{
	position: relative;
	overflow: hidden;
}

/* sec
===============================
.sec
.sec_hdr
.sec_ttl
.sec_body
.sec_ftr
*/

.sec{
	--verticalPaddings: 175px;
	overflow: hidden;
	padding: var(--verticalPaddings) 0;
	text-align: center;
}

	.sec--campaign{
		position: relative;
		text-align: left;
		z-index: 1;
		color: var(--lightTextColor);
		background: var(--bgBody);
	}

	.sec--campaign > * {
		position: relative;
		z-index: 1;
	}

	.sec--campaign::before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;

		background-color: #5e7d92cf;
		mix-blend-mode: multiply;

		z-index: 0;
	}

	.sec--lyric{
		padding-bottom: calc(var(--verticalPaddings) / 2);
	}
	.sec--tieup{
		padding-top: calc(var(--verticalPaddings) / 2);
	}


.sec_hdr{}

.sec_inr{
	margin-left: auto;
	margin-right: auto;
}

.sec_ttl{
	margin-bottom: 60px;
	text-align: center;
}

	.sec_ttlImg{
		width: auto;
	}


.sec_body{
}
.sec_ftr{}



/* subSec
===============================
-- share

.subSec
.subSec_inr
.subSec_hdr
.subSec_ttl
.subSec_body
.subSec_ftr

*/


.subSec{
	margin-top: 8rem;
}

	.subSec--input{
		text-align: center;
		padding-bottom: 120px;
	}

.subSec_ttl {
	--underlineOffset: 15px;
	--lh: calc( 2em + var(--underlineOffset) );

	line-height: var(--lh);
	letter-spacing: 2px;
	font-weight: 700;
	font-size: 26px;
	text-decoration: underline;
	text-underline-offset: var(--underlineOffset);
}

@media screen and (min-width:769px) {
	.subSec_ttl {
		text-align: center;
	}
}


.subSec_body{}

.subSec_ftr{}




/* strong
===============================
*/

.strong{
	color: var(--primaryColor);
}



/* btn
===============================
*/

.btns{
	text-align: center;
}

.btn{
	display: flex;
	align-items: center;
	justify-content: center;

	margin-left: auto;
	margin-right: auto;

	width: 320px;
	height: 80px;
	padding: 1em .5em;
	color: #FFF;
	font-weight: 300;
	letter-spacing: 2px;

	border-image: url(../images/bg_btn.png) 75 fill / 50rem repeat;

	cursor: pointer;
}

.btn--white{
	color: var(--primaryColor);
	font-weight: 600;
	border-image-source: url(../images/bg_btn--white.png);
}

.btn--disable {
    filter: contrast(0.4);
    color: #ccc;
	cursor: no-drop;
}

/* label
===============================
*/

.label{
	display: inline-block;
	flex: 0 0 auto;
	margin-right: 2em;
	padding: .3em 1em;
	color: var(--primaryColor);
	line-height: 1.8;
	font-weight: 600;
	border-image: url(../images/bg_label.png) 25 fill / 35px repeat;
}



/* marker
===============================
*/

.marker {
	padding-bottom: calc(var(--lh) * 1.25);
	background: url(../images/text_underDot.svg) center/ auto 10px repeat-x;
}



/* obj (ryu)
===============================
*/


.obj {
	/* position: absolute; */
	width: 100vw;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

	z-index: -1;
}

.obj_item{
	--y: 0;

	overflow: hidden;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200vw;
	top: calc( var(--y) * var(--docHeight) / 100);
	left: -50vw;
	z-index: 10;
}

.obj_img{
	--h: 100px;
	width: auto;
	height: var(--h);
	max-width: none;
	transition: .4s cubic-bezier(0.11, 0, 0.5, 0) .8s;
}

.obj_img:not(.is-active){}

.obj_item--right.is-active .obj_img{
	translate: 200% 0;
}

.obj_item--left.is-active .obj_img{
	translate: -200% 0;
}





/* mv , pop
===============================
*/

.mv{
	position: relative;
	height: 100svh;
}

.mv_img{
	width: 100%;
	object-fit: cover;
	object-position: center;
	max-width: 100%;
	height: 100svh;
	transition: 1s ease;
}

.mv_img:not(.start-animate){
	object-position: top;
}


.pop{
	font-size: 24px;
	font-weight: 300;
	color: var(--lightTextColor);
}

.pop_item{
	opacity: 1;
	transition: .5s;
	line-height: 2;
}

.pop_item{
	position: absolute;
	display: block;
}

.pop_ttl{
	top: 45%;
	left: 50%;
	translate: -50% -50%;
}

.pop_list{
	width: 414px;
	bottom: 20px;
	right: 20px;
}


/* animation */

.pop_img{
	animation-duration: 2.5s;
	animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
	animation-fill-mode: forwards;
	will-change: opacity, translate;

}

.pop_img--ttl{
	--y: 100;

	max-height: 60vh;
	transform: translateY(calc( -1vh * var(--y)));
}

.pop_img--detail{
	--x: 200;
	transform: translateX(calc( 1vw * var(--x)));
}



.pop_img--ttl.start-animate{
	animation-name: fadeInToBottom;
}

.pop_img--detail.start-animate{
	animation-delay: .8s;
	animation-name: fadeInToLeft;
}






/* release
===============================
*/

.release_pic{
	margin-bottom: 50px;
}

.release_ttl{
	margin-bottom: 50px;
	font-size: 26px;
	font-weight: 800;
}

.release_ftr{}

.release_btn{}


@media screen and (min-width:769px) {
	.release_img{
		width: 433px;
	}
}



/* campaign
===============================
*/

.campaign{
	line-height: 2;
}


.campaign_texts{
	text-align: center;
}


.campaign_ftr{}

.campaign_pic{
	text-align: center;
}

.campaign_img{
	padding: 4rem;
}


.campaign_texts{
	position: relative;
	/* margin-top: 40px; */
	z-index: 15;
	font-size: 16px;
	font-weight: 600;
	line-height: 2.5;
}

.campaign_text{}


.campagin_ftr{
	margin-top: 8rem;
}







/* entry
===============================
*/

.entry {
	line-height: 1.8;
}

.entry_list {
	margin-top: 60px;
}

.entry_item:not(:first-child) {
	margin-top: 100px;
}

	.entry_item--flex{
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}




.entry_pic{
	max-width: 209px;
	margin-right: 30px;
}


.entry_texts{
	font-size: 22px;
	font-weight: 600;
}

	.entry_item:not(.entry_item--flex) .entry_term{
		margin-bottom: 30px;
	}


	.entry_text--end{
		text-decoration: line-through;
		color: #555;
	}


.entry_notes{
	width: 100%;
	margin-top: 30px;
	font-size: 14px;
	font-family: var(--sans-serif);
	font-weight: 200;

	text-indent: -1em;
	padding-left: 1em;
}

	.entry_note:not(:first-child){
		margin-top: .8em;
	}

	.entry_note--strong{
		font-size: 15px;
		font-weight: 500;
	}

.entry_ftr{
	margin-top: 8rem;
}


@media screen and (min-width:769px) {
	.entry_btns{
		display: flex;
		justify-content: center;
	}

	.entry_btn:not(:first-child){
		margin-left: 2em;
	}
}

.entry_notes--btns{
	margin-top: 0;
	text-align: center;
	color: #EEE;
}

.entry_note--btns{
	text-indent: 0;
}


/* prize */
.prize{
	margin-bottom: 40px;
}

.prize_row{
	display: flex;
}

	.prize_row:not(:first-child){
		margin-top: 40px;
	}



/* step
===============================
*/

.step{
	margin-top: 10rem;
}

.step_list{
	margin-top: 30px;
}

.step_item{
	display: flex;
	gap: 2em;
}

	.step_item:not(:first-child){
		margin-top: 60px;
	}


.step_num{
	flex-shrink: 0;
}

.step_body{
	display: flex;
	flex-flow: column;
}


.step_texts{
	font-size: 18px;
	font-weight: 700;
}

	.step_text:not(:first-child){
		margin-top: 1em;
	}

.step_notes{
	text-indent: -1em;
	padding-left: 1em;

	margin-top: 25px;
	font-family: var(--sans-serif);
	font-size: 14px;
	font-weight: 200;
}

	.step_note:not(:first-child){
		margin-top: .5em;
	}

.step_anchor{
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 5px;
}



/* contact entry
===============================
*/

.contact{
	margin-top: 80px;
}

.contact_list {
	display:flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.contact_term{}

.contact_desc{
	margin-top: -0.3em;
	font-size: 22px;
	text-align: left;
}

.contact_anchor{
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 12px;
}

.contact_ttl{}

.contact_notes{
	margin-top: 25px;
	font-family: var(--sans-serif);
	font-size: 14px;
	font-weight: 200;
}




/* input
===============================
*/

.input_inr{
	max-width: 600px;
}

.input_ttl{
	margin-bottom: 30px;
}

.input_prize{
	text-align: center;
}

.input_pic{
	max-width: 300px;
	margin: 0 auto 30px; /**/
	text-align: center;
}

.input_texts{
	margin-top: 60px;
	margin-bottom: 20px;
	padding-top: 60px;
	border-top: 1px solid var(--primaryColor);
	line-height: 1.8;/**/
}


/* form
===============================
*/

.form{
	max-width: 600px;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;

	padding-top: 60px;
	border-top: 1px solid var(--primaryColor);
}

.form_ttl{
	font-size: 21px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 15px;
}

.form_list{
	margin-top: 3em;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
}
.form_item:not(:first-child){
	margin-top: 2em;
}

.form_item--full{
	width: 100%;
	margin-top: 2rem;
}

.form_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form_term:not(.form_term--long){
	width: 30%;
}
.form_desc:not(.form_desc--long){
	width: 70%;
	padding-left: 1.5rem;
	text-align: left;
}

.form_term{
	font-weight: 700;
}
	.form_term--long{
		margin-top: 80px;
		margin-bottom: 30px;
	}

	.entry--confirm .form_term{
		padding-top: 1rem;
	}


.form_detail{
	margin-top: 1em;
	display: inline-block;
	font-size: .8em;
	font-weight: 400;
}


.form_desc{
	font-size: 22px;
}
	.form_desc--long{}




.form_anchor{
	padding-bottom: 1px;
	border-bottom: 0.5px solid #fff; 
}



.form_note{
	margin-top: 1.5rem;
}

	.form_textarea .form_notes:not(:last-child){
		margin-bottom: 3rem;
	}


.form_btns{
	margin-top: 3em;
	font-size: 16px;
}

	.form_btns--submit{
		margin-top: 80px;
	}

.form_btn .btn{
	font-size: 14px;
	padding: 1em 1.8rem;
}


.form_btn .btn--secondary{
	opacity: .65;
}


.form_btns form:not(:first-child) .form_btn{
	margin-top: 2rem;
}



input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="url"], textarea {
    box-shadow: 0 0 0 1px var(--primaryColor) inset;
	background-color: #eee;
}



.form_textarea{
	width: 100%;
	height: 10em;
	margin-top: 5em;
	color: #777;
	text-align: left;
	padding: 1rem 2rem;
	font-size: 11px;
	overflow: scroll;
	border: 1px solid #999;
}

.form_textarea h3{
	margin-bottom: 1em;
	font-size: 13px;
	font-weight: 500;
}




/* validation */

.validation{
	margin-top: 50px;
	padding: 30px 20px;
	color: red;
	border: 1px solid var(--primaryColor);
}

.validation_ttl{
	margin-bottom: 30px;
	padding-bottom: 1em;
	border-bottom: 1px solid var(--primaryColor);
}
.validation_texts{
	font-weight: 700;
}
	.validation_text:not(:first-child){
		margin-top: .8em;
	}


/* form_message */
.form_message{
	margin-top: 1em;
	font-size: 14px;
}

/* form_error */
.form_error{
	text-align: center;
	color: red;
}


/* upload */

.form_current{
	text-align: center;
	margin: 60px auto;
}


.form_currentPic{}

.form_currentImg{
	max-width: 300px;;
}

.form_currentMessage{
	margin-top: .5em;
	font-size: 13px;
}


.rim1_fileUploadedName{
	margin-top: 1em;
}



/* confirm時 */

.entry--confirm{
	margin: 5rem auto;
}


.entry--confirm .form_term,
.entry--confirm .form_desc{
	text-align: left;
}


.entry--confirm .form_term{
	margin-bottom: .8em;
}

.entry--confirm .form_desc{
	font-weight: 400;
}

.entry--confirm .form_desc p{
	margin-bottom: 0.8em;
}


/* finish画面 */

.finish{
	text-align: center;
}

.finish_ttl{
	margin: 0 0 50px;
}



/* lyric
===============================
*/

.lyric{
	font-size: 16px;
	font-weight: 300;
	line-height: 2;
}


.lyric_text{
	margin-bottom: 2rem;
}





/* accordion */


.rim1_accordionUi{
	--accordionColor: var(--primaryColor);
	--accordionBgColor: transparent;
	--hoverColor: #fff;
	--hoverBgColor: var(--primaryColor);

	position: relative;
	margin-left: auto;
	margin-right: auto;
	color: var(--accordionColor);
	background-color: var(--accordionBgColor);
	display: flex;
	flex-direction: column;

	max-width: 350px;
	padding: 1rem 2rem;

	font-size: 14px;
	font-weight: 100;
	transition: .5s;
	cursor: pointer;
}

	.rim1_accordionUi::before{
		content: "・・・";
		display: inline-block;
		line-height: 1;
		color: var(--accordionColor);
		transition: .5s;
	}


	.rim1_accordionUi::after{
		content: "";
		position: absolute;
		display: inline-block;
		width: 4rem;
		height: 1px;
		left: 0;
		right: 0;
		margin: auto;
		bottom: 1px;
		box-shadow: 0 1px 0 0 var(--accordionColor);
		transition: .5s;
	}

@media screen and (min-width:769px) {
	.rim1_accordionUi:hover{
		color: var(--hoverColor);
		background-color: var(--hoverBgColor);
	}

	.rim1_accordionUi:hover::before{ color: var(--hoverColor)}
	.rim1_accordionUi:hover::after{ box-shadow: none}
}


	.rim1_accordionUi.is-active,
	.rim1_accordionUi.is-active::before,
	.rim1_accordionUi.is-active::after{
		display: block;
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		transition: all 1s, max-height 1s ease-out .8s;
	}


/* tieup
===============================
*/

.tieup{}

.tieup_img{
	max-width: min( 716px , 100% );
}

.tieup_ftr{
	margin-top: 8rem;
}



/* sns_list
===============================
*/
.sns_list{
	display: flex;
	justify-content: center;
}
.sns_item{
	width: 4rem;
	height: 4rem;
	margin-left: 5.5rem;
}
	.sns_item:first-child{
		margin-left: 0;
	}

.sns_anchor{
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}

.sns_anchor::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background-color: #37BEF0; */
	transform: rotate(45deg);
	z-index: 0;
}

@media screen and (min-width:769px) {
	.sns_anchor:hover{
		opacity: .8;
	}
}

.sns_img{
	position: relative;
	z-index: 1;
	fill: #0F0F0F;
	width: auto;
}




/*  ===============================
			loading
===============================*/


/* loading (ryu)
===============================
*/

/* init */
/* 読み込み用svg */
.svg_group{
	display: none;
}

.GContainer,
.main,
.Gftr{
	display: none;
}

/* op 0 */
/* init anime */
.loading{
	opacity: 1;
}



.loading{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/bg_body.jpg) center repeat;
	z-index: 100;
}

.loading_body{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;

	overflow: hidden;
}

.loading_ttl{
	position: fixed;
	width: 100%;

	top: 50%;
	left: 50%;
	translate: -50% -50%;

	text-align: center;
}


.loading_ttlImg{
	--y: 200;
	transform: translateY(calc( -1% * var(--y)));

	transition: .25s;
	width: auto;
	max-height: 50vh;

	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
	animation-fill-mode: forwards;
	will-change: opacity, translate;

}


.loading_ttl.is-active .loading_ttlImg{
	animation-name: fadeInToBottom;
}






.loading_obj{
	position: absolute;
	z-index: 2;
	transition: 1.5s ease;
}

.loading_obj:not(.is-active){
	scale: .5;
	rotate: 75deg;
	opacity: 0;
}

.loading_obj--left{
	top: 30%;
	right: calc( 50vw + 170px);
	translate: calc( var(--l) * -1 ) calc( var(--t) * -1 );
}

.loading_obj--right{
	top: 60%;
	left: calc( 50vw + 200px);
	translate: calc( var(--l) * -1 ) calc( var(--t) * -1 );
	transition-delay: .1s;
	transition-duration: 1.3s;
}



.loading_sakura{
	position: fixed;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	z-index: 10;
}





@keyframes infinity-scroll {
	from {
	  translate: 0;
	}
	  to {
	  translate: calc( -50vw + 100vw );
	}
}


.loading_movingBorder {
	--h: 10vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
}


.loading_movingBorder--top {
	top: 0;
	translate: 0 calc( ( var(--h) / 2 ) * -3 );
}

.loading_movingBorder--bottom {
	bottom: 0;
	translate: 0 calc( ( var(--h) / 2 ) * 3 );
}



.loading_movingBorder img {
	width: auto;
	min-width: 120%;
	height: var(--h);
	min-height: 208px;
	max-width: none;
	animation: infinity-scroll 10s infinite linear 0s both;
}

	.loading_movingBorder--bottom img {
		animation-direction: reverse;
	}



/* controls */

.loading_control {
	position: fixed;
	display: flex;
	top: 1em;
	right: 2em;
	cursor: pointer;
	transition: 1s;
	opacity: 0;
	z-index: 1000;
}

.loading_btn {
	padding: 0.5em 0.8em;
	color: #fff;
	background: var(--darkTextColor);
}

.loading_btn:not(:first-child) {
	margin-left: 1rem;
}





.fixedSqareAspedctRatio_wrap{
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.fixedSqareAspedctRatio_wrap::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.fixedSqareAspedctRatio {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

