/* ====================================
	main
==================================== */
.main__flex {
	display: flex;
	align-items: center;
	width: 100%;
	background-color: #FED02F;
}



/* --------------------
	main__fixed
-------------------- */
.main__fixed {
	width: 15%;
	padding: 0 0 0 25px;
}

.main__fixed img {
	width: 100%;
	margin: 0 auto;
}

/* --------------------
	main__slider
-------------------- */
.main__slider {
	width: calc(100% - 15%);
	margin: 0;
	padding: 0;
	line-height: 0;
	position: relative;
	overflow: hidden;
}

.main__slider::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	content: "";
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50vh 5vw 0 0;
	border-color: #FED02F transparent transparent transparent;

}

.main__slider .slick-dots {
	bottom: 20px;
}

.main__slider .slick-slide {
	background-color: #ffffff;
}

.main__slider .slick-slide figure {
	position: relative;
	overflow: hidden;
	margin: 0;
}

.main__slider .slick-slide img {
	transform: scale(1.1);
	animation: fadeOut 1s 1 forwards;
}

@keyframes fadeOut {
	0% {
		filter: blur(0);
		opacity: 1;
	}

	100% {
		filter: blur(7px);
		opacity: .4;
	}
}

.main__slider .slick-slide.slick-active img {
	animation: fadeIn 1s 1 forwards;
}

@keyframes fadeIn {
	0% {
		filter: blur(7px);
		opacity: 0.4;
	}

	100% {
		filter: blur(0);
		opacity: 1;
	}
}

.main__slider .slick-dots li button:before {
	color: #ffffff;
}

.main__slider .slick-dots li.slick-active button:before {
	color: #ffffff;
}

.main__slider.slick-dotted.slick-slider {
	margin: 0;
}

@media only screen and (max-width: 768px) {
	.main__flex {
		background-color: #E72334;
	}

	.main__fixed {
		width: 30%;
		padding: 0 0 0 0;
	}

	.main__slider {
		width: calc(100% - 30%);
	}

	.main__slider::before {
		border-width: 20vh 10vw 0 0;
		border-color: #E72334 transparent transparent transparent;

	}
}

/* ====================================
	about
==================================== */
.about__area {
	position: relative;
	padding: 0 0 0 0;
	max-width: 1280px;
	margin: 0 auto;

	background-image: url("../index/about__bg.png");
	background-repeat: no-repeat;
	background-position: center top;
}

.about__wrap {
	margin: 0 auto;
	padding: 0 0 100px 0;
}
.about__wrap .btn__join {
	margin: 0 auto 250px auto;
}

.about__bg {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
}

.about__logo {
	max-width: 360px;
	margin: 0 auto 30px auto;
}

.about__logo div {
	text-align: center;
}

.about__copy {
	max-width: 360px;
	margin: 0 auto 75px auto;
}

.about__copy h2 {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

.about__copy p {
	line-height: 2;
	font-size: 1.8rem;
	color: #666666;
	margin: 0 0 450px 0;
}

@media only screen and (max-width: 1280px) {
	.about__area {
		background-size: contain;
	}
}

@media only screen and (max-width: 768px) {
	.about__area {
		background-image: none;
		padding: 0 20px;
	}
.about__copy p {
	line-height: 2;
	font-size: 1.8rem;
	color: #666666;
	margin: 0 0 00px 0;
}
}


/* ====================================
	facility
==================================== */
.facility__area {
	background-image: url("../index/facility__sub.svg");
	background-repeat: no-repeat;
	background-position: 30px 0px;
	background-size: 18px 360px;
	padding: 0 75px 50px 75px;
}

.facility__wrap {
	max-width: 1080px;
	margin: 0 auto;
}

.facility__wrap h3 {
	font-size: 3.2rem;
	font-weight: bold;
	margin: 0 0 10px 0;
}

.facility__wrap h3 span {
	display: inline-block;
	padding: 0 10px;
	font-family: 'Roboto', sans-serif;
	font-size: 4.6rem;
	font-weight: bold;
	color: #E72334;
}

.facility__column--1 {
	padding: 0 20px 60px 0;
}

.facility__column--2 {
	padding: 0 0 0 20px;
}

.facility__column--3 {
	padding: 0 20px 0 0;
}

/* floor */
.facility__floor {
	padding: 50px 0 0 0;
}

.facility__floor li {
	position: relative;
	margin: 0 0 100px 0;
}

.facility__floor li .facility__floor--text {
	position: absolute;
	z-index: 2;
	width: 380px;
	background-color: #1797CA;
	padding: 60px 30px;
	top: -50px;
}

.facility__floor li:nth-child(odd) .facility__floor--text {
	right: 0;
}

.facility__floor li:nth-child(even) .facility__floor--text {
	left: 0;
}

.facility__floor li .facility__floor--photo {
	position: absolute;
	z-index: 1;
}

.facility__floor li .facility__floor--photo img {
	max-width: 800px;
	width: 100%;
}

.facility__floor li:nth-child(odd) .facility__floor--photo {
	left: 0;
}

.facility__floor li:nth-child(even) .facility__floor--photo {
	right: 0;
}

.facility__floor h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 3.6rem;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 20px 0;
}

