
/* トップページ
=====================================================================*/

.init-animation-base{
	background-color: #ffeb3b;
	position: fixed;
	width: 100%;
	height: 100vh;
	opacity: 1;
	transition: opacity 1.5s 2.5s;
}

.loaded .init-animation-base{
	opacity: 0;
}

.init-animation-wall{
	background-color: white;
	background-image: url(../img/common/parts/stripe_yellow_200.png);
	width: 0;
	height: 100vh;
	transition: width 1.5s 1.5s, opacity 1s 3s;
}

.loaded .init-animation-wall{
	width: 100%;
	opacity: 0;
}

.init-animation-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	opacity: 0;
	transition: opacity 1s 0.5s, top 1.5s 2.7s;
}

.loaded .init-animation-logo {
	opacity: 1;
	top: -50%;
}

.init-animation-logo img {
	width: 360px;
}

.loading-animation {
	box-sizing: border-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	width: 100%;
	height: 100vh;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	transition: opacity 0.5s;
}

.loaded .loading-animation {
	opacity: 0;
}


.container{
	display: none;
	height: auto;
	position: relative;
}
@media screen and (max-width:767px){
	.container{
		height: auto;
	}
}

.loaded.container {
	display: block;
	animation-name: slide-up;
	-webkit-animation-name: slide-up;
	-webkit-animation-duration: 1s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease
}

#opening {
	position: relative;
	padding-top: 80px;
}
@media screen and (max-width:767px){
	#opening{
		padding-top: 30px;
	}
}

#opening .video-wrap {
	width: 90%;
	height: 80vh;
	overflow: hidden;
	z-index: 5;
	position: relative;
	cursor: pointer;
}
@media screen and (max-width:767px){
	#opening .video-wrap {
		height: 250px;
	}
}

#opening #vimeo iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	z-index: 5;
}

#opening .vimeo-click {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 10;
}

#opening .overlaptext-front-area {
	width: 90%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	overflow: hidden;
}

#opening .overlaptext {
	position: absolute;
	bottom: -10%;
	line-height: 12rem;
	font-size: 12rem;
	font-family: 'Playfair Display', serif;
	text-align: right;
	-ms-user-select: none; /* IE 10+ */
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
@media screen and (max-width:767px){
	#opening .overlaptext {
		line-height: 5rem;
		font-size: 5rem;
		bottom: -12%;
	}
}

#opening .overlaptext .font-chonburi {
	font-family: 'Chonburi', cursive;
}

#opening .overlaptext-front {
	z-index: 10;
	color: white;
	right: -5%;
}

#opening .overlaptext-back {
	z-index: 1;
	right: 5.5%;
}

#opening .overlaptext-back .font-chonburi {
	color: #E53029;
}


.mask-text {
	mask-image: url(../img/material/mask_bg.png);
	-moz-mask-image: url(../img/material/mask_bg.png);
	-webkit-mask-image: url(../img/material/mask_bg.png);
	-o-mask-image: url(../img/material/mask_bg.png);
	-ms-mask-image: url(../img/material/mask_bg.png);

	mask-repeat: no-repeat;
	-moz-mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	-o-mask-repeat: no-repeat;
	-ms-mask-repeat: no-repeat;

	mask-size: 0% 100%;
	-moz-mask-size: 0% 100%;
	-webkit-mask-size: 0% 100%;
	-o-mask-size: 0% 100%;
	-ms-mask-size: 0% 100%;

	transition-property: mask-size;
	-moz-transition-property: -moz-mask-size;
	-webkit-transition-property: -webkit-mask-size;
	-o-transition-property: -o-mask-size;
	-ms-transition-property: -ms-mask-size;

	/*
	transition-delay:0.5s;
	-moz-transition-delay:0.5s;
	-webkit-transition-delay:0.5s;
	-o-transition-delay:0.5s;
	-ms-transition-delay:0.5s;
	*/

	transition-duration:1.5s;
	-moz-transition-duration:1.5s;
	-webkit-transition-duration:1.5s;
	-o-transition-duration:1.5s;
	-ms-transition-duration:1.5s;

	transition-timing-function:ease-in-out;
	-moz-transition-timing-function:ease-in-out;
	-webkit-transition-timing-function:ease-in-out;
	-o-transition-timing-function:ease-in-out;
	-ms-transition-timing-function:ease-in-out;
}
.mask-text.mask-show-left {
	mask-position: left;
	-webkit-mask-position: left;
}
.mask-text.mask-show-right {
	mask-position: right;
	-webkit-mask-position: right;
}
.mask-text.mask-show-center {
	mask-position: center;
	-webkit-mask-position: center;
}
.mask-text.visible {

	mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;

	/*
	animation-name: mask-text-show;
	-webkit-animation-name: mask-text-show;
	animation-duration: 2s;
	-webkit-animation-duration: 2s;
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
	animation-timing-function: ease-out;
	-webkit-animation-timing-function: ease-out;
	*/
}
/*
@keyframes mask-text-show {
	0% {
		mask-size: 0% 100%;
		-webkit-mask-size: 0% 100%;
		//letter-spacing: 10px;
	}
	100% {
		mask-size: 100% 100%;
		-webkit-mask-size: 100% 100%;
		//letter-spacing: inherit;
	}
}
*/





.slide-right {
	animation-name: slide-right;
	-webkit-animation-name: slide-right;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease
}

.slide-down, .slide-left {
	animation-duration: 1s;
	animation-timing-function: ease
}

