@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none}*:focus{outline:none}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0}
/*-----------------------------------------------
 * Base
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Base
-------------------------------------------------*/
:root{
	/* color */
	--color-main-red:#d60012;

	/* Font */
	--font-noto:"Noto Serif JP",serif;
	--font-en:"Playfair",serif;

	/* default */
	--max-percent:1.6;
	--def-ww:1200;
	--def-wh:640;

	--vw-min: var(--def-ww);
	--vh-min: var(--def-wh);

	/* sp-size */
	--sp-size-2:min(0.2667vw,2px);
	--sp-size-4:min(0.5334vw,4px);
	--sp-size-8:min(1.0667vw,8px);
	--sp-size-10:min(1.3334vw,10px);
	--sp-size-12:min(1.6vw,12px);
	--sp-size-16:min(2.1334vw,16px);
	--sp-size-20:min(2.6667vw,20px);
	--sp-size-24:min(3.2vw,24px);
	--sp-size-26:min(3.4667vw,26px);
	--sp-size-28:min(3.7334vw,28px);
	--sp-size-30:min(4vw,30px);
	--sp-size-32:min(4.2667vw,32px);
	--sp-size-36:min(4.8vw,36px);
	--sp-size-40:min(5.3334vw,40px);
	--sp-size-48:min(6.4vw,48px);
	--sp-size-56:min(7.4667vw,56px);
	--sp-size-64:min(8.5334vw,64px);
	--sp-size-72:min(9.6vw,72px);
	--sp-size-80:min(10.6667vw,80px);
	--sp-size-96:min(12.8vw,96px);
	--sp-size-192:min(25.6vw,192px);
}
@media screen and (max-width:767px){
	:root{
		/* default */
		--def-ww:750;
		--def-wh:1334;
	}
}
body{
	-webkit-text-size-adjust:100%;
	background-color:#fff;
	color:#222;
	font-family:var(--font-noto);
	font-feature-settings:"palt";
	font-size:16px;
	font-weight:normal;
	letter-spacing:0.07em;
	line-height:1.8;
	word-wrap:break-word;
}
.pc{display:block}
.sp{display:none}
a{color:#222}
a:hover{text-decoration:none}
.ah{transition:opacity .3s ease}
.ah:hover{opacity:.7}
::selection{
	background:#6ccfee;
	color:#fff;
}
::-moz-selection{
	background:#6ccfee;
	color:#fff;
}
@media screen and (max-width:767px){
	html{
		font-size:62.5%;
	}
	body{
		font-size:10px;
		font-size:1rem;
		font-size:var(--sp-size-24);
		min-width:320px;
	}
	.sp{display:block}
	.pc{display:none}
	.ah:hover{opacity:1}
}
#fullWrap{
	position:relative;
	width:100%;
}
#fullContentWrap{
	width:100%;
	position:relative;
	padding-bottom:276px;
	min-height:calc(100vh - 274px);
	/*min-height:calc(100vh - 418px);*/ /* bannerあるばあい */
}

@media screen and (max-width:767px){
	#fullContentWrap{
		padding-bottom:calc(196 / var(--def-ww) * 100vw);
		min-height:calc(100vh - (410 / var(--def-ww) * 100vw));
	}
}

@keyframes ani_rotate{
	  0%{transform:rotate(0deg)}
	100%{transform:rotate(360deg)}
}
/** SAFARI **/
::-webkit-full-page-media,:future,:root .-noSafari{
	display:none!important;
	width:0;
	height:0;
	overflow:hidden;
}
.-safariOnly{
	display:none;
	width:0;
	height:0;
	overflow:hidden;
}
::-webkit-full-page-media,:future,:root .-safariOnly{
	display:block;
	width:auto;
	height:auto;
	overflow:unset;
}
/* ScrollBar Setting */
::-webkit-scrollbar{
	width:6px;
	height:6px;
}
::-webkit-scrollbar-track{
  border-radius:4px;
  background:rgb(255,255,255);
}
::-webkit-scrollbar-thumb{
	background:var(--color-main-red);
	border-radius:2px;
	margin:2px;
	box-shadow:none;
}
/* firefox Only Scrollbar */
@-moz-document url-prefix(){
	html{
		scrollbar-color:var(--color-main-red) rgb(230,230,230);
		scrollbar-width:thin;
	}
}
/* Lenis */
html.lenis,html.lenis body{
	height:auto;
}
.lenis.lenis-smooth{
	scroll-behavior:auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent]{
	overscroll-behavior:contain;
}
.lenis.lenis-stopped{
	overflow:hidden;
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling:touch;
	background:rgba(255,255,255,.8);
	-webkit-backdrop-filter:blur(8px);
	backdrop-filter:blur(8px);
	display:none;
	width:100%;
	height:100%;
	overflow:auto;
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
}
.oneModal{
	display:none;
	width:100%;
	height:100%;
	position:relative;
	z-index:1;
}