.facility__floor strong {
	display: block;
	font-size: 2.0rem;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 30px 0;
}

.facility__floor p {
	color: #ffffff;
	font-size: 1.6rem;
	line-height: 2;
}

@media only screen and (max-width: 1023px) {
	.facility__floor li {
		display: flex;
		flex-wrap: wrap;
	}

	.facility__floor li > img {
		display: none;
	}

	.facility__floor li .facility__floor--photo,
	.facility__floor li .facility__floor--text {
		position: relative;
		max-width: none;
		width: 100%;
	}

	.facility__floor li .facility__floor--text {
		width: auto;
		padding: 20px;
		top: 0;
	}

	.facility__floor li .facility__floor--photo img {
		max-width: none;
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.facility__area {
		background-image: none;
		padding: 0 20px 100px 20px;
	}

	.facility__movie,
	.facility__movie tbody,
	.facility__movie tr,
	.facility__movie td {
		display: block;
		width: 100%;
		max-width: none;
	}

	.facility__column--1,
	.facility__column--2,
	.facility__column--3 {
		padding: 0 0 20px 0;
	}
}


/* ====================================
	store
==================================== */
.store__deco {
	background-color: #FED02F;
	background-image: url("../index/store__sub.svg");
	background-repeat: no-repeat;
	background-position: 30px 100px;
	background-size: 18px 360px;
	padding: 100px 75px;
}

.store__area {
	padding: 100px 0;
}

.store__area::before {
	display: block;
	width: 100%;
	height: 50px;
	content: "";
	background-image: url("../index/store__bg--top.svg");
	background-repeat: repeat-x;
	background-position: center bottom;
}

.store__area::after {
	display: block;
	width: 100%;
	height: 50px;
	content: "";
	background-image: url("../index/store__bg--bottom.svg");
	background-repeat: repeat-x;
	background-position: center top;
}

.store__wrap {
	max-width: 1080px;
	margin: 0 auto;
}

.store__list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.store__list li {
	width: calc(100%/2 - 10px);
	background-color: #ffffff;
	padding: 10px;
	position: relative;
}

.store__list li:nth-child(1n) {
	margin: 0 10px 20px 0;
}

.store__list li:nth-child(2n) {
	margin: 0 0 20px 10px;
}

.store__list li .store__flex {
	display: flex;
}

.store__list li .store__flex > div:nth-child(1) {
	width: calc(100%/2 - 50px);
}

.store__list li .store__flex > div:nth-child(2) {
	width: calc(100%/2 + 50px);
	padding: 0 0 0 10px;
}
.store__list li .store__name {
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 20px 0;
}
.store__list li .store__zip {
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0 0 10px 0;
}
.store__list li .store__adrs {
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0 0 10px 0;
}
.store__list li .store__adrs a {
	color: #1797CA;
	text-decoration: underline;
}
.store__list li .store__tell {
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0 0 10px 0;
}
.store__list li .store__time {
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0 0 10px 0;
}
.store__list li .store__url {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2;
}


@media only screen and (max-width: 1023px) {
	.store__list li {
		max-width: none;
		width: calc(100%/2 - 10px);
	}

	.store__list li:nth-child(1n) {
		margin: 0 0 30px 0;
	}

	.store__list li:nth-child(2n) {
		margin: 0 0 30px 0;
	}
}

@media only screen and (max-width: 767px) {
	.store__deco {
		background-image: none;
		padding: 40px 20px 100px 20px;
	}

	.store__list li {
		width: 100%;
		margin: 0 0 30px 0;
	}


	.store__list li:nth-child(3n),
	.store__list li:nth-child(2n) {
		margin: 0 0 30px 0;
	}
}
