@charset "UTF-8";

/*-------------------
body
-------------------*/
body{
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	color: #fff;
	line-height: 1;
	background-color: #000;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-style: normal;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
body.bg__white{
	color: #000;
	background-color: #fff;
}
body.fixed{
	overflow: hidden;
}
#main{
	flex: 1;
}

.display__pc{
	display: block;
}
.display__sp{
	display: none;
}
@media (max-width: 900px) {
	.display__pc{
		display: none;
	}
	.display__sp{
		display: block;
	}
}

/*-------------------
opening
-------------------*/
.opening__white{
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100dvh;
	background: #000;
}
.opening__black{
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100dvh;
	background: #000;
}
.opening__white object,
.opening__black object{
	max-width: 300px;
	max-height: 300px;
}

/*-------------------
header
-------------------*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 0 calc((100% - 1200px)/2);
}
.header__logo{
	display:block;
	margin:30px 0 0 30px;
}
.header__logo img{
	width: 180px;
	height: auto;
	filter: invert(1);
}
.bg__white .header__logo img{
	filter: invert(0);
}
.header__logo a{
	transition: all .3s;
}
.header__logo a:hover{
	opacity: 0.6;
}
.header__button{
	position: absolute;
	z-index: 200;
	top: 20px;
	right: calc((100% - 1200px)/2 + 20px);
	display: block;
	width: 42px;
	height: 42px;
	cursor: pointer;
	transition: all .4s;
}
@media (max-width: 1200px) {
	.header__button{
		right: 20px;
	}
}
.header__button span {
	position: absolute;
	top: 2px;
	display: inline-block;
	width: 1px;
	height: 35px;
	background: #fff;
	transition: all .4s;
}
.bg__white .header__button span {
	background: #000;
	transition: all .4s;
}
.header__button span:nth-of-type(1) {
	left: 5px;
}
.header__button span:nth-of-type(2) {
	left: 15px;
}
.header__button span:nth-of-type(3) {
	left: 25px;
}
.header__button span:nth-of-type(4) {
	left: 35px;
}
.header__button.is-active{
	background: none;
	box-shadow: none;
}
.header__button.is-active span:nth-of-type(1) {
	transform: rotate(-45deg);
	top: 0;
	left: 20px;
	height: 40px;
	background: #000;
}
.header__button.is-active span:nth-of-type(2) {
	opacity: 0;
}
.header__button.is-active span:nth-of-type(3) {
	opacity: 0;
}
.header__button.is-active span:nth-of-type(4) {
	transform: rotate(45deg);
	top: 0;
	left: 20px;
	height: 40px;
	background: #000;
}
.header__nav{
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	flex-direction: column;
	width: 100%;
	height: 100dvh;
	color: #000;
	background: #fff;
	clip-path: circle(0 at 100% 0%);
	transition: 1s;
}
.header__nav.is-active{
	clip-path: circle(300dvh at 100% 0%);
}
.header__navLogo {
	width: 100%;
	padding: 12vh 0 5vh 0;
	text-align: center;
}
.header__navLogo img{
	width: auto;
	height: 16vh;
}
.header__navMain {
	display: flex;
	flex: 1;
	flex-direction: row-reverse;
	justify-content: center;
	gap:60px;
	list-style-type: none;
}
.header__navMain li{
	font-size: 4.5vh;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	writing-mode: vertical-rl;
}
.header__navMain li a{
	color: inherit;
	text-decoration: none;
	transition: .3s;
}
.header__navMain li a:hover{
	opacity: 0.5;
}
.header_sns {
	display: flex;
	list-style-type: none;
	justify-content: center;
	gap:30px;
	padding: 30px;
}
.header_sns li{
	width: 20px;
}
.header_sns img{
	width: 100%;
}
@media (max-width: 900px) {
	.header::after{
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		display: block;
		content: "";
		width: 100%;
		height: 100px;
		background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
		transition: .5s;
		opacity: 0;
	}
	.bg__white .header::after{
		background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
		transition: .5s;
		opacity: 0;
	}
	.header.is-active::after{
		opacity: 1;
	}
	.header__logo{
		display:block;
		margin:30px 0 0 20px;
	}
	.header__logo img{
		width: 160px;
	}
	.header__navLogo {
		padding: 15vh 0 5vh 0;
	}
	.header__navLogo img{
		height: 10vh;
	}
	.header__navMain {
		gap:8vw;
	}
	.header__navMain li{
		font-size: 3.5vh;
	}
	.header__navMain li a:hover{
		opacity: 1;
	}
}


/*-------------------
#top mainvisual
-------------------*/
#top .mainvisual{
	position: relative;
	width: 100%;
	height: 100svh;
	max-height: 70vw;
}
#top .mainvisual__title{
	position: absolute;
	z-index: 10;
	top: 80px;
	right: calc((100% - 2000px)/2 + 450px);
	height: 400px;
	font-size: 48px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	opacity: 0.4;
	writing-mode: vertical-rl;
}
#top .mainvisual__photo{
	position: fixed;
	z-index: 1;
	top: -100px;
	left: calc((100% - 2000px)/2);
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
}
#top .mainvisual__photo img{
	width: 100%;
}
#top .mainvisual__news{
	position: absolute;
	z-index: 1;
	display: flex;
	flex-direction: column;
	top: 0;
	right: 30px;
	height: 100svh;
	max-height: 70vw;
	box-sizing: border-box;
	padding: 0 0 30px 0;
}
#top .mainvisual__news h2{
	flex-grow: 1;
	display: flex;
	align-items: flex-end;
	width: 100%;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
}
#top .mainvisual__news ul{
	list-style-type: none;
}
#top .mainvisual__news li{
	padding: 0 20px 0 0;
	background: url(../../assets/images/icon_arrow.svg) no-repeat right center;
	background-size: 13px auto;
	font-size: 16px;
	line-height: 1.5;
}
#top .mainvisual__news li a{
	color: inherit;
	text-decoration: none;
}
#top .mainvisual__news li a:hover{
	text-decoration: underline;
}
#top .scrolldown{
	position: fixed;
	z-index: 10;
	bottom:30px;
	left:50%;
	opacity: 0.5;
}
#top .scrolldown:before {
	content: "";
	position: absolute;
	bottom:0;
	left:-2px;
	width:5px;
	height:5px;
	border-radius: 9999px;
	background:#eee;
	animation:
	circlemove 1.6s ease-in-out infinite,
	cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove{
	0%{bottom:45px;}
	100%{bottom:-5px;}
}
@keyframes cirlemovehide{
	0%{opacity:0}
	50%{opacity:1;}
	80%{opacity:0.9;}
	100%{opacity:0;}
}
#top .scrolldown:after{
	content:"";
	position: absolute;
	bottom:0;
	left:0;
	width:1px;
	height: 50px;
	background:#eee;
}