/* oneModalIn */
.oneModalIn{
	display:flex;
	justify-content:center;
	align-items:center;
	height:auto;
	width:100%;
	min-width:100%;
	min-height:100%;
	margin:0 auto;
	position:relative;
}
.oneModalIn__cont{
	padding:50px 0;
}
@media screen and (max-width:767px){
	.oneModalIn{
		min-width:100%;
	}
	.oneModalIn__cont{
		width:100%;
		padding:9.6% 0;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width:80px;
	height:80px;
	position:absolute;
	top:0;
	right:0;
	margin-top:24px;
	margin-right:24px;
	z-index:2;
}
.closeBtn a{
	background:var(--color-main-red);
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	border-radius:50%;
	overflow:hidden;
	padding-top:20px;
	text-decoration:none;
}
.closeBtn__line{
	display:block;
	position:relative;
	width:40px;
	height:20px;
	margin:0 auto;
}
.closeBtn__line:before,
.closeBtn__line:after{
	content:'';
	position:absolute;
	width:100%;
	height:1px;
	background-color:#000;
	top:0;
	bottom:0;
	margin:auto 0;
}
.closeBtn__line:before{
	transform:rotate(30deg);
}
.closeBtn__line:after{
	transform:rotate(-30deg);
}
.closeBtn__txt{
	display:block;
	margin-top:14px;
	text-align:center;
	font-family:var(--font-en);
	font-weight:700;
	line-height:0.8;
	letter-spacing:-0.005em;
}

@media screen and (max-width:767px){
	.closeBtn{
		height:var(--sp-size-96);
		width:100%;
		padding-top:var(--sp-size-24);
		padding-right:var(--sp-size-24);
		position:sticky;
		display:flex;
		justify-content:flex-end;
		right:0;
		top:0;
		margin:0 0 max(-12.8vw,-96px);
	}
	.closeBtn a{
		width:var(--sp-size-96);
		height:var(--sp-size-96);
		padding-top:var(--sp-size-26);
		position:relative;
		right:unset;
		top:unset;
	}
	.closeBtn__line{
		width:var(--sp-size-48);
		height:var(--sp-size-20);
	}
	.closeBtn__line:before,
	.closeBtn__line:after{
		height:var(--sp-size-2);
	}
	.closeBtn__txt{
		margin-top:var(--sp-size-16);
		font-size:var(--sp-size-20);
		letter-spacing:0;
		font-size:var(--sp-size-20);
	}
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width:100%;
	height:100%;
	display:block;
}

/* youtube */
.youtubeIframeWrap{
	width:70%;
	max-width:159.993vh;
	position:relative;
}
@media screen and (max-width:767px){
	.youtubeIframeWrap{
		width:100%;
		max-width:100%;
	}
}
.youtubeIframeWrap:before{
	content:"";
	display:block;
	padding-top:56.25%;
	z-index:0;
}
.youtubeIframe{
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header{
	width:100%;
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	z-index:999;
	pointer-events:none;
}
@media screen and (max-width:767px){
	.header{
		position:fixed;
		bottom:auto;
	}
}

/* inner */
@media screen and (min-width:768px){
	.header__inner{
		position:sticky;
		top:0;
		left:0;
		width:16.6667%;/* 200 */
		height:min(100%,100vh);
		min-height:800px;
	}
	.headerLogo{
		width:80.5%;
		max-width:161px;
		margin-left:auto;
		padding-top:80px;
	}
	.headerLogo a{
		display:block;
		pointer-events:auto;
	}
	.headerLogo a img{
		width:100%;
		filter:drop-shadow(0 0 6px #FFF) drop-shadow(0 0 5px #FFF) drop-shadow(0 0 4px #FFF) drop-shadow(0 0 6px #FFF);
	}
}
@media (hover:hover) and (pointer:fine){
	.headerLogo a{
		transition:.4s ease;
	}
	.headerLogo a:hover{
		transform:scale(1.025);
	}
}
@media screen and (max-width:767px){
	.header__inner{
		-webkit-overflow-scrolling:touch;
		width:100%;
		height:100%;
		overflow:auto;
		position:fixed;
		top:0;
		left:0;
		padding:var(--sp-size-48) 0;
		opacity:0;
		pointer-events:none;
		z-index:1;
		transition:opacity .5s ease-in-out;
	}
	.header.is-active .header__inner{
		opacity:1;
		pointer-events:auto;
	}

	.header__inner:before{
		content:"";
		background:rgba(255,255,255,.8);
		-webkit-backdrop-filter:blur(8px);
		backdrop-filter:blur(8px);
		position:fixed;
		width:100%;
		height:100%;
		top:0;
		left:0;
		z-index:0;
	}

	.headerLogo{
		width:31.4667%;
		margin-left:auto;
		margin-right:auto;
		position:relative;
	}
	.headerLogo a{
		display:block;
	}
	.headerLogo a img{
		width:100%;
	}
}

/**
 * headerNav
 */
.headerNav{
	width:100%;
	padding-top:40px;
	filter:drop-shadow(0 0 6px #FFF) drop-shadow(0 0 5px #FFF) drop-shadow(0 0 4px #FFF) drop-shadow(0 0 6px #FFF);
}
.headerNavList{
	font-family:var(--font-en);
	font-size:20px;
	font-weight:500;
	position:relative;
	text-align:right;
	line-height:0.75;
	padding:4px 0;
	letter-spacing:-0.00625em;
}
.headerNavList:not(:last-child){
	margin-bottom:24px;
}
.headerNavList:after{
	content:'';
	position:absolute;
	bottom:4px;
	left:0;
	right:0;
	height:1px;
	background-image:linear-gradient(90deg,var(--color-main-red),var(--color-main-red));
	background-repeat:no-repeat;
	background-position:right center;
	background-size:0 100%;
	transition:background-size .35s ease;
}
.navList__link{
	text-decoration:none;
	pointer-events:auto;
	transition:.35s ease;
	color:#222;
}
.navList__txt > span:not(.hd){
	color:var(--color-main-red);
}

@media (hover:hover) and (pointer:fine){
	.headerNavList{
		pointer-events:none;
	}
	.headerNavList:hover::after{
		background-position:left center;
		background-size:100% 100%;
	}
}

/* ACTIVE */
.headerNavList.is-active:after{
	background-position:left center;
	background-size:100% 100%;
}
.headerNavList.is-active .navList__link{
	color:var(--color-main-red);
}

/* SNS */
.headerSNSLists{
	padding-top:40px;
}
.snsList__txtWrap{
	display:inline-flex;
	align-items: center;
	padding-top:10px;
	padding-bottom:10px;
	position:relative;
}
.snsList__txtWrap > dd{
	width:32px;
	height:32px;
	margin-left: 12px;
}
.snsList__icon{
	display: block;
	width: 100%;
	height: 100%;
	margin:auto 0;
	border-radius:50%;
	background-color:#000;
	z-index:2;
	position: relative;
}
a.snsList__icon{
	pointer-events: auto;
}
.snsList__icon:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:50%;
	height:50%;
	background-color:#fff;
	margin:auto;
}
.headerSNSLists .snsList__icon[href*="x.com"]:before{
	mask:url(../img/common/icon_tw.svg) no-repeat center / contain;
	-webkit-mask:url(../img/common/icon_tw.svg) no-repeat center / contain;
}
.headerSNSLists .snsList__icon[href*="tiktok.com"]:before{
	mask:url(../img/common/icon_tt.svg) no-repeat center / contain;
	-webkit-mask:url(../img/common/icon_tt.svg) no-repeat center / contain;
}

.headerSNSLists .headerNavList:after{
	content: unset;
	bottom:13px;
	right:26px;
}

@media (hover:hover) and (pointer:fine){
	.snsList__icon{
		transition:background-color .35s ease;
	}
	.headerSNSLists .snsList__icon:hover{
		background-color:var(--color-main-red);
	}
}


@media screen and (max-width:767px){
	.headerNav{
		position:relative;
		z-index:1;
		filter:unset;
		padding-top:var(--sp-size-96);
		display:flex;
		flex-direction:column;
		min-height:calc(100% - calc(132 / var(--def-ww) * 100vw));
	}
	.headerNavList{
		font-size:var(--sp-size-40);
		padding:var(--sp-size-4) 0;
		text-align:center;
	}
	.headerNavList:not(:last-child){
		margin-bottom:var(--sp-size-48);
	}
	.headerNavList:after{
		bottom:var(--sp-size-8);
		height:var(--sp-size-2);
	}
	.navList__link{
		pointer-events:unset;
	}
	.header.is-active .navList__link{
		pointer-events:auto;
	}
	
	/* SNS */
	.headerSNSLists{
		margin-top:auto;
		padding-top:var(--sp-size-64);
		padding-bottom:var(--sp-size-32);
		padding-right:var(--sp-size-24);
	}
	.headerSNSLists .headerNavList{
		text-align:right;
	}
	.snsList__txtWrap > dd{
		width: var(--sp-size-64);
		height: var(--sp-size-64);
		margin-left: min(calc(24 / var(--vw-min) * 100vw), 24px);
	}
}

/**
 * navBtn
 */
@media screen and (max-width:767px){
	.header__navBtnWrap{
		width:var(--sp-size-96);
		height:var(--sp-size-96);
		position:absolute;
		top:0;
		right:0;
		margin-top:var(--sp-size-24);
		margin-right:var(--sp-size-24);
		z-index:2;
		border-radius:50%;
		background-color:#e60012;
		overflow:hidden;
	}
	.header__navBtnWrap:before{
		content:'';
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		background:linear-gradient( 45deg,rgb(0,0,0) 0%,rgba(0,0,0,0) 100%);
		transition:.4s ease;
	}
	.header__navBtnWrap:after{
		content:'';
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		background-color:#000;
		opacity:40%;
		transition:.4s ease;
	}
	.header__navBtn{
		display:block;
		width:100%;
		height:100%;
		position:relative;
		border-radius:50%;
		z-index:2;
		pointer-events:auto;
		padding-top:var(--sp-size-26);
		color:#FFF;
		transition:.4s ease;
	}
	.header__navBtn__lineWrap{
		width:var(--sp-size-48);
		height:var(--sp-size-20);
		position:relative;
		margin:0 auto;
	}
	.header__navBtn--line{
		background-color:#fff;
		display:block;
		width:100%;
		height:var(--sp-size-2);
		margin:auto;
		position:absolute;
		transition:.4s ease;
	}
	.header__navBtn--line:nth-child(1){
		top:0;
		bottom:calc(100% - var(--sp-size-2));
	}
	.header__navBtn--line:nth-child(2){
		top:calc(100% - var(--sp-size-2));
		bottom:0;
	}

	.header__navBtn__textWrap{
		position:relative;
		margin-top:var(--sp-size-16);
		font-family:var(--font-en);
		font-weight:700;
		font-size:var(--sp-size-20);
		letter-spacing:0;
		line-height:0.8;
	}
	.header__navBtn__text{
		position:absolute;
		top:0;
		left:0;
		width:100%;
		opacity:0;
		transform:translateX(25%);
		transition:opacity .3s ease,transform .3s ease;
		text-align:center;
	}

	.header__navBtn__text.-menu{
		opacity:1;
		transform:translateX(0%);
	}
	
	/* active */
	.header__navBtn.is-active:before{
		width:100%;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1){
		top:50%;
		bottom:50%;
		transform:rotate(30deg);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2){
		bottom:50%;
		top:50%;
		transform:rotate(-30deg);
	}

	.header__navBtn.is-active .header__navBtn__text.-menu{
		opacity:0;
		transform:translateX(-25%);
	}
	.header__navBtn.is-active .header__navBtn__text.-close{
		opacity:1;
		transform:translateX(0%);
	}

	.header.is-active .header__navBtnWrap:before,
	.header.is-active .header__navBtnWrap:after{
		opacity:0;
		transform:translate(100%,0%);
	}
	.header__navBtn.is-active{
		color:#000;
	}
	.header__navBtn.is-active .header__navBtn--line{
		background-color:#000;
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists{
	display:flex;
	align-items:center;
	justify-content:center;
}

/* title */
.shareLists__title{
	font-family:var(--font-en);
	font-weight:400;
	letter-spacing:0.05em;
	padding-right:20px;
	color:#FFF;
}

/* item */
.shareLists__item{
	width:60px;
	height:20px;
	padding:0 20px;
}

/* link */
.shareLists__link{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
	position:relative;
	text-decoration:none;
}
.shareLists__link:before{
	content:"";
	width:100%;
	height:100%;
	background-color:#FFF;
	display:block;
	-webkit-mask-repeat:no-repeat;
	mask-repeat:no-repeat;
	-webkit-mask-position:center;
	mask-position:center;
	-webkit-mask-size:100%;
	mask-size:100%;
	transition:background-color .4s ease;
}
.shareLists__link:hover:before{
	background-color:var(--color-main-red);
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before{
	-webkit-mask-image:url(../img/common/icon_tw.svg);
	mask-image:url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before{
	-webkit-mask-image:url(../img/common/icon_fb.svg);
	mask-image:url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before{
	-webkit-mask-image:url(../img/common/icon_line.svg);
	mask-image:url(../img/common/icon_line.svg);
}

@media screen and (max-width:767px){
	.shareLists{
		justify-content:flex-start;
		padding-left:var(--sp-size-48);
	}
	.shareLists__title{
		padding-right:var(--sp-size-24);
	}
	.shareLists__item{
		width:var(--sp-size-96);
		height:var(--sp-size-48);
		padding:0 var(--sp-size-24);
	}
}


/*-----------------------------------------------
 * content
-------------------------------------------------*/
.content{
	width:100%;
	position:relative;
	padding-top:80px;
}
.harfCont{
	width:76.6667%;/* 920 */
	max-width:calc((920px * var(--max-percent)) + (100vw  - (1200px * var(--max-percent)) - (100vw - (1200px * var(--max-percent))) / 2));
	padding-right:calc(100vw - (1200px * var(--max-percent)) - (100vw - (1200px * var(--max-percent))) / 2);
	position:relative;
	margin-left:auto;
}
.contentBg{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,40%);
}
.harfCont:before{
	content:'';
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	background:linear-gradient( 45deg,rgb(0,0,0) 0%,rgba(0,0,0,0) 100%);
	width:100%;
}
.harfCont.-bgnone:before{
	content:unset;
}
.harfCont.-left{
	padding-right:unset;
	padding-left:calc(100vw - (1200px * var(--max-percent)) - (100vw - (1200px * var(--max-percent))) / 2);
	margin-right:auto;
}

.harfContIn{
	width:100%;
	position:relative;
	padding:0 8.6957%;/* 0 80 */
}

.cont_h2{
	width:100%;
	height:120px;
	display:flex;
	position:relative;
}
.cont_h2--en{
	display:inline-block;
	position:relative;
	height:100%;
}
.cont_h2--en:before,
.cont_h2--en:after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-repeat:no-repeat;
	background-size:contain;
}
.cont_h2--en img{
	max-width:100%;
	mix-blend-mode:difference;
}


.cont_h2--ja{
	margin-left:auto;
	display:flex;
	align-items:center;
	flex-direction:row-reverse;
	font-size:20px;
	line-height:1;
	letter-spacing:0.4em;
	color:#FFF;
	mix-blend-mode:difference;
}
.cont_h2--ja_txt{
	display:inline-block;
	padding:0 6px;
	position:relative;
	writing-mode:vertical-rl;
}
.cont_h2--ja_txt:before,
.cont_h2--ja_txt:last-child::after{
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:1px;
	background-color:#fff;
}
.cont_h2--ja_txt:before{
	right:0;
}
.cont_h2--ja_txt:last-child::after{
	left:0;
}

.cont_h2--ja.-color_b{
	mix-blend-mode:unset;
	color:#000;
}

.cont_h2--ja.-color_b .cont_h2--ja_txt:before,
.cont_h2--ja.-color_b .cont_h2--ja_txt:last-child::after{
	background-color:#000;
}
.contentIn{
	width:100%;
}

/** safari ONLY **/
::-webkit-full-page-media,:future,:root .cont_h2--ja:not(.-color_b){
	position:relative;
	mix-blend-mode:unset;
}
::-webkit-full-page-media,:future,:root .cont_h2--ja:not(.-color_b):before,
::-webkit-full-page-media,:future,:root .cont_h2--ja:not(.-color_b):after{
	content:'';
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	mask-repeat:no-repeat;
	mask-position:center;
	mask-size:contain;
	background-color:#fff;
	margin:auto 0;
	width:100%;
}
::-webkit-full-page-media,:future,:root .cont_h2--ja:not(.-color_b):before{
	background:linear-gradient(180deg,#FFF 0px,#FFF 80px,transparent 80px,transparent 100%);
}
::-webkit-full-page-media,:future,:root .cont_h2--ja:not(.-color_b):after{
	mix-blend-mode:difference;
}
::-webkit-full-page-media,:future,:root .cont_h2--ja:not(.-color_b) .cont_h2--ja_txt{
	width:0;
	height:0;
	overflow:hidden;
}



@media screen and (max-width:767px){
	.content{
		padding-top:var(--sp-size-96);
	}
	.harfCont{
		width:93.6%;/* 702 */
		max-width:100%;
		padding-right:unset;
	}
	.harfCont.-left{
		padding-left:unset;
	}
	.harfContIn{
		padding:0 var(--sp-size-48);
	}
	.harfCont.-bgnone .harfContIn{
		padding:0 var(--sp-size-48) 0 0;
	}
	.cont_h2{
		height:calc(144 / var(--def-ww) * 100vw);
	}
	.cont_h2--en{
		max-width:100%;
	}
	.cont_h2--en img{
		width:auto;
		height:100%
	}
	.cont_h2--ja{
		font-size:var(--sp-size-24);
	}
	.cont_h2--ja_txt{
		padding:0 var(--sp-size-10);
	}

	::-webkit-full-page-media,:future,:root .cont_h2--ja:not(.-color_b):before{
		background:linear-gradient(180deg,#FFF 0px,#FFF var(--sp-size-96),transparent var(--sp-size-96),transparent 100%);
	}
}


/**
 * ndImg
 **/
.-ndlimg{
	-webkit-touch-callout:none;
	-ms-user-select:none;
	-webkit-user-select:none;
	user-select:none;
	-webkit-touch-callout:none;
	-moz-touch-callout:none;
	touch-callout:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;
	user-drag:none;
}

/*-----------------------------------------------
 * contBG
-------------------------------------------------*/
.contBG{
	position:absolute;
	top:0;
	left:0;
	bottom:200px;
	width:100%;
	z-index:-1;
}
.contBG__cont{
	position:sticky;
	top:0;
	width:100%;
	height:min(100vh,100%);
	min-height:640px;
}
body:not([data-page="top"]) .contBG__txt{
	opacity:50%;
}
body:not([data-page="top"]) .contBG__side.-l,
body:not([data-page="top"]) .contBG__side.-r{
	opacity:75%;
}
.contBG__txt{
	position:absolute;
	width:100%;
	padding-top:151px;
	background-image:url(../img/common/bg_txt-title.svg);
	background-repeat:repeat-x;
	background-size:calc(3373px + 120px) 151px;
	animation:ani__bg_title 69.86s linear infinite;/* 60px/s */
}
.contBG__txt.-t{
	top:0;
	margin-top:40px;
}
.contBG__txt.-b{
	bottom:0;
	margin-bottom:40px;
	animation-direction:reverse;
}
@keyframes ani__bg_title{
	0%{background-position-x:0}
	100%{background-position-x:calc(3373px + 120px)}
}

.contBG__side{
	position:absolute;
}
.contBG__side.-lt{
	left:0;
	top:0;
	width:200px;
	height:293px;
	mask:url(../img/common/bg_side-lt.svg) no-repeat left top / contain;
	-webkit-mask:url(../img/common/bg_side-lt.svg) no-repeat left top / contain;
	background:url(../img/common/bg_side-lt_img.jpg) no-repeat center top / 100%;
}
.contBG__side.-rb{
	right:0;
	bottom:0;
	width:159px;
	height:318px;
	margin-bottom:-120px;
	mask:url(../img/common/bg_side-rb.svg) no-repeat right bottom / contain;
	-webkit-mask:url(../img/common/bg_side-rb.svg) no-repeat right bottom / contain;
	background:url(../img/common/bg_side-rb_img.jpg) no-repeat center bottom / 100%;
}


.contBG__side.-l{
	width:calc(252 / var(--def-ww) * 100vw);
	height:calc(258 / var(--def-wh) * 100vh);
	top:18.75%;
	left:0;
	bottom:0;
	margin:auto;
	transition:opacity .4s ease;
}
.contBG__side.-l .contBG__sideIn{
	display:block;
	width:100%;
	height:100%;
	transform-origin:left center;
}
.contBG__side.-l img{
	opacity:60%;
	width:100%;
	height:100%;
	object-fit:scale-down;
	object-position:left center;
	transition:filter .8s ease;
}

.contBG__side.-r{
	width:calc(159 / var(--def-ww) * 100vw);
	height:calc(258 / var(--def-wh) * 100vh);
	top:18.75%;
	right:0;
	bottom:0;
	margin:auto 0;
	transition:opacity .4s ease;
}
.contBG__side.-r .contBG__sideIn{
	display:block;
	width:100%;
	height:100%;
	transform-origin:right center;
}
.contBG__side.-r img{
	opacity:40%;
	width:100%;
	height:100%;
	object-fit:scale-down;
	object-position:right center;
	transition:filter .8s ease;
}

body:not([data-page="top"]) .contBG__side.-l img,
body:not([data-page="top"]) .contBG__side.-r img{
	filter:blur(10px);
}


@media screen and (max-width:767px){
	.contBG{
		bottom:0;
	}
	.contBG__cont{
		min-height:min(100vh,100%);
	}
	.contBG__txt{
		padding-top:calc(151 / var(--def-ww) * 100vw);
		background-size:calc((3373 + 120) / var(--def-ww) * 100vw) calc(151 / var(--def-ww) * 100vw);
	}
	.contBG__txt.-t{
		margin-top:var(--sp-size-48);
	}
	.contBG__txt.-b{
		margin-bottom:var(--sp-size-48);
	}

	@keyframes ani__bg_title{
		0%{background-position-x:0}
		100%{background-position-x:calc((3373 + 120) / var(--def-ww) * 100vw)}
	}

	.contBG__side.-lt{
		width:calc(200 / var(--def-ww) * 100vw);
		height:calc(293 / var(--def-ww) * 100vw);
	}
	.contBG__side.-rb{
		width:calc(200 / var(--def-ww) * 100vw);
		height:calc(200 / var(--def-ww) * 100vw);
		mask-position:right top;
		-webkit-mask-position:right top;
		mask-size:cover;
		-webkit-mask-size:cover;
		margin-bottom:unset;
	}

	.contBG__side.-l{
		margin:unset;
		top:unset;
		bottom:calc(120 / var(--def-ww) * 100vw);
	}
	.contBG__side.-r{
		top:calc(120 / var(--def-ww) * 100vw);
		bottom:unset;
		margin:unset;
	}
}



/*-----------------------------------------------
 * InPage
-------------------------------------------------*/
.i-main{
	padding-top:80px;
	width:100%;
}

.i-main .harfCont:before{
	content:unset;
}

.i-main .cont_h2--en img{
	mix-blend-mode:unset;
}
.i-main .cont_h2--ja{
	mix-blend-mode:unset;
	color:#000;
}
.i-main .cont_h2--ja_txt:before,
.i-main .cont_h2--ja_txt:last-child::after{
	background-color:#000;
}

.i-main .contentIn{
	padding-top:80px;
}

@media screen and (min-width:768px){
	.s-logo{
		display:none;
	}
}
@media screen and (max-width:767px){
	.i-main{
		padding-top:calc(196 / var(--def-ww) * 100vw);
	}
	.s-logo{
		position:absolute;
		top:0;
		left:0;
		right:0;
        width:31.4667%;
        margin-left:auto;
        margin-right:auto;
		z-index:2;
		margin-top:var(--sp-size-48);
		filter:drop-shadow(0 0 6px #FFF) drop-shadow(0 0 5px #FFF) drop-shadow(0 0 4px #FFF) drop-shadow(0 0 6px #FFF);
	}
	.s-logo a{
		display:block;
	}
	.s-logo a img{
		width:100%;
	}
	.i-main .contentIn{
		padding-top:var(--sp-size-96);
	}
	.i-main .harfContIn{
		padding:0 var(--sp-size-48) 0 0;
	}
}



/*-----------------------------------------------
 * footer
-------------------------------------------------*/
.footer{
	width:100%;
	background-color:#000;
	padding:80px 6.6667%;
	position:relative;
}
.footerIn{
	width:100%;
}

.footer_BannerLists{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding-top:40px;
}
.footer_BannerList{
	width:240px;
	margin:20px;
}
.footer_BannerList a{
	display:block;
	position:relative;
}
.footer_BannerList img{
	width:100%;
}
.copyright{
	font-size:87.5%;
	padding-top:60px;
	text-align:center;
	color:rgba(255,255,255,40%);
}

@media (hover:hover) and (pointer:fine){
	.footer_BannerList a:before{
		content:'';
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		background-color:var(--color-main-red);
		mix-blend-mode:multiply;
		opacity:0%;
		transform:scale(80%);
		transition:.4s ease;
	}
	.footer_BannerList a:hover::before{
		transform:scale(100%);
		opacity:60%;
	}
}

@media screen and (max-width:767px){
	.footer{
		padding:var(--sp-size-96) 0;
	}
	.footer_BannerLists{
		padding-top:var(--sp-size-72);
	}
	.footer_BannerList{
		width:40.4%;/* 303 */
		margin:var(--sp-size-24);
	}
	.copyright{
		padding-top:72px;
		font-size:83.3334%;
	}
}

.wp-pagenavi{
	display:flex;
	justify-content:center;
	align-items:center;
	padding-top:48px;
}
@media screen and (max-width:767px){
	.wp-pagenavi{
		padding-top:var(--sp-size-48);
	}
}
.wp-pagenavi a{
	display:flex;
	justify-content:center;
	align-items:center;
	border:1px solid rgba(0,0,0,.4);
	border-radius:50%;
	text-decoration:none;
	margin:0 8px;
	width:40px;
	height:40px;
	position:relative;
	z-index:10;
	transition:all 0.6s ease;
}
@media screen and (max-width:767px){
	.wp-pagenavi a{
		margin:0 var(--sp-size-12);
		width:var(--sp-size-64);
		height:var(--sp-size-64);
	}
}
@media screen and (hover:hover){
	.wp-pagenavi a:hover{
		color:#fff;
		border-color:var(--color-main-red);
	}
}
.wp-pagenavi a:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background:var(--color-main-red);
	z-index:-1;
	border-radius:50%;
	transform:scale(0);
	opacity:0;
	transition:all 0.6s ease;
}
@media screen and (hover:hover){
	.wp-pagenavi a:hover:before{
		opacity:1;
		transform:scale(1);
	}
}
.wp-pagenavi span{
	display:flex;
	justify-content:center;
	align-items:center;
	border:1px solid var(--color-main-red);
	background:var(--color-main-red);
	border-radius:50%;
	text-decoration:none;
	margin:0 8px;
	color:#fff;
	width:40px;
	height:40px;
}
@media screen and (max-width:767px){
	.wp-pagenavi span{
		margin:0 var(--sp-size-12);
		width:var(--sp-size-64);
		height:var(--sp-size-64);
	}
}

/*-----------------------------------------------
 * Goods Modal
-------------------------------------------------*/
.goodsModal__cont{
	width:960px;
	display:flex;
}
@media screen and (max-width:767px){
	.goodsModal__cont{
		width:86%;
		display:block;
		padding:var(--sp-size-96) 0;
	}
}
.goodsModal__left{
	width:460px
}
@media screen and (max-width:767px){
	.goodsModal__left{
		width:100%;
		margin-bottom:var(--sp-size-48);
	}
}
.goodsModal__img img{
	width:100%;
	height:auto;
}
.goodsModal__right{
	padding-left:40px;
	flex:1;
}
@media screen and (max-width:767px){
	.goodsModal__right{
		padding-left:0;
		flex:1;
	}
}
.goodsModal__categories{
	display:flex;
	flex-wrap:wrap;
	padding-bottom:.5em;
}
.goodsModal__category{
	height:20px;
	line-height:20px;
	font-size:12px;
	padding:0 0.25em;
	background:#000;
	color:#fff;
	margin:0 0.5em 0.5em 0;
}
@media screen and (max-width:767px){
	.goodsModal__category{
		height:var(--sp-size-32);
		line-height:var(--sp-size-32);
		font-size:var(--sp-size-24);
	}
}
.goodsModal__title{
	font-size:20px;
	color:var(--color-main-red);
	border-bottom:1px solid var(--color-main-red);
	display:block;
	margin-bottom:1em;
}
@media screen and (max-width:767px){
	.goodsModal__title{
		font-size:var(--sp-size-32);
	}
}
.goodsModal__specs{
	margin-bottom:1.2em;
}
.goodsModal__spec{
	display:flex;
	margin-bottom:0.3em;
}
.goodsModal__spec dt{
	color:var(--color-main-red);
	margin-right:1em;
	white-space:nowrap;
}
.goodsModal__spec dd{
	flex:1;
}
.goodsModal__link_btn{
	padding:2em 32px 0;
	text-align:center;
}
.goodsModal__link_btn--link{
	display:inline-block;
	min-width:min(100%,440px);
	position:relative;
	text-decoration:none;
	padding:14px 40px;
	line-height:1.25;
	color:#000;
	border:1px solid #000;
	border-radius:40px;
}
.goodsModal__link_btn--txt{
	position:relative;
}
.goodsModal__link_btn--arrow{
	width:40px;
	height:1px;
	position:absolute;
	top:0;
	right:-20px;
	bottom:0;
	margin:auto 0;
	background-color:#000;
}
@media (hover:hover) and (pointer:fine){
	.goodsModal__link_btn--link{
		transition:.3s ease;
	}
	.goodsModal__link_btn--link:before{
		content:'';
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		border-radius:40px;
		opacity:0;
		transform:scale(80%);
		background-color:var(--color-main-red);
		transition:.6s ease;
	}
	.goodsModal__link_btn--arrow{
		transition:.3s ease .2s;
	}

	.goodsModal__link_btn--link:hover{
		border-color:var(--color-main-red);
	}

	.goodsModal__link_btn--link:hover::before{
		transform:scale(100%);
		opacity:1;
	}
	.goodsModal__link_btn--link:hover .goodsModal__link_btn--arrow{
		transform:translateX(25%);
	}
}

@media screen and (max-width:767px){
	.goodsModal__link_btn{
		padding:var(--sp-size-48) var(--sp-size-48) 0;
	}
	.goodsModal__link_btn--link{
		padding:var(--sp-size-24) var(--sp-size-48);
		border-radius:64px;
		border-width:var(--sp-size-2);
	}
	.goodsModal__link_btn--arrow{
		width:var(--sp-size-48);
		height:var(--sp-size-2);
		right:calc(var(--sp-size-24) * -1);
	}
}





/*-----------------------------------------------
 * bubbleBg
-------------------------------------------------*/
.bubbleBg {
	overflow: hidden;
	width: 100%;
	height: calc(100% + 200px);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0%;
	filter: blur(4px);
	transition: opacity .8s ease, filter .6s ease;
	pointer-events: none;
}

html.lenis-scrolling .bubbleBg{
	opacity: 20%;
	filter: blur(0px);
}






.bubble {
	position: absolute;
	bottom: 0;
	left: 50%;
}
.bubble .item {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.6) inset;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.6) inset;
	position: relative;
}
.bubble .item:after {
	/* content: ""; */
	display: block;
	width: 20%;
	height: 20%;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	right: 15%;
	top: 15%;
	transform: rotateZ(45deg) scaleY(0.8);
	-webkit-transform: rotateZ(45deg) scaleY(0.8);
}
/** アニメーション **/
/* 伸縮 */
@keyframes stretch {
	0% {	transform: scaleX(1) scaleY(1); }
	33% {	transform: scaleX(0.9) scaleY(1); }
	66% {	transform: scaleX(1) scaleY(0.9); }
	100% {	transform: scaleX(1) scaleY(1); }
}
@-webkit-keyframes stretch {
	0% {	-webkit-transform: scaleX(1) scaleY(1); }
	33% {	-webkit-transform: scaleX(0.9) scaleY(1); }
	66% {	-webkit-transform: scaleX(1) scaleY(0.9); }
	100% {	-webkit-transform: scaleX(1) scaleY(1); }
}
/* 横揺れ */
@keyframes shake {
	0% {	transform:	translateX(10px); }
	50% {	transform:	translateX(-10px); }
	100% {	transform:	translateX(10px); }
}
@-webkit-keyframes shake {
	0% {	-webkit-transform:	translateX(10px); }
	50% {	-webkit-transform:	translateX(-10px); }
	100% {	-webkit-transform:	translateX(10px); }
}
/* 移動（上昇） */
@keyframes move {
	0% {	transform:	translateY(0px); }
	100% {	transform:	translateY(-1000px); opacity: 0; }
}
@-webkit-keyframes move {
	0% {	-webkit-transform:	translateY(0px); }
	100% {	-webkit-transform:	translateY(-1000px); opacity: 0; }
}
/*** 泡のアニメーションパターン量産 ***/
/* 伸縮 */
.stretch0 {
	animation: stretch 2s ease 0s infinite normal;
	-webkit-animation: stretch 2s ease 0s infinite normal;
}
/* 横揺れ */
.shake0 {
	animation: shake 2s ease 0s infinite normal;
	-webkit-animation: shake 2s ease 0s infinite normal;
}
/* 移動（上昇） */
.move0 {
	animation: move 5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s infinite normal;
	-webkit-animation: move 5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s infinite normal;
}
/* 配置 */
.pos0 {
 left: 0%;
}
/* 大きさ */
.scale0 {
	transform: scale(0);
	-webkit-transform: scale(0);
}
/* 以下同様に変化をつけて50個作成 */
.stretch1 {
	animation: stretch 2.2s ease 0s infinite normal;
	-webkit-animation: stretch 2.2s ease 0s infinite normal;
}
.shake1 {
	animation: shake 2.2s ease 0s infinite normal;
	-webkit-animation: shake 2.2s ease 0s infinite normal;
}
.move1 {
	animation: move 5.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s infinite normal;
	-webkit-animation: move 5.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s infinite normal;
}
.pos1 {
 left: 2%;
}
.scale1 {
	transform: scale(0.1);
	-webkit-transform: scale(0.1);
}
.stretch2 {
	animation: stretch 2.4s ease 0s infinite normal;
	-webkit-animation: stretch 2.4s ease 0s infinite normal;
}
.shake2 {
	animation: shake 2.4s ease 0s infinite normal;
	-webkit-animation: shake 2.4s ease 0s infinite normal;
}
.move2 {
	animation: move 5.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s infinite normal;
	-webkit-animation: move 5.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s infinite normal;
}
.pos2 {
 left: 4%;;
}
.scale2 {
	transform: scale(0.2);
	-webkit-transform: scale(0.2);
}
.stretch3 {
	animation: stretch 2.6s ease 0s infinite normal;
	-webkit-animation: stretch 2.6s ease 0s infinite normal;
}
.shake3 {
	animation: shake 2.6s ease 0s infinite normal;
	-webkit-animation: shake 2.6s ease 0s infinite normal;
}
.move3 {
	animation: move 5.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s infinite normal;
	-webkit-animation: move 5.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s infinite normal;
}
.pos3 {
 left: 6%;
}
.scale3 {
	transform: scale(0.3);
	-webkit-transform: scale(0.3);
}
.stretch4 {
	animation: stretch 2.8s ease 0s infinite normal;
	-webkit-animation: stretch 2.8s ease 0s infinite normal;
}
.shake4 {
	animation: shake 2.8s ease 0s infinite normal;
	-webkit-animation: shake 2.8s ease 0s infinite normal;
}
.move4 {
	animation: move 5.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s infinite normal;
	-webkit-animation: move 5.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s infinite normal;
}
.pos4 {
 left: 8%;
}
.scale4 {
	transform: scale(0.4);
	-webkit-transform: scale(0.4);
}
.stretch5 {
	animation: stretch 3s ease 0s infinite normal;
	-webkit-animation: stretch 3s ease 0s infinite normal;
}
.shake5 {
	animation: shake 3s ease 0s infinite normal;
	-webkit-animation: shake 3s ease 0s infinite normal;
}
.move5 {
	animation: move 6s cubic-bezier(0.47, 0, 0.745, 0.715) 1s infinite normal;
	-webkit-animation: move 6s cubic-bezier(0.47, 0, 0.745, 0.715) 1s infinite normal;
}
.pos5 {
 left: 10%;
}
.scale5 {
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
}
.stretch6 {
	animation: stretch 3.2s ease 0s infinite normal;
	-webkit-animation: stretch 3.2s ease 0s infinite normal;
}
.shake6 {
	animation: shake 3.2s ease 0s infinite normal;
	-webkit-animation: shake 3.2s ease 0s infinite normal;
}
.move6 {
	animation: move 6.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s infinite normal;
	-webkit-animation: move 6.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s infinite normal;
}
.pos6 {
 left: 12%;
}
.scale6 {
	transform: scale(0.6);
	-webkit-transform: scale(0.6);
}
.stretch7 {
	animation: stretch 3.4s ease 0s infinite normal;
	-webkit-animation: stretch 3.4s ease 0s infinite normal;
}
.shake7 {
	animation: shake 3.4s ease 0s infinite normal;
	-webkit-animation: shake 3.4s ease 0s infinite normal;
}
.move7 {
	animation: move 6.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s infinite normal;
	-webkit-animation: move 6.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s infinite normal;
}
.pos7 {
 left: 14%;
}
.scale7 {
	transform: scale(0.7);
	-webkit-transform: scale(0.7);
}
.stretch8 {
	animation: stretch 3.6s ease 0s infinite normal;
	-webkit-animation: stretch 3.6s ease 0s infinite normal;
}
.shake8 {
	animation: shake 3.6s ease 0s infinite normal;
	-webkit-animation: shake 3.6s ease 0s infinite normal;
}
.move8 {
	animation: move 6.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s infinite normal;
	-webkit-animation: move 6.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s infinite normal;
}
.pos8 {
 left: 16%;
}
.scale8 {
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
}
.stretch9 {
	animation: stretch 3.8s ease 0s infinite normal;
	-webkit-animation: stretch 3.8s ease 0s infinite normal;
}
.shake9 {
	animation: shake 3.8s ease 0s infinite normal;
	-webkit-animation: shake 3.8s ease 0s infinite normal;
}
.move9 {
	animation: move 6.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s infinite normal;
	-webkit-animation: move 6.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s infinite normal;
}
.pos9 {
 left: 18%;
}
.scale9 {
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
}
.stretch10 {
	animation: stretch 4s ease 0s infinite normal;
	-webkit-animation: stretch 4s ease 0s infinite normal; }

.shake10 {
	animation: shake 4s ease 0s infinite normal;
	-webkit-animation: shake 4s ease 0s infinite normal; }

.move10 {
	animation: move 7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s infinite normal;
	-webkit-animation: move 7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s infinite normal;
}
.pos10 {
 left: 20%;
}
.scale10 {
	transform: scale(1);
	-webkit-transform: scale(1);
}
.stretch11 {
	animation: stretch 4.2s ease 0s infinite normal;
	-webkit-animation: stretch 4.2s ease 0s infinite normal;
}
.shake11 {
	animation: shake 4.2s ease 0s infinite normal;
	-webkit-animation: shake 4.2s ease 0s infinite normal;
}
.move11 {
	animation: move 7.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s infinite normal;
	-webkit-animation: move 7.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s infinite normal;
}
.pos11 {
 left: 22%;
}
.scale11 {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.stretch12 {
	animation: stretch 4.4s ease 0s infinite normal;
	-webkit-animation: stretch 4.4s ease 0s infinite normal;
}
.shake12 {
	animation: shake 4.4s ease 0s infinite normal;
	-webkit-animation: shake 4.4s ease 0s infinite normal;
}
.move12 {
	animation: move 7.4s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s infinite normal;
	-webkit-animation: move 7.4s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s infinite normal;
}
.pos12 {
 left: 24%;
}
.scale12 {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
}
.stretch13 {
	animation: stretch 4.6s ease 0s infinite normal;
	-webkit-animation: stretch 4.6s ease 0s infinite normal;
}
.shake13 {
	animation: shake 4.6s ease 0s infinite normal;
	-webkit-animation: shake 4.6s ease 0s infinite normal;
}
.move13 {
	animation: move 7.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s infinite normal;
	-webkit-animation: move 7.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s infinite normal;
}
.pos13 {
 left: 26%;
}
.scale13 {
	transform: scale(1.3);
	-webkit-transform: scale(1.3);
}
.stretch14 {
	animation: stretch 4.8s ease 0s infinite normal;
	-webkit-animation: stretch 4.8s ease 0s infinite normal;
}
.shake14 {
	animation: shake 4.8s ease 0s infinite normal;
	-webkit-animation: shake 4.8s ease 0s infinite normal;
}
.move14 {
	animation: move 7.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s infinite normal;
	-webkit-animation: move 7.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s infinite normal;
}
.pos14 {
 left: 28%;
}
.scale14 {
	transform: scale(1.4);
	-webkit-transform: scale(1.4);
}
.stretch15 {
	animation: stretch 5s ease 0s infinite normal;
	-webkit-animation: stretch 5s ease 0s infinite normal;
}
.shake15 {
	animation: shake 5s ease 0s infinite normal;
	-webkit-animation: shake 5s ease 0s infinite normal;
}
.move15 {
	animation: move 8s cubic-bezier(0.47, 0, 0.745, 0.715) 3s infinite normal;
	-webkit-animation: move 8s cubic-bezier(0.47, 0, 0.745, 0.715) 3s infinite normal;
}
.pos15 {
 left: 30%;
}
.scale15 {
	transform: scale(1.5);
	-webkit-transform: scale(1.5);
}
.stretch16 {
	animation: stretch 5.2s ease 0s infinite normal;
	-webkit-animation: stretch 5.2s ease 0s infinite normal;
}
.shake16 {
	animation: shake 5.2s ease 0s infinite normal;
	-webkit-animation: shake 5.2s ease 0s infinite normal;
}
.move16 {
	animation: move 8.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s infinite normal;
	-webkit-animation: move 8.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s infinite normal;
}
.pos16 {
 left: 32%;
}
.scale16 {
	transform: scale(1.6);
	-webkit-transform: scale(1.6);
}
.stretch17 {
	animation: stretch 5.4s ease 0s infinite normal;
	-webkit-animation: stretch 5.4s ease 0s infinite normal;
}
.shake17 {
	animation: shake 5.4s ease 0s infinite normal;
	-webkit-animation: shake 5.4s ease 0s infinite normal;
}
.move17 {
	animation: move 8.4s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s infinite normal;
	-webkit-animation: move 8.4s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s infinite normal;
}
.pos17 {
 left: 34%; }

.scale17 {
	transform: scale(1.7);
	-webkit-transform: scale(1.7);
}
.stretch18 {
	animation: stretch 5.6s ease 0s infinite normal;
	-webkit-animation: stretch 5.6s ease 0s infinite normal;
}
.shake18 {
	animation: shake 5.6s ease 0s infinite normal;
	-webkit-animation: shake 5.6s ease 0s infinite normal;
}
.move18 {
	animation: move 8.6s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s infinite normal;
	-webkit-animation: move 8.6s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s infinite normal;
}
.pos18 {
 left: 36%;
}
.scale18 {
	transform: scale(1.8);
	-webkit-transform: scale(1.8);
}
.stretch19 {
	animation: stretch 5.8s ease 0s infinite normal;
	-webkit-animation: stretch 5.8s ease 0s infinite normal;
}
.shake19 {
	animation: shake 5.8s ease 0s infinite normal;
	-webkit-animation: shake 5.8s ease 0s infinite normal;
}
.move19 {
	animation: move 8.8s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s infinite normal;
	-webkit-animation: move 8.8s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s infinite normal;
}
.pos19 {
 left: 38%;
}
.scale19 {
	transform: scale(1.9);
	-webkit-transform: scale(1.9);
}
.stretch20 {
	animation: stretch 6s ease 0s infinite normal;
	-webkit-animation: stretch 6s ease 0s infinite normal;
}
.shake20 {
	animation: shake 6s ease 0s infinite normal;
	-webkit-animation: shake 6s ease 0s infinite normal;
}
.move20 {
	animation: move 9s cubic-bezier(0.47, 0, 0.745, 0.715) 4s infinite normal;
	-webkit-animation: move 9s cubic-bezier(0.47, 0, 0.745, 0.715) 4s infinite normal;
}
.pos20 {
 left: 40%;
}
.scale20 {
	transform: scale(2);
	-webkit-transform: scale(2);
}
.stretch21 {
	animation: stretch 6.2s ease 0s infinite normal;
	-webkit-animation: stretch 6.2s ease 0s infinite normal;
}
.shake21 {
	animation: shake 6.2s ease 0s infinite normal;
	-webkit-animation: shake 6.2s ease 0s infinite normal;
}
.move21 {
	animation: move 9.2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s infinite normal;
	-webkit-animation: move 9.2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s infinite normal;
}
.pos21 {
 left: 42%;
}
.scale21 {
	transform: scale(2.1);
	-webkit-transform: scale(2.1);
}
.stretch22 {
	animation: stretch 6.4s ease 0s infinite normal;
	-webkit-animation: stretch 6.4s ease 0s infinite normal;
}
.shake22 {
	animation: shake 6.4s ease 0s infinite normal;
	-webkit-animation: shake 6.4s ease 0s infinite normal;
}
.move22 {
	animation: move 9.4s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s infinite normal;
	-webkit-animation: move 9.4s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s infinite normal;
}
.pos22 {
 left: 44%;
}
.scale22 {
	transform: scale(2.2);
	-webkit-transform: scale(2.2);
}
.stretch23 {
	animation: stretch 6.6s ease 0s infinite normal;
	-webkit-animation: stretch 6.6s ease 0s infinite normal;
}
.shake23 {
	animation: shake 6.6s ease 0s infinite normal;
	-webkit-animation: shake 6.6s ease 0s infinite normal;
}
.move23 {
	animation: move 9.6s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s infinite normal;
	-webkit-animation: move 9.6s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s infinite normal;
}
.pos23 {
 left: 46%;
}
.scale23 {
	transform: scale(2.3);
	-webkit-transform: scale(2.3);
}
.stretch24 {
	animation: stretch 6.8s ease 0s infinite normal;
	-webkit-animation: stretch 6.8s ease 0s infinite normal;
}
.shake24 {
	animation: shake 6.8s ease 0s infinite normal;
	-webkit-animation: shake 6.8s ease 0s infinite normal;
}
.move24 {
	animation: move 9.8s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s infinite normal;
	-webkit-animation: move 9.8s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s infinite normal;
}
.pos24 {
 left: 48%;
}
.scale24 {
	transform: scale(2.4);
	-webkit-transform: scale(2.4);
}
.stretch25 {
	animation: stretch 7s ease 0s infinite normal;
	-webkit-animation: stretch 7s ease 0s infinite normal;
}
.shake25 {
	animation: shake 7s ease 0s infinite normal;
	-webkit-animation: shake 7s ease 0s infinite normal;
}
.move25 {
	animation: move 10s cubic-bezier(0.47, 0, 0.745, 0.715) 5s infinite normal;
	-webkit-animation: move 10s cubic-bezier(0.47, 0, 0.745, 0.715) 5s infinite normal;
}
.pos25 {
 left: 50%;
}
.scale25 {
	transform: scale(2.5);
	-webkit-transform: scale(2.5);
}
.stretch26 {
	animation: stretch 7.2s ease 0s infinite normal;
	-webkit-animation: stretch 7.2s ease 0s infinite normal;
}
.shake26 {
	animation: shake 7.2s ease 0s infinite normal;
	-webkit-animation: shake 7.2s ease 0s infinite normal;
}
.move26 {
	animation: move 10.2s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s infinite normal;
	-webkit-animation: move 10.2s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s infinite normal;
}
.pos26 {
 left: 52%;
}
.scale26 {
	transform: scale(2.6);
	-webkit-transform: scale(2.6);
}
.stretch27 {
	animation: stretch 7.4s ease 0s infinite normal;
	-webkit-animation: stretch 7.4s ease 0s infinite normal;
}
.shake27 {
	animation: shake 7.4s ease 0s infinite normal;
	-webkit-animation: shake 7.4s ease 0s infinite normal;
}
.move27 {
	animation: move 10.4s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s infinite normal;
	-webkit-animation: move 10.4s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s infinite normal;
}
.pos27 {
 left: 54%;
}
.scale27 {
	transform: scale(2.7);
	-webkit-transform: scale(2.7);
}
.stretch28 {
	animation: stretch 7.6s ease 0s infinite normal;
	-webkit-animation: stretch 7.6s ease 0s infinite normal;
}
.shake28 {
	animation: shake 7.6s ease 0s infinite normal;
	-webkit-animation: shake 7.6s ease 0s infinite normal;
}
.move28 {
	animation: move 10.6s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s infinite normal;
	-webkit-animation: move 10.6s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s infinite normal;
}
.pos28 {
 left: 56%;
}
.scale28 {
	transform: scale(2.8);
	-webkit-transform: scale(2.8);
}
.stretch29 {
	animation: stretch 7.8s ease 0s infinite normal;
	-webkit-animation: stretch 7.8s ease 0s infinite normal;
}
.shake29 {
	animation: shake 7.8s ease 0s infinite normal;
	-webkit-animation: shake 7.8s ease 0s infinite normal;
}
.move29 {
	animation: move 10.8s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s infinite normal;
	-webkit-animation: move 10.8s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s infinite normal;
}
.pos29 {
 left: 58%;
}
.scale29 {
	transform: scale(2.9);
	-webkit-transform: scale(2.9);
}
.stretch30 {
	animation: stretch 8s ease 0s infinite normal;
	-webkit-animation: stretch 8s ease 0s infinite normal;
}
.shake30 {
	animation: shake 8s ease 0s infinite normal;
	-webkit-animation: shake 8s ease 0s infinite normal;
}
.move30 {
	animation: move 11s cubic-bezier(0.47, 0, 0.745, 0.715) 6s infinite normal;
	-webkit-animation: move 11s cubic-bezier(0.47, 0, 0.745, 0.715) 6s infinite normal;
}
.pos30 {
 left: 60%;
}
.scale30 {
	transform: scale(3);
	-webkit-transform: scale(3);
}
.stretch31 {
	animation: stretch 8.2s ease 0s infinite normal;
	-webkit-animation: stretch 8.2s ease 0s infinite normal;
}
.shake31 {
	animation: shake 8.2s ease 0s infinite normal;
	-webkit-animation: shake 8.2s ease 0s infinite normal;
}
.move31 {
	animation: move 11.2s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s infinite normal;
	-webkit-animation: move 11.2s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s infinite normal;
}
.pos31 {
 left: 62%;
}
.scale31 {
	transform: scale(3.1);
	-webkit-transform: scale(3.1);
}
.stretch32 {
	animation: stretch 8.4s ease 0s infinite normal;
	-webkit-animation: stretch 8.4s ease 0s infinite normal;
}
.shake32 {
	animation: shake 8.4s ease 0s infinite normal;
	-webkit-animation: shake 8.4s ease 0s infinite normal;
}
.move32 {
	animation: move 11.4s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s infinite normal;
	-webkit-animation: move 11.4s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s infinite normal;
}
.pos32 {
 left: 64%;
}
.scale32 {
	transform: scale(3.2);
	-webkit-transform: scale(3.2);
}
.stretch33 {
	animation: stretch 8.6s ease 0s infinite normal;
	-webkit-animation: stretch 8.6s ease 0s infinite normal;
}
.shake33 {
	animation: shake 8.6s ease 0s infinite normal;
	-webkit-animation: shake 8.6s ease 0s infinite normal;
}
.move33 {
	animation: move 11.6s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s infinite normal;
	-webkit-animation: move 11.6s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s infinite normal;
}
.pos33 {
 left: 66%;
}
.scale33 {
	transform: scale(3.3);
	-webkit-transform: scale(3.3);
}
.stretch34 {
	animation: stretch 8.8s ease 0s infinite normal;
	-webkit-animation: stretch 8.8s ease 0s infinite normal;
}
.shake34 {
	animation: shake 8.8s ease 0s infinite normal;
	-webkit-animation: shake 8.8s ease 0s infinite normal;
}
.move34 {
	animation: move 11.8s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s infinite normal;
	-webkit-animation: move 11.8s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s infinite normal;
}
.pos34 {
 left: 68%;
}
.scale34 {
	transform: scale(3.4);
	-webkit-transform: scale(3.4);
}
.stretch35 {
	animation: stretch 9s ease 0s infinite normal;
	-webkit-animation: stretch 9s ease 0s infinite normal;
}
.shake35 {
	animation: shake 9s ease 0s infinite normal;
	-webkit-animation: shake 9s ease 0s infinite normal;
}
.move35 {
	animation: move 12s cubic-bezier(0.47, 0, 0.745, 0.715) 7s infinite normal;
	-webkit-animation: move 12s cubic-bezier(0.47, 0, 0.745, 0.715) 7s infinite normal;
}
.pos35 {
 left: 70%;
}
.scale35 {
	transform: scale(3.5);
	-webkit-transform: scale(3.5);
}
.stretch36 {
	animation: stretch 9.2s ease 0s infinite normal;
	-webkit-animation: stretch 9.2s ease 0s infinite normal;
}
.shake36 {
	animation: shake 9.2s ease 0s infinite normal;
	-webkit-animation: shake 9.2s ease 0s infinite normal;
}
.move36 {
	animation: move 12.2s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s infinite normal;
	-webkit-animation: move 12.2s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s infinite normal;
}
.pos36 {
 left: 72%;
}
.scale36 {
	transform: scale(3.6);
	-webkit-transform: scale(3.6);
}
.stretch37 {
	animation: stretch 9.4s ease 0s infinite normal;
	-webkit-animation: stretch 9.4s ease 0s infinite normal;
}
.shake37 {
	animation: shake 9.4s ease 0s infinite normal;
	-webkit-animation: shake 9.4s ease 0s infinite normal;
}
.move37 {
	animation: move 12.4s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s infinite normal;
	-webkit-animation: move 12.4s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s infinite normal;
}
.pos37 {
 left: 74%;
}
.scale37 {
	transform: scale(3.7);
	-webkit-transform: scale(3.7);
}
.stretch38 {
	animation: stretch 9.6s ease 0s infinite normal;
	-webkit-animation: stretch 9.6s ease 0s infinite normal;
}
.shake38 {
	animation: shake 9.6s ease 0s infinite normal;
	-webkit-animation: shake 9.6s ease 0s infinite normal;
}
.move38 {
	animation: move 12.6s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s infinite normal;
	-webkit-animation: move 12.6s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s infinite normal;
}
.pos38 {
 left: 76%;
}
.scale38 {
	transform: scale(3.8);
	-webkit-transform: scale(3.8);
}
.stretch39 {
	animation: stretch 9.8s ease 0s infinite normal;
	-webkit-animation: stretch 9.8s ease 0s infinite normal;
}
.shake39 {
	animation: shake 9.8s ease 0s infinite normal;
	-webkit-animation: shake 9.8s ease 0s infinite normal;
}
.move39 {
	animation: move 12.8s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s infinite normal;
	-webkit-animation: move 12.8s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s infinite normal;
}
.pos39 {
 left: 78%;
}
.scale39 {
	transform: scale(3.9);
	-webkit-transform: scale(3.9);
}
.stretch40 {
	animation: stretch 10s ease 0s infinite normal;
	-webkit-animation: stretch 10s ease 0s infinite normal;
}
.shake40 {
	animation: shake 10s ease 0s infinite normal;
	-webkit-animation: shake 10s ease 0s infinite normal;
}
.move40 {
	animation: move 13s cubic-bezier(0.47, 0, 0.745, 0.715) 8s infinite normal;
	-webkit-animation: move 13s cubic-bezier(0.47, 0, 0.745, 0.715) 8s infinite normal;
}
.pos40 {
 left: 80%;
}
.scale40 {
	transform: scale(4);
	-webkit-transform: scale(4);
}
.stretch41 {
	animation: stretch 10.2s ease 0s infinite normal;
	-webkit-animation: stretch 10.2s ease 0s infinite normal;
}
.shake41 {
	animation: shake 10.2s ease 0s infinite normal;
	-webkit-animation: shake 10.2s ease 0s infinite normal;
}
.move41 {
	animation: move 13.2s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s infinite normal;
	-webkit-animation: move 13.2s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s infinite normal;
}
.pos41 {
 left: 82%;
}
.scale41 {
	transform: scale(4.1);
	-webkit-transform: scale(4.1);
}
.stretch42 {
	animation: stretch 10.4s ease 0s infinite normal;
	-webkit-animation: stretch 10.4s ease 0s infinite normal;
}
.shake42 {
	animation: shake 10.4s ease 0s infinite normal;
	-webkit-animation: shake 10.4s ease 0s infinite normal;
}
.move42 {
	animation: move 13.4s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s infinite normal;
	-webkit-animation: move 13.4s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s infinite normal;
}
.pos42 {
 left: 84%;
}
.scale42 {
	transform: scale(4.2);
	-webkit-transform: scale(4.2);
}
.stretch43 {
	animation: stretch 10.6s ease 0s infinite normal;
	-webkit-animation: stretch 10.6s ease 0s infinite normal;
}
.shake43 {
	animation: shake 10.6s ease 0s infinite normal;
	-webkit-animation: shake 10.6s ease 0s infinite normal;
}
.move43 {
	animation: move 13.6s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s infinite normal;
	-webkit-animation: move 13.6s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s infinite normal;
}
.pos43 {
 left: 86%;
}
.scale43 {
	transform: scale(4.3);
	-webkit-transform: scale(4.3);
}
.stretch44 {
	animation: stretch 10.8s ease 0s infinite normal;
	-webkit-animation: stretch 10.8s ease 0s infinite normal;
}
.shake44 {
	animation: shake 10.8s ease 0s infinite normal;
	-webkit-animation: shake 10.8s ease 0s infinite normal;
}
.move44 {
	animation: move 13.8s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s infinite normal;
	-webkit-animation: move 13.8s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s infinite normal;
}
.pos44 {
 left: 88%;
}
.scale44 {
	transform: scale(4.4);
	-webkit-transform: scale(4.4);
}
.stretch45 {
	animation: stretch 11s ease 0s infinite normal;
	-webkit-animation: stretch 11s ease 0s infinite normal;
}
.shake45 {
	animation: shake 11s ease 0s infinite normal;
	-webkit-animation: shake 11s ease 0s infinite normal;
}
.move45 {
	animation: move 14s cubic-bezier(0.47, 0, 0.745, 0.715) 9s infinite normal;
	-webkit-animation: move 14s cubic-bezier(0.47, 0, 0.745, 0.715) 9s infinite normal;
}
.pos45 {
 left: 90%;
}
.scale45 {
	transform: scale(4.5);
	-webkit-transform: scale(4.5);
}
.stretch46 {
	animation: stretch 11.2s ease 0s infinite normal;
	-webkit-animation: stretch 11.2s ease 0s infinite normal;
}
.shake46 {
	animation: shake 11.2s ease 0s infinite normal;
	-webkit-animation: shake 11.2s ease 0s infinite normal;
}
.move46 {
	animation: move 14.2s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s infinite normal;
	-webkit-animation: move 14.2s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s infinite normal;
}
.pos46 {
 left: 92%;
}
.scale46 {
	transform: scale(4.6);
	-webkit-transform: scale(4.6);
}
.stretch47 {
	animation: stretch 11.4s ease 0s infinite normal;
	-webkit-animation: stretch 11.4s ease 0s infinite normal;
}
.shake47 {
	animation: shake 11.4s ease 0s infinite normal;
	-webkit-animation: shake 11.4s ease 0s infinite normal;
}
.move47 {
	animation: move 14.4s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s infinite normal;
	-webkit-animation: move 14.4s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s infinite normal;
}
.pos47 {
 left: 94%;
}
.scale47 {
	transform: scale(4.7);
	-webkit-transform: scale(4.7);
}
.stretch48 {
	animation: stretch 11.6s ease 0s infinite normal;
	-webkit-animation: stretch 11.6s ease 0s infinite normal;
}
.shake48 {
	animation: shake 11.6s ease 0s infinite normal;
	-webkit-animation: shake 11.6s ease 0s infinite normal;
}
.move48 {
	animation: move 14.6s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s infinite normal;
	-webkit-animation: move 14.6s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s infinite normal;
}
.pos48 {
	left: 96%;
}
.scale48 {
	transform: scale(4.8);
	-webkit-transform: scale(4.8);
}
.stretch49 {
	animation: stretch 11.8s ease 0s infinite normal;
	-webkit-animation: stretch 11.8s ease 0s infinite normal;
}
.shake49 {
	animation: shake 11.8s ease 0s infinite normal;
	-webkit-animation: shake 11.8s ease 0s infinite normal;
}
.move49 {
	animation: move 14.8s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s infinite normal;
	-webkit-animation: move 14.8s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s infinite normal;
}
.pos49 {
	left: 98%;
}
.scale49 {
	transform: scale(4.9);
	-webkit-transform: scale(4.9);
}
.stretch50 {
	animation: stretch 12s ease 0s infinite normal;
	-webkit-animation: stretch 12s ease 0s infinite normal;
}
.shake50 {
	animation: shake 12s ease 0s infinite normal;
	-webkit-animation: shake 12s ease 0s infinite normal;
}
.move50 {
	animation: move 15s cubic-bezier(0.47, 0, 0.745, 0.715) 10s infinite normal;
	-webkit-animation: move 15s cubic-bezier(0.47, 0, 0.745, 0.715) 10s infinite normal;
}
.pos50 {
	left: 100%;
}
.scale50 {
	transform: scale(5);
	-webkit-transform: scale(5);
}