@keyframes slide-right {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-200px,0,0);
		transform: translate3d(-200px,0,0)
	}

	40% {
		opacity: .3
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes slide-right {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-200px,0,0);
		transform: translate3d(-200px,0,0)
	}

	40% {
		opacity: .3
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.slide-left {
	animation-name: slide-left;
	-webkit-animation-name: slide-left;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: ease
}

@keyframes slide-left {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(200px,0,0);
		transform: translate3d(200px,0,0)
	}

	40% {
		opacity: .3
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes slide-left {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(200px,0,0);
		transform: translate3d(200px,0,0)
	}

	40% {
		opacity: .3
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.slide-down {
	animation-name: slide-down;
	-webkit-animation-name: slide-down;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: ease;
	visibility: visible!important;
}

.slide-down-fade,.slide-up {
	animation-duration: 1s;
	visibility: visible!important
}

@keyframes slide-down {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,-200px,0);
		transform: translate3d(0,-200px,0)
	}

	40% {
		opacity: .3
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes slide-down {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,-200px,0);
		transform: translate3d(0,-200px,0)
	}

	40% {
		opacity: .3
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.slide-up {
	animation-name: slide-up;
	-webkit-animation-name: slide-up;
	-webkit-animation-duration: 1s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease
}

@keyframes slide-up {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,200px,0);
		transform: translate3d(0,200px,0)
	}

	1% {
		display: block;
	}

	40% {
		display: block;
		opacity: .3
	}

	100% {
		display: block;
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes slide-up {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,200px,0);
		transform: translate3d(0,200px,0)
	}

	1% {
		display: block;
	}

	40% {
		display: block;
		opacity: .3
	}

	100% {
		display: block;
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.slide-down-fade {
	animation-name: slide-down-fade;
	-webkit-animation-name: slide-down-fade;
	-webkit-animation-duration: 1s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out
}

@keyframes slide-down-fade {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,-900px,0)
	}

	80% {
		opacity: .5
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes slide-down-fade {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,-900px,0);
		transform: translate3d(0,-900px,0)
	}

	80% {
		opacity: .5
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.slide-up-fade {
	animation-name: slide-up-fade;
	-webkit-animation-name: slide-up-fade;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
	visibility: visible!important
}

@keyframes slide-up-fade {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,700px,0);
		transform: translate3d(0,700px,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes slide-up-fade {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,700px,0);
		transform: translate3d(0,700px,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}










.wrap {
	/*width: 1390px;
	min-width: 1390px;*/
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;

}

.inner-wrap {
	/*margin-right: 3.84615%;
	margin-left: 3.84615%;*/
	position:relative;
}
.img-wrap {
	position: absolute;
}
.img-wrap--last {
	position:relative;
}

.ttl-wrap {
	position: relative;
	z-index: 10;
	box-sizing: border-box;
	margin: 0 auto 40px 5%;
}

.ttl-ecmarket {
	margin: 0 auto 80px 2.4%;
}


@media screen and (max-width:768px) {
	.sec-ecmarket,
	.sec-experience,
	.sec-logistics,
	.sec-by-gallery,
	.sec-pay,
	.sec-guest,
	.sec-by-cafe,
	.sec-performance,
	.sec-award,
	.sec-backyard-party {
	background: #FFF;
	z-index: 1;
	position: relative;
	clear:both;
	}
}

@media screen and (max-width:767px) {
	.wrap {
	width: 100%;
	min-width: 100%;
	padding: 0;
	}
	.img-wrap {
	position: relative !important;
	left: auto !important;
	top: auto!important;
	right: auto!important;
	bottom: auto!important;
	margin: 0 0 10px;
	}
	.ttl-wrap {
	position: relative!important;
	top: auto!important;
	left: auto!important;
	right: auto!important;
	width: 100%!important;
	height: auto!important;
	padding: 0 3%;
	margin: 0 auto 40px;
	}
	.sec-ecmarket,
	.sec-logistics,
	.sec-by-gallery,
	.sec-pay,
	.sec-guest,
	.performance-gallery {
	height: auto!important;
	}
}


/* EC Market
----------------------------------------------- */

.sec-ecmarket {
	/*padding: 140px 0 0;*/
/*  height: 685px;*/
	margin-top: 140px;
	position: relative;
	z-index: 2;
}

.big-ttl {
	font-size: 10rem;
	letter-spacing: 2px;
}

.big-ttl-elm {
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 2.0;
}

.ec-main {
	margin: 0 auto 140px;
	position: relative;
	transition-delay: 0.2s !important;
}
@media screen and (max-width:767px){
	.big-ttl {
		font-size: 4rem;
		line-height: 1.0;
		letter-spacing: 2px;
	}
	.big-ttl-elm {
		font-size: 1.4rem;
		letter-spacing: 0.13rem;
		line-height: 1.8;
	}
	.ec-main {
		margin: 0 auto 40px auto;
	}
}

/*
.ec-main:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 585px;
	top: -210px;
	left: -100%;
	background-color: #ffeb3b;
	z-index: -1;
	transition:2s;
	transition-delay: -4s !important;
}
.ec-main.scrollin:before {
	content: "";
	display: block;
	position: absolute;
	width: 77.5%;
	height: 585px;
	left: -4%;
	background-color: #ffeb3b;
	z-index: -1;
}

*/


.bg-box-yellow{
	width:10px;
	height: 585px;
	position:absolute;
	background-color: #fff;
	z-index: -1;
	transition:0.8s;
	top: 80px;
	left: 1px;
	transition-timing-function:cubic-bezier(.52,.03,0,1.07);
}
.show.bg-box-yellow{
	width: 77.5%;
	background-color: #ffeb3b;
	opacity:1;
	transition-timing-function:cubic-bezier(.52,.03,0,1.07)	;
}
@media screen and (max-width:767px){
	.bg-box-yellow{
		height: 400px;
	}
	.show.bg-box-yellow{
		width: 90%;
	}
}

/*.ec-img01 {
	margin-left: 5%;
}*/

.ec-img01{
	width:80%;
	margin:0 auto;
}

.ec-img02 {
	margin: -15px 0 0 2vw;
	width: 35%;
}
.ec-img03 {
	z-index: 10;
	width: 40%;
	right: 0;
	top: 180px;
}
.ec-img04{
	width:80%;
	margin:0 auto;
}
@media screen and (max-width:767px){
	.ec-img01{
		margin: 0 auto;
	}
	.ec-img02 {
		width: 75%;
		margin: -15px 0 0 -2vw;
	}
	.ec-img03 {
		width: 90%;
		right: 0;
		top: 180px;
		margin: -15px 0 0 12vw;
	}
	.ec-img04{
		width:80%;
		margin: 15px 0 0 0;
	}
}


.ecbox-wrap--kabedan{
	height: 50vh;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width:767px) {
}

/* 体験型マーケット
----------------------------------------------- */

.sec-experience {
	padding: 130px 0 0;
}

.sec-experience .ttl-wrap h2 {
}

.ttl-wrap.exp {
	margin: 0 auto 130px;
}
.exp-img01{
	width:70%;
	margin:0 auto;
	transition-delay: 0.6s !important;
}
.exp-img02 {
	width: 40%;
	text-align: center;
	margin-top: -20px;
	left: 5vw;
}
.exp-img03 {
		width: 42%;
	text-align: center;
	margin-top: 100px;
	right: 2vw;
	float:right;
	transition-delay: 0.4s !important;
}



@media screen and (max-width:767px) {
	.sec-experience {
		padding: 90px 0 0;
	}
	.ttl-wrap.exp {
		margin: 0 auto 30px auto;
	}
	.exp-img01{
		width:100%;
		margin:0 auto;
		transition-delay: 2s;
	}
	.exp-img02 {
		width: 90%;
		text-align: center;
		margin-top: 10px;
		left: 5vw;
	}
	.exp-img03 {
		width: 72%;
		text-align: center;
		margin-top: -30px;
		right: 2vw;
	}
}


/* 物流体験 ブツリュウタイケン
----------------------------------------------- */

.sec-logistics {
	position: relative;
	z-index: 3;
	margin: 0 auto 240px;
	padding: 20.62% 0 0 0;
}
.small-ttl {
	font-size: 46px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.04em;
}
.small-ttl-elm {
	  font-weight: bold;
	font-size: 16px;
	line-height: 1.6;
	padding-left: 5px;
	width: fit-content;
}
.small-ttl.logistics,
.small-ttl-elm.logistics {
	color: #2A3D5E;
}
.small-ttl.logistics {
	margin: 0 0 23px;
}
.logistics-img-wrap{
	position:relative;
}
.sec-logistics .ttl-wrap {
	width: 509px;
	height: 383px;
	position: absolute;
	top: -80px;
	box-sizing: border-box;
	padding: 125px 40px 0 49px;
	background: url(../img/top/blue_box_animated.svg) no-repeat;
	left: calc(60% - 100px);
	z-index:18;
	transition-delay: 10s;
}
.logistics-img01 {
	width: 60%;
}
.logistics-img02 {
	padding-left: 15vw;
	margin-top: 3vh;
	width: 30%;
	z-index: 16;
	/* position: absolute; */
	transition-delay: 0.4s !important;
	float: left;
}
.logistics-img03 {
	top: 400px;
	z-index: 13;
	/* left: calc(100vw - 533px - 5vw); */
	width: 42%;
	float:right;
	margin-top:-40px;
	transition-delay: 0.4s;
}
@media screen and (max-width: 1300px){
	.logistics-img03 {
		margin-top: 50px;
	}
}

.img-wrap.logistics-img04 {
	right: 68px;
	bottom: 425px;
}
.img-wrap.logistics-img05 {
	bottom: 10px;
	left: -18px;
}
.img-wrap.logistics-img06 {
	bottom: 0;
	left: 528px;
}
.img-wrap.logistics-img07 {
	bottom: -130px;
	right: 0;
}
@media screen and (max-width:767px){
	.sec-logistics {
		margin: 0 auto 240px;
	}
	.small-ttl {
		font-size: 3.4rem;
		letter-spacing: 0.04em;
	}
	.small-ttl-elm {
		font-size: 14px;
	}
	.sec-logistics .ttl-wrap {
		width: 100%;
		height: 450px;
		position: absolute;
		top: 0;
		box-sizing: border-box;
		padding: 100px 0 0 20px;
	}
	.logistics-img01 {
		width: 90%;
	}
	.logistics-img02 {
		padding-left: 0;
		margin-top: -20px;
		width: 70%;
		z-index: 16;
		float: right;
	}
	.logistics-img03 {
		top: 0;
		z-index: 13;
		width: 90%;
		float:left;
		margin-top: 15px;
	}
}


/* バックヤードギャラリー
----------------------------------------------- */

.sec-by-gallery {
	padding: 100px 0 0;
	position: relative;
	z-index: 2;
	clear:both;
}
.gallery-img-wrap01{
	position:relative;
}
.gallery-img-wrap02{
	position: relative;
	clear: both;
	padding-top: 4%;
}
.gallery-img-wrap03{
	position: relative;
	padding-top: 10%;
	clear: both;
}
.gallery-img15 {
	left: 2%;
	width: 33%;
	position:relative;
}
.gallery-img15:before {
	content: "";
	background: #ffeb3b;
	width: 0;
	height: 0%;
	position: absolute;
	left: -8%;
	top: -8%;
	z-index: -1;
	transition: all 0.8s ease;
	transition-delay: 1s;
}
.gallery-img15.scrollin:before {
	content: "";
	background: #ffeb3b;
	width: 70%;
	height: 80%;
	position: absolute;
	left: -8%;
	top: -8%;
	z-index: -1;
	transition: all 0.8s ease;
	transition-delay: 0.2s;
}
.gallery-img16 {
	width: 30%;
	left: calc(100% - 30% - 28%);
	margin:0 auto;
	position:static;
}
.gallery-img16 img{
	padding-left:30%;
}
.gallery-img17 {
	width: 12%;
	margin-top: -100px;
	transition-delay: 0.4s !important;
}
.gallery-img03 {
	width: 48%;
	margin-top: 11%;
	margin-left: 8%;
}
.gallery-img04 {
	width: 66%;
	margin-top: -16%;
	margin-left: -4%;
	clear: both;
	float: left;
	transition-delay: 0.6s;
}
.gallery-img05 {
	width: 36%;
	clear: both;
	float: right;
	margin-right: -4%;
	margin-top: -18%;
}
.gallery-img06 {
	width: 39%;
	float: left;
	margin-left: -4%;
	transition-delay: 0.2s !important;
}
.gallery-img07 {
	float: left;
	width: 32%;
	padding-left: 3%;
	padding-top: 8%;
	transition-delay: 0.4s !important;
}
.gallery-img08 {
	float: right;
	width: 30%;
	margin-right: -4%;
	padding-top: 18%;
	transition-delay: 0.8s !important;
}
.gallery-img09 {
	clear: both;
	float: left;
	width: 40%;
	margin-left: 11%;
	padding-top: 3%;
	transition-delay: 0.4s;
}
.gallery-img10 {
	float: right;
	width: 44%;
	margin-right: 0;
	padding-top: 9.48%;
	transition-delay: 0.4s !important;
}
.gallery-img11 {
	float: left;
	width: 61%;
	margin-left: -4%;
	margin-top: 10%;
	transition-delay: 0.4s !important;
}
.gallery-img12 {
	float: right;
	width: 41%;
	margin-right: -4%;
	margin-top: 1%;
	transition-delay: 0.2s !important;
}
.gallery-img13 {
	float: left;
	padding-left: 16%;
	width: 32%;
	margin-top: -2.98%;
}
.gallery-img18 {
	float: left;
	width: 42%;
	margin-left: 10%;
	margin-top: 18%;
}
.gallery-img14 {
	bottom: -58px;
	left: 0;
}

@media screen and (max-width:767px) {
	.sec-by-gallery {
		padding: 90px 0 0;
	}
	.gallery-img-wrap02{
		padding-top: 4%;
	}
	.gallery-img-wrap03{
		position: relative;
		padding-top: 10%;
		clear: both;
	}
	.gallery-img15 {
		left: 2%;
		width: 70%;
		position:relative;
	}
	.gallery-img16 {
		width: 30%;
		left: calc(100% - 30% - 28%);
		margin:0 auto;
		position:static;
	}
	.gallery-img16 img{
		padding-left:30%;
	}
	.gallery-img17 {
		width: 22%;
		margin-top: -100px;
	}
	.gallery-img03 {
		width: 78%;
		margin-top: -10px;
		margin-left: 8%;
	}
	.gallery-img04 {
		width: 76%;
		margin-top: -90px;
		margin-left: -4%;
	}
	.gallery-img05 {
		width: 56%;
		margin-right: -20px;
		margin-top: -15px;
	}
	.gallery-img06 {
		width: 59%;
		float: left;
		margin-top: -30px;
		margin-left: -4%;
	}
	.gallery-img07 {
		float: left;
		width: 42%;
		padding-left: 3%;
		padding-top: 0%;
	}
	.gallery-img08 {
		float: left;
		width: 46%;
		margin-right: 0;
		padding-top: 0;
	}
	.gallery-img09 {
		float: right;
		clear: none;
		width: 50%;
		margin-left: 0;
		padding-top: 3%;
	}
	.gallery-img10 {
		float: right;
		width: 74%;
		margin-right: 0;
		padding-top: 2%;
	}
	.gallery-img11 {
		float: left;
		width: 61%;
		margin-left: -4%;
		margin-top: -50px;
	}
	.gallery-img12 {
		float: right;
		width: 41%;
		margin-right: 0;
		margin-top: -15px;
	}
	.gallery-img13 {
		float: right;
		padding-left: 0;
		width: 38%;
		margin-top: 20px;
	}
	.gallery-img18 {
		float: left;
		width: 55%;
		margin-left: 0;
		margin-top: 2%;
	}
	.gallery-img14 {
		bottom: -58px;
		left: 0;
	}
}

/* Pay キャッシュレス体験
----------------------------------------------- */

.sec-pay {
	padding: 120px 0 150px;
	position: relative;
	z-index: 1;
	clear:both;
}

.sec-pay .ttl-wrap {
	position: absolute;
	right: 10%;
	top: -20px;
	box-sizing: border-box;
	transition-delay: 3s;
}
.sec-pay .ttl-wrap img{
}
.small-ttl.pay {
	color: #F63C79;
	line-height: 1.2;
	letter-spacing: 0.05em;
}

.pay-contents {
	width: 50%;
	margin: 3% 0% 80px 0;
	z-index: 20;
	position: relative;
}

.pay-type-img {
	margin: 0 0 30px;
	text-align:center;
}

.pay-con-elm {
	font-weight: bold;
	font-size: 16px;
	line-height: 2.0;
	padding-left: 25px;
}
.pay-img08 {
	width: 39%;
	padding-left: 2%;
	transition-delay: 1s !important;
}
.pay-img00 {
	width: 40%;
	transition-delay: 0.8s !important;
	margin: 40px 0 0 10%;
	text-align: right;
}

.pay-img01 {
	width: 32%;
	transition-delay: 0.8s !important;
	clear:both;
}
.pay-img03 {
	width: 37%;
	margin-top: 8%;
	padding-left: 6%;
	transition-delay: 0.8s !important;
}
.pay-img04 {
	width: 30%;
	margin: 10% 0 0 0%;
	transition-delay: 0.2s !important;
}
.pay-img05 {
	width: 46%;
	padding: 180px 0 200px 0;
	transition-delay: 0.3s !important;
}
.pay-img06 {
	width: 45%;
	padding: 120px 0 100px 0;
	transition-delay: 0.8s !important;
}
.pay-img07 {
	margin: 168px 0 30px;
	width: 50%;
}



@media screen and (max-width:1000px) {
	.sec-pay .ttl-wrap {
		position: relative;
		right: 0;
		text-align: right;
	}
	.pay-contents {
	width: 100%;
	}
	.sec-pay {
		padding: 120px 0 60px 0;
		position: relative;
		z-index: 1;
		clear:both;
		overflow: hidden;
	}
	.pay-contents {
		width: 100%;
		margin: 3% 0 0 0;
		float: none;
	}

	.pay-type-img {
		margin: 0 0 30px;
	}
	.pay-con-elm {
	    font-size: 1.4rem;
	    letter-spacing: 0.13rem;
	    line-height: 1.8;
	}
	.pay-img08 {
		display: none;
	}
	.pay-img00 {
		width: 48%;
		margin: 5px 0 0 0;
		clear: both;
		float: left;
	}
	.pay-img01 {
		width: 48%;
		margin-right: 0;
		margin-top: 40px;
		clear: none;
	}
	.pay-img03 {
		width: 67%;
		margin: 7% 0 0 0;
		padding: 0;
	}
	.pay-img04 {
		width: 46%;
		margin: 7% 0 0 0;
	}
	.pay-img05 {
		width: 67%;
		margin: 20px 0 0 0;
		float: left !important;
		padding: 0;
	}
	.pay-img06 {
		width: 69%;
		margin: 40px 0 0 0;
		float: right !important;
		padding: 0;
	}
	.pay-img07 {
		margin: 0;
		width: 100%;
		padding: 0;
	}


}


/* パララックス背景
----------------------------------------------- */
.parallax-bg {
	position: relative;
	min-height: 720px;
	height: 720px;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	clear:both;
	overflow:hidden;
}

.parallax-bg.bg01 {
	background-image: url(../img/top/bg01.jpg);
}

.parallax-bg.bg01:before{
	content:"";
	position:absolute;
	height:100%;
	width:100%;
	background:#fff;
	left:0;
	top:0;
}
.parallax-bg.bg02:before{
	content:"";
	position:absolute;
	height:100%;
	width:100%;
	background:#fff;
	left:0;
	top:0;
}
.parallax-bg.bg03:before{
	content:"";
	position:absolute;
	height:100%;
	width:100%;
	background:#fff;
	left:0;
	top:0;
}

.parallax-bg.bg01.show:before,
.parallax-bg.bg02.show:before,
.parallax-bg.bg03.show:before{
	animation: parallax-bg_slide_to_right 3500ms cubic-bezier(0.23, 1, 0.32, 1);
	animation-fill-mode: both;
}

@keyframes parallax-bg_slide_to_right {
	0% {
		transform: translateX(-100%);
		opacity: 1;
	}
	100% {
		transform: translateX(100%);
		opacity: 1;
	}
}

.parallax-bg.bg02 {
	background-image: url(../img/top/bg02.jpg);
}

.parallax-bg.bg03 {
	background-image: url(../img/top/bg03.jpg);
}


@media screen and (max-width: 768px) {
	.parallax-bg {
		min-height: 320px;
		height: 320px;
		background-attachment: scroll;
		background-size: cover;
	}
	.parallax-bg::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transform: translate3d(0, 0, -1px);
	transform: translate3d(0, 0, -1px);
	-webkit-background-size: cover;
	background-size: cover;
	z-index: -1;
	background-position: right 0px top 0px;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	}
	.parallax-bg.bgA::before {
		display: none;
	}
	.parallax-bg.bgB::before {
		display: none;
	}
	.parallax-bg.bgC::before {
		display: none;
	}
}



/* Guest Talk
----------------------------------------------- */
.sec-guest {
	padding: 10% 0 12%;
	position: relative;
	background:#f5f3f0;
}
.big-ttl-elm.guest {
	font-size: 17px;
	padding: 0 0 0 10px;
}
.sec-guest-day1,
.sec-guest-day2,
.day1-main,
.day2-main,
.day1-gallery,
.day2-gallery {
	position: relative;
}
.sec-guest-day1 {
	padding: 75px 0 0;
}
.day1-main {
	text-align: right;
}
.day_num {
	font-family: 'Oswald', sans-serif;
	font-size: 68px;
	padding: 2px 28px 40px;
	position: absolute;
	border: 5px solid;
	text-align: center;
	letter-spacing: 0;
	line-height: 1.4;
	z-index:21;
}
.day1-main .day_num {
	top: -30px;
	left: 20%;
}
.en-ttl-italic {
	font-family: 'Oswald', sans-serif;
	font-style: italic;
	font-size: 49px;
	font-weight: normal;
	background: #FFF;
	padding: 0px 15px;
	line-height: 1.4;
}
.day1-gallery {
	position: relative;
}
.guest-name-wrap {
	margin: 35px 0 0;
	position: relative;
}
.guest-name-jp{
	font-size:1.2rem;
}
.guest-img06 .guest-name-wrap {
	padding-left: 28px;
}
.guest-name-wrap:after {
	content: "";
	display: block;
	background: #222222;
	width: 87%;
	height: 3px;
	top: -18px;
	position: absolute;
}
.guest-name {
	line-height: 1;
	font-weight: bold;
	font-size: 15px !important;
	letter-spacing: 0.12em;
}
.guest-name:after {
	content: "";
	display: block;
	clear: both;
}
.guest-name .en {
	display: block;
	font-size: 31px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.04em;
	display: inline-block;
	overflow: hidden;
	position: relative;
}
.guest-name .jp {
	display: inline-block;
	overflow: hidden;
	position: relative;
}
@media all and (-ms-high-contrast: none){
	.guest-name .jp {
	padding-top: 5px;
	}
}
.guesttalk-img-wrap01,
.guesttalk-img-wrap02,
.guesttalk-img-wrap03,
.guesttalk-img-wrap04{
	position:relative;
}
.guesttalk-img-wrap01{
	width: 29%;
	margin-top: 120px;
	float: left;
}
.guesttalk-img-wrap02{
	width: 67%;
	float: right;
	margin-top: -100px;
}
.guesttalk-img-wrap03{
	width: 39%;
	margin-top: 18%;
	float: left;
}
.guesttalk-img-wrap04{
	width: 52%;
	margin-top: 8%;
	float: right;
}
.guest-img02 {
	margin-top:-20px;
	width: 40%;
}
.guest-img03 {
	z-index: 20;
	width: 58%;
	float: left;
}
.guest-img04 {
	width: 55%;
	margin-top: -20px;
	float: right;
}
.guest-img05 {
	width: 34%;
	margin-top: 195px;
	float: left;
}
.guest-img06 {
	width: 33%;
	margin-left: -1.5%;
	float: left;
}
.guest-img07 {
	width: 32%;
	margin-top: 100px;
	float: right;
}
.sec-guest-day2 {
	padding: 240px 0 0;
	text-align: right;
	clear:both;
}
.mr110 {
	margin-right: 110px;
}
.day2-main .day_num {
	left: 10%;
	top: -82px;
	z-index: 20;
}
.day2-main .en-ttl-italic {
	font-size: 53px;
	padding: 0px 20px;
	margin: 0;
}
.day2-main .en-ttl-italic.row2 {
	padding: 0px 15px 10px 100px;
}
.day2-gallery {
	text-align: left;
	overflow:hidden;
}
.guest-img09 {
}
.guest-img10 {
	width: 42%;
	float: left;
}
.guest-img11 {
	width: 42%;
	float: left;
	margin: 113px 0 0 2%;
}
.guest-name-wrap .inner {
	position: relative;
	overflow: hidden;
	display: inline-block;
	margin: 0 0 15px;
}
.day1-main .inner,
.day2-main .inner {
	overflow: hidden;
	position: absolute;
}
.day1-main .inner {
	bottom: -60px;
	right: 0;
}
.day2-main .inner {
	bottom: 147px;
	left: 171px;
}
.day2-main .inner.row1 {
	z-index: 30;
}
.day2-main .inner.row2 {
	bottom: 66px;
	left: 257px;
}
@media screen and (max-width:1200px){
	.guest-img05 img,
	.guest-img06 img,
	.guest-img07 img,
	.guest-img10 img,
	.guest-img11 img {
		width: 100%;
	}
	.day1-main .day_num,
	.day2-main .day_num {
		left: 0;
	}


}
@media screen and (max-width:1000px){
	.section-warp#guest_talk {
		padding: 0;
	}
	.sec-guest {
		padding: 60px 6% 60px 6%;
		position: relative;
	}
	.big-ttl-elm.guest {
		font-size: 15px;
		padding: 0;
	}
	.sec-guest-day1 {
		padding: 0;
	}
	.day1-main {
		text-align: left;
		margin: 0 0 40px 0;
	}
	.day_num {
		display: inline-block;
		position: relative;
		font-size: 6vw;
		padding: 10px 20px;
		margin: 0 0 20px 0;
	}
	.day1-main .day_num {
		top: 0;
		left: 0;
	}
	.en-ttl-italic {
		font-size: 7vw;
		padding: 10px;
	}
	.guesttalk-img-wrap01{
		width: 100%;
		margin: 0;
		float: none;
	}
	.guesttalk-img-wrap02{
		width: 100%;
		margin: 0 0 30px 0;
		float: none;
		overflow: hidden;
		clear: both;
	}
	.guesttalk-img-wrap03{
		width: 100%;
		margin: 0;
		float: none;
	}
	.guesttalk-img-wrap04{
		width: 100%;
		margin: 0;
		float: none;
	}
	.guest-img02 {
		width: 100%;
		margin: 0;
		float: none;
	}
	.guest-img03 {
		width: 38%;
		margin: -10px 6% 0 0;
		float: right;
	}
	.guest-img04 {
		width: 38%;
		margin: -30px 0 0 6%;
		float: left;
	}
	.guest-img05 {
		width: 100%;
		margin: 30px 0 20px 0;
		float: none;
		overflow: hidden;
	}
	.guest-img06 {
		width: 100%;
		margin: 0 0 20px 0;
		float: none;
		overflow: hidden;
	}
	.guest-img07 {
		width: 100%;
		margin: 0 0 20px 0;
		float: none;
		overflow: hidden;
	}
	.guest-name-wrap {
		width: 42%;
		margin: 0;
		padding: 50px 0 0 0;
		position: relative;
	}
	.guest-name-jp{
		font-size:1.2rem;
	}
	.guest-name-wrap:after {
		width: 87%;
		height: 3px;
		top: 30px;
	}
	.guest-name {
		font-size: 13px;
	}
	.guest-name .en {
		font-size: 7vw;
		margin: 0 0 15px 0;
	}
	.guest-name .jp {
		line-height: 1.2;
	}
	.guesttalk-img-wrap02 .img-mask-left,
	.guesttalk-img-wrap02 .img-mask-right {
		width: 55%;
		display: block;
	}
	.guest-img05 .img-mask-left {
		float: left;
	}
	.guest-img05 .guest-name-wrap {
		float: right;
	}
	.guest-img06 .img-mask-left {
		float: right;
	}
	.guest-img06 .guest-name-wrap {
		float: left;
		padding: 50px 0 0 0;
	}
	.guest-img07 .img-mask-left {
		float: left;
	}
	.guest-img07 .guest-name-wrap {
		float: right;
	}

	.sec-guest-day2 {
		padding: 0;
		text-align: left;
	}
	.mr110 {
		margin-right: 0;
	}
	.day2-main {
		margin: 0 0 60px 0;
	}
	.day2-main .day_num {
		top: 0;
		left: 0;
	}
	.day2-main .en-ttl-italic {
		font-size: 6vw;
		padding: 0px 20px;
		margin: 0;
	}
	.day2-main .en-ttl-italic.row2 {
		padding: 0px 15px 10px 100px;
	}
	.day2-gallery {
		text-align: left;
		overflow:hidden;
	}
	.guest-img09 {
		width: 100%;
		margin: 0 0 20px 0;
	}
	.guesttalk-img-wrap04 .img-mask-left,
	.guesttalk-img-wrap04 .img-mask-right {
		width: 55%;
		display: block;
	}
	.guest-img10 .img-mask-left {
		float: left;
	}
	.guest-img10 .guest-name-wrap {
		float: right;
	}
	.guest-img11 .img-mask-left {
		float: right;
	}
	.guest-img11 .guest-name-wrap {
		float: left;
	}
	.guest-img10 {
		width: 100%;
		float: none;
		margin: 0 0 20px 0;
		overflow: hidden;
	}
	.guest-img11 {
		width: 100%;
		float: none;
		margin: 0 0 20px 0;
		overflow: hidden;
	}
	.guest-name-wrap .inner {
		margin: 0;
	}
	.day1-main .inner {
		bottom: -45px;
		right: 0;
	}
	.day2-main .inner {
		bottom: auto;
		left: 0;
	}
	.day2-main .inner.row1 {
		bottom: 0;
		left: 0;
		z-index: 30;
	}
	.day2-main .inner.row2 {
		bottom: auto;
		left: auto;
		right: 0;
	}


}



.img-mask-left img,
.img-mask-right img,
.guest-name-wrap .inner .en,
.guest-name-wrap .inner .jp,
.day1-main .inner .en-ttl-italic,
.day2-main .inner .en-ttl-italic {
	opacity: 0;
}

.guest-name-wrap .inner .jp{
	padding-top:6px;
}

/*
.day1-gallery.visible .inner .en,
.day1-gallery.visible .inner .jp,
.day2-gallery.visible .inner .en,
.day2-gallery.visible .inner .jp,
.day1-main.visible .inner .en-ttl-italic,
.day2-main.visible .inner .en-ttl-italic,
.img-mask-left.visible img,
.img-mask-right.visible img,
.day1-gallery.visible .img-mask-left img,
.day2-gallery.visible .img-mask-left img {
	opacity: 1;
	transition: 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.day1-gallery.visible .inner .en,
.day1-gallery.visible .inner .jp,
.day2-gallery.visible .inner .en,
.day2-gallery.visible .inner .jp,
.day1-main.visible .inner .en-ttl-italic,
.day2-main.visible .inner .en-ttl-italic {
	transition-delay: 1.4s;
}
*/

.day1-main.visible .inner .en-ttl-italic,
.day2-main.visible .inner .en-ttl-italic,
.img-mask-left.visible img,
.img-mask-left.visible + .guest-name-wrap .inner .en,
.img-mask-left.visible + .guest-name-wrap .inner .jp,
.img-mask-right.visible img,
.img-mask-right.visible + .guest-name-wrap .inner .en,
.img-mask-right.visible + .guest-name-wrap .inner .jp {
	opacity: 1;
	transition: 1s cubic-bezier(0.86, 0, 0.07, 1) 1.4s;
}

.img-mask-left.visible img,
 .day1-gallery.visible .img-mask-left img,
 .day2-gallery.visible .img-mask-left img {
	transition-delay: 1.6s;
}

.img-mask-right.visible img {
	transition-delay: 1.0s;
}

.img-mask-left,
.img-mask-right {
	overflow: hidden;
	display: inline-block;
	position: relative;
}

.img-mask-left:before,
.img-mask-right:before,
.guest-name-wrap .inner:before,
.day1-main .inner:before,
.day2-main .inner:before {
	content: '';
	display: block;
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1;
}

.img-mask-left:before,
.img-mask-right:before {
	right: 0;
	background-color: #fff;
}

.guest-name-wrap .inner:before,
.day1-main .inner:before,
.day2-main .inner:before {
	left: 0;
	background-color: #FE0120;
	transform: translateX(-101%);
}

.img-mask-left:before {
	transform: translateX(101%);
}

.img-mask-right:before {
	transform: translateX(-101%);
}
/*
.img-mask-left.visible:before,
.day1-gallery.visible .img-mask-left:before,
.day2-gallery.visible .img-mask-left:before {
	animation-name: maskStartLeft, maskEndLeft;
	animation-duration: 1.2s, 1.2s;
	animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
	animation-delay: 0.8s, 1.8s;
	animation-direction: alternate;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}
*/

.img-mask-left.visible:before,
.img-mask-right.visible:before {
	animation-duration: 1.2s, 1.2s;
	animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
	animation-direction: alternate;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}
.img-mask-left.visible:before {
	animation-name: maskStartLeft, maskEndLeft;
	animation-delay: 0.8s, 1.8s;
}
.img-mask-right.visible:before {
	animation-name: maskStartRight, maskEndRight;
	animation-delay: 0s, 1s;
}
/*
.day1-gallery.visible .inner:before,
.day2-gallery.visible .inner:before,
.day1-main.visible .inner:before,
.day2-main.visible .inner:before  {
	animation-name: maskStartRed, maskEndRed;
	animation-duration: 1.2s, 1.2s;
	animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
	animation-delay: 0.8s, 1.8s;
	animation-direction: alternate;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}
*/

.visible + .guest-name-wrap .inner:before {
	animation-name: maskStartRed, maskEndRed;
	animation-duration: 1.2s, 1.2s;
	animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
	animation-delay: 0.8s, 1.8s;
	animation-direction: alternate;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}

@keyframes maskStartRed {
	0% {
	transform: translateX(-101%);
	}
	100% {
	transform: translateX(0);
	}
}

@keyframes maskEndRed {
	0% {
	transform: translateX(0);
	}
	100% {
	transform: translateX(101%);
	}
}


@keyframes maskStartLeft {
	0% {
	transform: translateX(101%);
	}
	100% {
	transform: translateX(0);
	}
}

@keyframes maskEndLeft {
	0% {
	transform: translateX(0);
	}
	100% {
	transform: translateX(-101%);
	}
}

@keyframes maskStartRight {
	0% {
	transform: translateX(-101%);
	}
	100% {
	transform: translateX(0);
	}
}

@keyframes maskEndRight {
	0% {
	transform: translateX(0);
	}
	100% {
	transform: translateX(101%);
	}
}

/* Backyard Cafe
----------------------------------------------- */
.sec-by-cafe{
	padding:8% 0 8%;
}
.ttl-bycafe{
	margin: 0 auto 8% 5%;
}
@media screen and (max-width:767px){
	.ttl-bycafe{
		margin: 0 auto 8% 0;
	}
}

.cafe-img.right {
	text-align: right;
}

.cafe-img.left {
	text-align: left;
}

.bycafe-sec01,
.bycafe-sec02,
.bycafe-sec03,
.bycafe-sec04 {
	position: relative;
	padding: 0 0 180px 0;
	animation-delay: 0.6s;
}




.bycafe-sec01:after,
.bycafe-sec02:after,
.bycafe-sec03:after,
.bycafe-sec04:before,
.bycafe-sec04:after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
}

.bycafe-sec01:after {
	content:"";
	background: url(../img/top/blue_stripe.png) repeat;
	bottom: 120px;
	left: 0;
	width: 0%;
	height: 48%;
	transition: all 0.5s ease;
	transition-delay:1s;
}
.bycafe-sec01.show:after{
	width: 64%;
}

.bycafe-sec02:after {
	content:"";
	background: url(../img/top/yellow_stripe.png) repeat;
	right:0;
	bottom: 120px;
	width: 0;
	height: 48%;
	transition: all 0.8s ease;
	transition-delay:1s;
}
.bycafe-sec02.show:after{
	width: 64%;
}
.bycafe-sec03:after {
	content:"";
	background: url(../img/top/gold_stripe.png) repeat;
	bottom: 120px;
	left: 0px;
	width: 0;
	height: 48%;
	transition: all 0.8s ease;
	transition-delay:1s;
}
.bycafe-sec03.show:after{
	width: 64%;
}

.bycafe-sec04:before {
	content:"";
	background: url(../img/top/cafe04_bg_l.png) no-repeat;
	bottom: 123px;
	left:-520px;
	width: 400px;
	height: 239px;
	z-index: 1;
	transition: all 0.2s ease;
	transition-delay:.5s;
}
.bycafe-sec04.show:before {
	left: -89px;
}


.bycafe-sec04:after {
	content:"";
	background: url(../img/top/cafe04_bg_r.png) no-repeat;
	top: 57px;
	right: -450px;
	width: 400px;
	height: 291px;
	z-index: 1;
	transition: all 0.5s ease;
	transition-delay:.1s;
}
.bycafe-sec04.show:after {
	right: -7%;
}

.sec-by-cafe .company-name{
	font-size:1.3rem;
}
.sec-by-cafe .box .guest-name-en {
	font-size: 2.2rem;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.08em;
	margin: 8px 0 5px;
}


.sec-by-cafe .sec01-box-wrap,
.sec-by-cafe .sec02-box-wrap,
.sec-by-cafe .sec03-box-wrap,
.sec-by-cafe .sec04-box-wrap {
	position: absolute;
}

.sec-by-cafe .sec01-box-wrap {
	bottom: 160px;
	left: calc(100% - 970px);
}

.sec-by-cafe .sec02-box-wrap {
	bottom: 160px;
	right: calc(100% - 970px);
}

.sec-by-cafe .sec03-box-wrap {
	bottom: 200px;
	left: calc(100% - 970px);
}

.sec-by-cafe .sec04-box-wrap {
	top: 163px;
	left: 800px;
}

.sec-by-cafe .sec01-box-wrap .box,
.sec-by-cafe .sec02-box-wrap .box,
.sec-by-cafe .sec03-box-wrap .box,
.sec-by-cafe .sec04-box-wrap .box {
	padding: 20px 24px 20px;
	font-weight: bold;
	color: #FFF;
	position: relative;
	box-sizing: border-box;
}



.sec-by-cafe .box.first{
	margin-top: -10px;
	animation-delay: 0.6s;
}
.sec-by-cafe .box.second{
	margin-top: -10px;
	animation-delay: 0.7s;
}
.sec-by-cafe .box.third{
	margin-top: -10px;
	animation-delay: 0.8s;
}
.sec-by-cafe .sec01-box-wrap .box.first {
	background: #FF6F1F;
	left: -100px;
	width:290px;
}
.sec-by-cafe .sec01-box-wrap .box.second {
	background: #AB9254;
	left: -50px;
	width:290px;
}
.sec-by-cafe .sec01-box-wrap .box.third {
	background: #484849;
	width:280px;
}
.sec-by-cafe .sec02-box-wrap .box.first {
	background: #47C5F8;
	left: 100px;
	width: 250px;
}
.sec-by-cafe .sec02-box-wrap .box.second {
	background: #FF7EBF;
	left: 50px;
	width: 250px;
}
.sec-by-cafe .sec02-box-wrap .box.third {
	background: #84CF8E;
	width: 250px;
}
.sec-by-cafe .sec03-box-wrap .box.first {
	background: #234A83;
	width: 320px;
	margin-bottom: 10px;
}
.sec-by-cafe .sec03-box-wrap .box.second {
	background: #FF9DCE;
	width: 220px;
	left: 140px;
}
.sec-by-cafe .sec04-box-wrap .box {
	background: #FD543E;
	width: 220px;
	left: -30px;
	padding: 77px 25px 85px;
	margin-top: 45px;
}


@media screen and (min-width:1045px) and ( max-width:1300px) {
	.sec-by-cafe .sec01-box-wrap{
		left:12%;
		bottom: 100px;
	}
	.sec-by-cafe .sec02-box-wrap{
		right:10px;
	}
}

@media screen and ( max-width:1044px) {
	.sec-by-cafe {
		padding: 60px 0;
	}
	.bycafe-sec01,
	.bycafe-sec02,
	.bycafe-sec03,
	.bycafe-sec04 {
		position: relative;
		animation-delay: 0s;
		padding: 0;
		margin: 0 0 40px 0;
		bottom: 0;
	}
	.sec-by-cafe .sec01-box-wrap,
	.sec-by-cafe .sec02-box-wrap,
	.sec-by-cafe .sec03-box-wrap,
	.sec-by-cafe .sec04-box-wrap {
		width: 100%;
		overflow: hidden;
		display: table;
		left: 0;
		top: auto;
		bottom: 0;
	}
	.sec-by-cafe .sec01-box-wrap .box,
	.sec-by-cafe .sec02-box-wrap .box,
	.sec-by-cafe .sec03-box-wrap .box,
	.sec-by-cafe .sec04-box-wrap .box {
		padding: 15px;
	}
	.sec-by-cafe .sec01-box-wrap .box.first {
		left: 0;
		width: 33%;
		margin: 0;
		display: table-cell;
		vertical-align: top;
	}
	.sec-by-cafe .sec01-box-wrap .box.second {
		left: 0;
		display: table-cell;
		width: 33%;
		margin: 0;
		vertical-align: top;
	}
	.sec-by-cafe .sec01-box-wrap .box.third {
		left: 0;
		display: table-cell;
		width: 34%;
		margin: 0;
		vertical-align: top;
	}
	.sec-by-cafe .sec02-box-wrap .box.first {
		left: 0;
		width: 33%;
		margin: 0;
		display: table-cell;
		vertical-align: top;
	}
	.sec-by-cafe .sec02-box-wrap .box.second {
		left: 0;
		width: 33%;
		margin: 0;
		display: table-cell;
		vertical-align: top;
	}
	.sec-by-cafe .sec02-box-wrap .box.third {
		left: 0;
		width: 34%;
		margin: 0;
		display: table-cell;
		vertical-align: top;
	}
	.sec-by-cafe .sec03-box-wrap .box.first {
		left: 0;
		width: 50%;
		margin: 0;
		display: block;
		float: right;
		vertical-align: top;
	}
	.sec-by-cafe .sec03-box-wrap .box.second {
		left: 0;
		width: 50%;
		margin: 0;
		display: block;
		float: left;
		vertical-align: top;
	}
	.sec-by-cafe .sec04-box-wrap .box {
		left: 0;
		width: 50%;
		margin: 0;
		display: table-cell;
		vertical-align: top;
		margin-top: 0;
		bottom: 0;
	}
	.bycafe-sec04::after,
	.bycafe-sec04::before {
		display: none;
	}
}
@media screen and ( max-width:767px) {
	.sec-by-cafe .company-name{
		font-size: 1.2rem;
	}
	.sec-by-cafe .box .guest-name-en {
		font-size: 1.2rem;
		display: inline-block;
		margin: 0 5px 0 0;
		line-height: 1.2;
		vertical-align: middle;
	}
	.sec-by-cafe .box .guest-name-jp {
		font-size: 1.3rem;
		display: inline-block;
		line-height: 1.2;
		vertical-align: middle;
	}
	.sec-by-cafe .sec01-box-wrap,
	.sec-by-cafe .sec02-box-wrap,
	.sec-by-cafe .sec03-box-wrap,
	.sec-by-cafe .sec04-box-wrap {
		width: 100%;
		display: block;
		position: relative;
	}
	.sec-by-cafe .sec01-box-wrap .box.first {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec01-box-wrap .box.second {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec01-box-wrap .box.third {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec02-box-wrap .box.first {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec02-box-wrap .box.second {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec02-box-wrap .box.third {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec03-box-wrap .box.first {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec03-box-wrap .box.second {
		width: 100%;
		display: block;
	}
	.sec-by-cafe .sec04-box-wrap .box {
		width: 100%;
		display: block;
	}
	.bycafe-sec01::after,
	.bycafe-sec02::after,
	.bycafe-sec03::after,
	.bycafe-sec04::after {
		display: none;
	}
}


/* Performance
----------------------------------------------- */

.sec-performance {
	padding: 10% 0 16%;
	margin: 0 auto;
	position:relative;
	overflow:hidden;
}
.sec-performance:before{
	position: absolute;
	content: "";
	width: 120vw;
	height: 56vh;
	right: -7vw;
	top: 46vh;
	background: #e40012;
	z-index: -1;
	transform: skew(-20deg,0deg);
	border: 12px solid #000;
	border-top: none;
}
.sec-performance:after{
	position: absolute;
	content: "";
	width: 140vw;
	height: 63vh;
	top: 69vh;
	left: 0;
	background: #fff;
	border: 12px solid #000;
	border-bottom: none;
	z-index: -1;
	transform: skew(-20deg,0deg);
}
.ttl-performance{
	margin:0 auto 7%;
	font-size:10rem;
	transition: 0.3s all ease;
}
.performance-mv {
	position: relative;
	width:84%;
	margin:0 auto 8%;
}
.performance-sec01{
	width:40%;
	float: left;
}
.performance-sec02{
	width:55%;
	float: right;
}
.performance-sec03{
	width:50%;
	float: left;
	clear:both;
}
.performance-sec04{
	width:40%;
	float: right;
	padding-left:5%;
	margin-top: -40px;
}
.performance-gallery {
	position: relative;
	width:88%;
	margin:0 auto;
}
.performer-intro {
	padding-bottom: 8%;
	position:relative;
}
.performer-name-en {
	font-family: 'Oswald', sans-serif;
	font-size: 57px;
	font-style: italic;
	line-height: 1;
	padding: 86px 0 35px;
}
.performer-name-jp {
	line-height: 1;
	font-size: 19px;
	margin: 0 0 35px;
}
.performer-intro .con {
	font-size: 14px;
	line-height: 2.2;
}
.perform-img02 {
	width: 36%;
	float: left;
	margin-top: 160px;
}
.perform-img03 {
	width: 58%;
	float: right;
}
.perform-img04 {
	width:40%;
	float: right;
	margin-top: -100px;
}
.perform-img05 {
	width: 50%;
	float: left;
	padding-left: 5%;
}
.perform-img06 {
}
.perform-img07 {
	clear:both;
	padding: 56px 0 0 64px;
}
@media screen and (max-width: 1000px){
	.performance-gallery {
		width: 96%;
	}
	.ttl-performance{
		padding: 0;
	}
	.performance-mv {
		width:100%;
	}
	.performance-sec01,
	.performance-sec02,
	.performance-sec03,
	.performance-sec04 {
		width: 100%;
		float: none;
		padding: 0;
		margin: 0;
	}
	.performer-intro {
		width: 94%;
		margin: 0 auto;
	}
	.performer-name-en {
		padding: 20px 0;
		font-size: 11vw;
		text-align: center;
	}
	.performer-name-jp {
		text-align: center;
	}
	.sec-performance:before {
		top: 50vw;
	}
	.sec-performance:after{
		width: 140vw;
		height: 63vh;
		top: 62vw;
		left: -10vw;
	}
	.perform-img02 {
		width: 100%;
		float: none;
		margin: 0 0 20px 0;
	}
	.perform-img03 {
		width: 100%;
		float: none;
		margin: 0 0 20px 0;
	}
	.perform-img04 {
		width: 50%;
		float: none;
		margin: 0 0 20px 0;
	}
	.perform-img05 {
		width: 60%;
		float: right;
		margin: -100px 0 20px 0;
		padding: 0;
	}
	.perform-img06 {
		float: none;
		margin: 0 0 20px 0;
		text-align: center;
	}
	.perform-img07 {
		float: none;
		clear:both;
		padding: 0;
		text-align: center;
	}
}
@media screen and (max-width: 767px){
  .sec-performance {
	padding: 22% 0 16%;
  }
}


/* バックヤードアワード
----------------------------------------------- */

.sec-award{
	padding:18% 0 18%;
	z-index:0;
}

#canvas-award {
	position:absolute;
	opacity: 1;
	width:90%;
}

.ttl-award{
	margin:0 0 20px 0;
}
.award-mv {
	position: relative;
	padding: 50px 0 0;
}
.award-mv img{
	z-index:1;
}

.award-icon {
	margin-bottom: -100px;
	z-index: 10;
	position: relative;
}

.award-icon img{
	width:auto;
}

.award-main-img{
	width:80%;
	margin:0 auto;
}
@media screen and (max-width:767px){
	#backyard_award .big-ttl-elm {
		text-align: left;
	}
	.award-mv {
		padding: 0;
	}
	.award-icon {
		margin: 0 0 30px 0;
	}
	.award-main-img{
		width: 100%;
		margin:0 auto;
	}
	#canvas-award {
		width: 100%;
		height: 80%;
	}
}



/* バックヤードパーティ
----------------------------------------------- */
.sec-backyard-party .ttl-wrap{
	margin:0 auto 40px;
}
.sec-backyard-party {
	background: url(../img/top/party_bg.jpg) no-repeat;
	background-size: cover;
	padding: 70px 0 100px 0;
	overflow:hidden;
}

.party-sec01,
.party-sec02,
.party-sec03  {
	position: relative;
	margin: 0 auto 80px;
}

.party-sec01:after,
.party-sec02:after,
.party-sec03:after  {
	content: "";
	display: block;
	clear: both;
}
.party-sec02{
	width:96%;
	margin:0 auto;
	text-align:center;
}
.party-sec02-01{
	width:calc(50% - 50px);
	margin-left:105px;
}
.party-sec02-01 img{
	transform: rotate(-2deg);
}
.party-sec02-02{
	margin-left: -95px;
	margin-top: 80px;
	width: 45%;
}
.party-sec02-02 img{
}
.party-sec02-03{
	margin-top: 0px;
	width: calc(55% - 100px);
	margin-left: 100px;
}
.party-sec02-04{
	width: 40%;
	margin-left: -60px;
	margin-top: 60px;
}
.party-sec02-04 img{
	transform: rotate(3deg);
}
.party-sec02-food{
	display:none;
}

.sec-backyard-party .big-ttl {
	margin: 0 auto 40px;
}
.party-con{
	margin-bottom:60px;
	text-align: center;
}

.party-con p {
	font-weight: bold;
	font-size: 1.4rem;
    line-height: 1.6;
}

@media screen and (min-width: 1400px) {
	.party-sec02-food{
		display:block;
	}
}
@media screen and (max-width: 1000px){
	.section-warp#backyard_party {
		padding: 0;
	}
	.sec-backyard-party {
		padding: 70px 8% 40px 8%;
	}
	.party-sec01 {
		margin: 0 0 20px 0;
	}
	.party-con {
		margin: 0 0 0 0;
	}
	.party-con p {
		text-align: left;
	}
	.party-sec02{
		width: 100%;
		margin:0 auto;
		text-align:center;
	}
	.party-sec02-01{
		width: 100%;
		margin: 0 0 0 0;
		text-align: left;
	}
	.party-sec02-01 img{
		width: 90%;
		transform: rotate(-3deg);
	}
	.party-sec02-02{
		width: 100%;
		margin: -20px 0 0 0;
		text-align: right;
	}
	.party-sec02-02 img{
		width: 90%;
		transform: rotate(3deg);
	}
	.party-sec02-03{
		width: 100%;
		margin: -15px 0 0 0;
		text-align: left;
	}
	.party-sec02-03 img{
		width: 90%;
		transform: rotate(-1deg);
	}
	.party-sec02-04{
		width: 100%;
		margin: -20px 0 0 0;
		text-align: right;
	}
	.party-sec02-04 img{
		width: 90%;
		transform: rotate(1.5deg);
	}

}



.f_wrap:after {
	content: "";
	display: block;
	clear: both;
}

.f_right {
	float: right;
}

.f_left {
	float: left;
}



/* als_panels
--------------------------------------------------------- */
.als_contents {
	margin-top: 60px;
	position: relative;
}
.is_hidden {
	opacity: 0;
	visibility: hidden;
	transition: 0.4s all ease;
}
.is_visible {
	opacity: 1;
	visibility: visible;
}

.als_panels {
	position: absolute;
	bottom: -5%;
	right: -30%;
	z-index: -1;
	width: 200vw;
	height: 100vh;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.1s opacity ease;
	transform: rotate(-25deg);
	/*
	transform: skewX(20deg);
	*/
}
@media screen and (max-width:767px){
	.als_panels {
		right: -40vw;
		bottom: auto;
		top: 15%;
	}
}

.als_panels.is_transition {
	opacity: 1;
	visibility: visible;
}
.als_panels.is_transition_end {
}
.als_panel {
	width: 100%;
	height: 70px;
	background: #e40012;
	top: 30%;
	left: 0;
	position: absolute;
	transform:  scaleX(0) scaleY(1);
}
.als_panel:nth-child(2) {
	height: 100px;
	background: #FFF;
	top: calc(30% + 70px);
	left: 0;
}
.als_panel:nth-child(3) {
	background: #000;
	top: calc(30% + 170px);
	right: 0;
}

.als_panels.is_transition .als_panel {
	-webkit-animation: als_panels_animation .8s cubic-bezier(.74, .015, .465, 1) forwards;
	animation: als_panels_animation .8s cubic-bezier(.74, .015, .465, 1) forwards;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top
}

.als_panels.is_transition .als_panel:nth-child(2) {
	-webkit-animation-delay: .1s;
	animation-delay: .1s
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top
}

.als_panels.is_transition .als_panel:nth-child(3) {
	-webkit-animation-delay: .2s;
	animation-delay: .2s
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top
}

@-webkit-keyframes als_panels_animation {
	0% {
		-webkit-transform: scaleX(0) scaleY(1);
		transform: scaleX(0) scaleY(1);
	}

	to {
		-webkit-transform: scaleX(1) scaleY(1);
		transform: scaleX(1) scaleY(1);
	}
}

@keyframes als_panels_animation {
	0% {
		-webkit-transform: scaleX(0) scaleY(1);
		transform: scaleX(0) scaleY(1);
	}

	to {
		-webkit-transform: scaleX(1) scaleY(1);
		transform: scaleX(1) scaleY(1);
	}
}

@-webkit-keyframes als_panels_animation_end {
	0% {
		-webkit-transform: scaleX(1) scaleY(1);
		transform: scaleX(1) scaleY(1);
	}

	to {
		-webkit-transform: scaleX(0) scaleY(1);
		transform: scaleX(0) scaleY(1);
	}
}

@keyframes als_panels_animation_end {
	0% {
		-webkit-transform: scaleX(1) scaleY(1);
		transform: scaleX(1) scaleY(1);
	}

	to {
		-webkit-transform: scaleX(0) scaleY(1);
		transform: scaleX(0) scaleY(1);
	}
}

.gray,
.line_gray {
	filter: grayscale(100);
	transition: filter 0.8s ease;
}
.colored {
	filter: grayscale(0);
}

.fader,
.line_fader {
	opacity: 0;
	transition: all 0.6s ease;
}
.fade_in {
	opacity: 1;
}
.relative {
	position: relative;
}