@media (max-width: 2000px) {
	#top .mainvisual__title{
		right: 22vw;
	}
	#top .mainvisual__photo{
		top: -5vw;
		left: 0;
	}
}
@media (max-width: 900px) {
	#top .mainvisual{
		height: 100svh;
		max-height: 100svh;
	}
	#top .mainvisual__title{
		font-size: 9vw;
		top: 100px;
		right: 6vw;
		height: 75vw;
	}
	#top .mainvisual__photo{
		top: 0;
		left: 0;
		width: 100%;
		height: 100svh;
	}
	#top .mainvisual__photo img{
		width: 100%;
		height: 100%;
		object-fit:cover;
		margin: 0% 0 0 0;
	}
	#top .mainvisual__news{
		right: 5%;
		width: 90%;
		height: calc(100svh - 60px);
		max-height: 100svh;
		align-items: center;
	}
	#top .mainvisual__news h2{
		font-size: 14px;
		justify-content: center;
	}
	#top .mainvisual__news li{
		padding: 0 15px 0 0;
		background-size: 11px auto;
		font-size: 15px;
		text-align: center;
	}
	#top .mainvisual__news li a:hover{
		text-decoration: none;
	}
	#top .scrolldown{
		position: absolute;
	}
}


/*-------------------
#top wrapperBg
-------------------*/
#top .wrapperBg{
	position: relative;
	z-index: 10;
	margin: 150px 0 0 0;
	position: relative;
	background: rgba(0, 0, 0, 0.6);
}
#top .wrapperBg::before{
	position: absolute;
	display: block;
	content: "";
	top: -150px;
	left: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
#top .wrapperBg::after{
	display: block;
	content: "";
	height: 1px;
	clear: both;
}
@media (max-width: 900px) {
	#top .wrapperBg{
		margin: 100px 0 0 0;
	}
	#top .wrapperBg::before{
		top: -100px;
		height: 100px;
	}
}
/*-------------------
#top works
-------------------*/
#top .works__title{
	font-size: 50px;
	line-height: 1.2;
	text-align: center;
}
#top .works__title strong{
	font-size: 70px;
}
#top .works__list{
	position: relative;
	width: 90%;
	height: 17vw;
	max-height: 170px;
	max-width: 900px;
	margin: 50px auto;
	overflow: hidden;
}
#top .works__list::before{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	content: "";
	display: block;
	width: 200px;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
#top .works__list::after{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	content: "";
	display: block;
	width: 200px;
	height: 100%;
	background: linear-gradient(-90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
#top .works__list ul{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	list-style: none;
}
#top .works__list ul:first-child{
	animation: loop_A 20s linear infinite;
}
#top .works__list ul:last-child{
	animation: loop_B 20s linear infinite;
}
@keyframes loop_A {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop_B {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}
#top .works__list li{
	flex-grow: 1;
	margin: 0 1%;
}
#top .works__list img{
	width: 100%;
}
#top .works__catch{
	width: 85%;
	max-width: 700px;
	margin: 30px auto;
	font-size: 34px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0;
	text-align: center;
}
#top .works__text{
	width: 85%;
	max-width: 700px;
	margin: 30px auto;
	font-size: 21px;
	line-height: 1.8;
	text-align: center;
}
@media (max-width: 900px) {
	#top .works__title{
		font-size: 10vw;
	}
	#top .works__title strong{
		font-size: 15vw;
	}
	#top .works__list{
		width: 100%;
		height: 28vw;
		margin: 10% auto;
	}
	#top .works__list::before{
		width: 100px;
	}
	#top .works__list::after{
		width: 100px;
	}
	#top .works__list ul{
		width: 150%;
	}
	#top .works__catch{
		font-size: 5.5vw;
	}
	#top .works__text{
		font-size: 16px;
		text-align: left;
	}
}

/*-------------------
#top offer
-------------------*/
#top .offer{
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	max-width: 700px;
	background: #FFF;
	box-sizing: border-box;
	padding: 30px 0 30px 0;
	color: #000;
	margin: 50px auto;
}
#top .offer__photo{
	width: 55%;
	overflow: hidden;
}
#top .offer__photo img{
	width: 120%;
	margin: 0 0 0 -10%;
}
#top .offer__inner{
	width: 45%;
   }
#top .offer__title{
	margin: 35px 0 15px 0;
	font-size: 44px;
}
#top .offer__text{
	font-size: 22px;
}
#top .offer__caption{
	margin: 25px 0 0 0;
	font-size: 15px;
	line-height: 1.6;
}
#top .offer__bt{
	width: 100%;
}
#top .offer__bt a,
#top .offer__bt span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 450px;
	box-sizing: border-box;
	margin: 20px auto;
	padding: 20px;
	border: 1px solid #000;
	color: #000;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	transition: .3s;
	cursor: pointer;
}
#top .offer__bt a:hover,
#top .offer__bt span:hover{
	color: #fff;
	background: #000;
}
@media (max-width: 900px) {
	#top .offer{
		width: 90%;
		display: block;
		padding: 30px;
		margin: 50px auto;
	}
	#top .offer__photo{
		width: 100%;
	}
	#top .offer__photo img{
		width: 100%;
		margin: 0%;
	}
	#top .offer__inner{
		width: 100%;
		padding: 0;
	}
	#top .offer__title{
		margin: 20px 0 10px 0;
		font-size: 36px;
		text-align: center;
	}
	#top .offer__text{
		font-size: 20px;
		text-align: center;
	}
	#top .offer__caption{
		margin: 20px 0 0 0;
		font-size: 14px;
		text-align: center;
	}
	#top .offer__bt{
		width: 100%;
	}
	#top .offer__bt a,
	#top .offer__bt span{
		width: 100%;
		font-size: 18px;
	}
	#top .offer__bt a:hover,
	#top .offer__bt span:hover{
		color: #000;
		background: #fff;
	}
}

/*-------------------
#about mainContent
-------------------*/
#about .wrapperBg{
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100lvh;
}
#about .wrapperBg img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
#about .main{
	position: relative;
	width: 90%;
	max-width: 900px;
	margin: auto;
}
#about .main__title{
	position: absolute;
	z-index: 10;
	top: 80px;
	right: calc((100% - 900px)/2 + 30px);
	width: 90%;
	max-width: 900px;
	height: 400px;
	font-size: 48px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	opacity: 0.4;
	writing-mode: vertical-rl;
}
#about .main__text{
	width: 90%;
	max-width: 670px;
	margin: 150px auto 50px auto;
	font-size: 18px;
	line-height: 2;
}
#about .main__auther{
	width: 90%;
	max-width: 670px;
	margin: 50px auto 50px auto;
	font-size: 18px;
	line-height: 2;
	text-align: right;
}
#about .main__profile{
	width: 90%;
	max-width: 670px;
	margin: 100px auto 50px auto;
	font-size: 16px;
	line-height: 1.6;
}
#about .main__profile dt{
	margin: 0 0 10px 0;
	text-decoration: underline;
}
#about .main__profile dd{
	margin: 0 0 40px 0;
}
#about .main__profile dd strong{
	font-size: 20px;
}
#about .main__profile dd .text__s{
	font-size: 14px;
}
#about .main__bt{
	position: relative;
	z-index: 50;
	width: 100%;
}
#about .main__bt a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 400px;
	box-sizing: border-box;
	margin: 50px auto 100px auto;
	padding: 20px;
	border: 1px solid #000;
	color: inherit;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	transition: .3s;
}
#about .main__bt a:hover{
	color: #fff;
	background: #000;
}
@media (max-width: 900px) {
	#about .main__title{
		position:static;
		top: auto;
		right: auto;
		width: 100%;
		height: auto;
		min-height: 52vw;
		display: flex;
		align-items: center;
		font-size: 9vw;
		margin: 100px 0 0 0;
	}
	#about .main__text{
		margin: 50px auto 30px auto;
		font-size: 16px;
	}
	#about .main__auther{
		margin: 30px auto;
		font-size: 16px;
	}
	#about .main__profile{
		margin: 50px auto;
		font-size: 14px;
	}
	#about .main__profile dd{
		margin: 0 0 30px 0;
	}
	#about .main__profile dd strong{
		font-size: 18px;
	}
	#about .main__profile dd .text__s{
		font-size: 12px;
	}
	#about .main__bt a{
		width: 80%;
		margin: 20px auto 100px auto;
		font-size: 18px;
	}
	#about .main__bt a:hover{
		color: #000;
		background: none;
	}
}

/*-------------------
#news mainContent
-------------------*/
#news .main{
	flex: 1;
	position: relative;
	width: 80%;
	max-width: 900px;
	min-height: 100%;
	box-sizing: border-box;
	padding: 50px 0;
	margin: auto;
}
#news .main__title{
	position: absolute;
	z-index: 10;
	top: 80px;
	right: 30px;
	height: 400px;
	font-size: 48px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	opacity: 0.4;
	writing-mode: vertical-rl;
}
#news .main__feed{
	max-width: 550px;
	margin: 30px auto 50px auto;
	list-style-type: none;
}
#news .main__feed li{
	padding: 18px 0;
	border-bottom: 1px solid #ddd;
}
#news .main__day{
	margin: 0 0 10px 0;
	display: block;
	font-size: 16px;
	line-height: 1;
}
#news .main__text{
	color: inherit;
	font-size: 18px;
	line-height: 1.6;
	text-decoration: none;
}
#news .main__text:hover{
	text-decoration: underline;
}
#news .main__bt{
	position: relative;
	z-index: 50;
	width: 100%;
}
#news .main__bt a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 400px;
	box-sizing: border-box;
	margin: 50px auto 50px auto;
	padding: 20px;
	border: 1px solid #000;
	color: inherit;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	transition: .3s;
}
#news .main__bt a:hover{
	color: #fff;
	background: #000;
}
@media (max-width: 900px) {
	#news .main__title{
		position:static;
		top: auto;
		right: auto;
		width: 100%;
		height: auto;
		display: flex;
		align-items: center;
		font-size: 9vw;
		margin: 50px 0 0 0;
	}
	#news .main__text{
		margin: 50px auto 30px auto;
		font-size: 16px;
	}
	#news .main__auther{
		margin: 30px auto;
		font-size: 16px;
	}
	#news .main__profile{
		margin: 50px auto;
		font-size: 14px;
	}
	#news .main__profile dd{
		margin: 0 0 30px 0;
	}
	#news .main__profile dd strong{
		font-size: 18px;
	}
	#news .main__profile dd .text__s{
		font-size: 12px;
	}
	#news .main__bt a{
		width: 80%;
		margin: 20px auto 50px auto;
		font-size: 18px;
	}
	#news .main__bt a:hover{
		color: #000;
		background: none;
	}
}

/*-------------------
#seller mainContent
-------------------*/
#seller .wrapperBg{
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100lvh;
}
#seller .wrapperBg img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
#seller .main{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 50px 0;
	width: 90%;
	max-width: 900px;
	min-height: 100%;
	margin: auto;
}
#seller .main__title{
	position: absolute;
	z-index: 10;
	top: 80px;
	right: 30px;
	height: 400px;
	font-size: 48px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	opacity: 0.4;
	writing-mode: vertical-rl;
}
#seller .main__text{
	font-size: 18px;
	text-align: center;
	line-height: 1.6;
}
#seller .main__bt{
	position: relative;
	z-index: 50;
	width: 100%;
}
#seller .main__bt a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 400px;
	box-sizing: border-box;
	margin: 50px auto 0 auto;
	padding: 20px;
	border: 1px solid #fff;
	color: inherit;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	transition: .3s;
}
#seller .main__bt a:hover{
	color: #000;
	background: #fff;
}
@media (max-width: 900px) {
	#seller .main__title{
		position:static;
		top: auto;
		right: auto;
		height: auto;
		display: flex;
		align-items: center;
		font-size: 9vw;
		margin: 50px 0;
	}
	#seller .main__text{
		font-size: 16px;
		text-align: center;
		line-height: 1.6;
	}
	#seller .main__bt a{
		width: 80%;
		margin: 20px auto 0 auto;
		font-size: 18px;
	}
	#seller .main__bt a:hover{
		color: #fff;
		background: none;
	}
}

/*-------------------
#error mainContent
-------------------*/
#error .main{
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 80%;
	max-width: 900px;
	min-height: 100%;
	box-sizing: border-box;
	padding: 50px 0;
	margin: auto;
}
#error .main__title{
	margin: 0 0 30px 0;
	font-size: 30px;line-height: 1.3;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	text-align: center;
}
#error .main__text{
	color: inherit;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
}
#error .main__bt{
	position: relative;
	z-index: 50;
	width: 100%;
}
#error .main__bt a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 400px;
	box-sizing: border-box;
	margin: 50px auto 50px auto;
	padding: 20px;
	border: 1px solid #000;
	color: inherit;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	transition: .3s;
}
#error .main__bt a:hover{
	color: #fff;
	background: #000;
}
@media (max-width: 900px) {
	#error .main__text{
		text-align: left;
	}
	#error .main__bt a{
		width: 80%;
		margin: 20px auto 50px auto;
		font-size: 18px;
	}
	#error .main__bt a:hover{
		color: #000;
		background: none;
	}
}


/*-------------------
footer
-------------------*/
.footer{
	position: relative;
	z-index: 10;
	height: 80px;
}
#top .footer{
	background: rgba(0, 0, 0, 0.6);
}
.footer_sns {
	display: flex;
	list-style-type: none;
	justify-content: center;
	gap:30px;
}
.footer_sns li{
	width: 20px;
}
.footer_sns img{
	width: 100%;
	filter: invert(1);
}
.bg__white .footer_sns img{
	width: 100%;
	filter: invert(0);
}
.footer_copyright{
	padding: 30px 0 0 0;
	font-size: 11px;
	text-align: center;
}

/*-------------------
effect
-------------------*/
.js-slideUpIn {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1.2s,transform 1.2s;
}
.js-slideUpIn.is-active {
	opacity: 1;
	transform: translateY(0);
}
.js-slideLeftIn {
	opacity: 0;
	transform: translateX(30%);
	transition: opacity 1s,transform 1s;
	transition-delay: 0.5s;
}
.js-slideLeftIn.is-active {
	opacity: 1;
	transform: translateY(0);
}



