/* ====================================
	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: #45b035;
	}

	.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: #45b035 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__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;
}

@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;
	}

}

/* ====================================
	news
==================================== */
.news__area {
	position: relative;
	background-color: #FED02F;
	margin: 100px 0;
	background-image: url("../index/news__sub.svg");
	background-repeat: no-repeat;
	background-position: 30px 0px;
	background-size: 18px 360px;
	padding: 0 75px;
}

.news__area::before {
	content: "";
	position: absolute;
	top: -100px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0 0 100vw;
	border-color: transparent transparent transparent #FED02F;
}


.news__area::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 100vw 100px 0;
	border-color: transparent #FED02F transparent transparent;
}

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

.news__flex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0 0 50px 0;
}

.news__flex > div {
	position: relative;
	width: calc(50% - 10px);
	height: 500px;
	background-color: #ffffff;
}

.news__flex h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 3.2rem;
	font-weight: bold;
	padding: 0 0 8px 0;
	background-color: #FED02F;
}

.news__flex hr {
	display: block;
	border: 0;
	border-top: 2px solid #FED02F;
	width: calc(100% - 40px);
	margin: 20px auto;
}

.news__scroll--twitter {
	overflow-y: scroll;
	height: calc(100% - 40px);
}

.news__scroll--topics {
	overflow-y: scroll;
	height: calc(100% - 130px);
	padding: 0 20px;
}

.news__scroll--topics ul {
	padding: 20px 0 20px 0;
}

.news__scroll--topics li {
	margin: 0 0 20px 0;
}

.news__scroll--topics a {
	display: block;
	color: #333333;
	border-bottom: 2px dotted #333333;
	padding: 0 0 10px 0;
}

.news__scroll--topics span {
	display: inline-block;
	background-color: #45b035;
	color: #ffffff;
	font-size: 1.4rem;
	padding: 5px 10px;
	margin: 0 0 10px 0;
}

.news__scroll--topics p {
	font-size: 1.6rem;
}

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

	.news__flex {
		display: block;
	}

	.news__flex > div {
		width: 100%;
		margin: 0 0 30px 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: #45b035;
}

/* movie */
.moviePlayer {
margin: 0 0 70px 0;
width:100%;
}
.moviePlayer video {
}
.facility__movie {
	width: 100%;
	padding: 0 0 50px 0;
}

.facility__movie td {
	vertical-align: middle;
	max-width:370px;
}

.facility__movie .movie {
	position: relative;
	width: 100%;
}
.facility__movie .video {
	position: relative;
	width: 100%;
}

.facility__movie .youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.facility__movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.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;
	}
}

/* ====================================
	price
==================================== */
.price__area {
	position: relative;
	background-color: #45b035;
	margin: 100px 0;
	background-image: url("../index/price__sub.svg");
	background-repeat: no-repeat;
	background-position: 30px 100px;
	background-size: 18px 360px;
	padding: 100px 75px;
}

.price__area::before {
	content: "";
	position: absolute;
	top: -100px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent #45b035 transparent;
}

.price__area::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 100vw 0 0;
	border-color: #45b035 transparent transparent transparent;
}

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

.price__wrap h2 {
	color: #ffffff;
}

.price__wrap h3 {
	color: #ffffff;
	font-size: 2.4rem;
	font-weight: bold;
	margin: 0 0 10px 0;
}

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

.price__image {
	margin: 0 auto;
}

.price__flex {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin: 50px auto;
}

.price__flex li {
	width: calc(100%/3 - 10px);
}

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

	.price__flex {
		display: block;
	}

	.price__flex li {
		width: 100%;
	}
}

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

.info__area {
	padding: 100px 0;
}

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

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

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

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

.info__list li {
	max-width: 350px;
	width: calc(100%/3 - 10px);
	background-color: #ffffff;
	margin: 0 15px 30px 0;
	padding: 0 0 75px 0;
	position: relative;
}

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

.info__list li a {
	display: block;
	color: #333333;
}

.info__list li div {
	padding: 30px 10px 10px 10px;
	background-repeat: no-repeat;
background-size:contain;
	background-position: center center;
}

.info__list li strong {
	display: block;
	color: #45b035;
	font-size: 2.0rem;
	font-weight: bold;
	margin: 0 0 20px 0;
}

.info__list li p {
	font-size: 1.6rem;
	line-height: 1.5;
}

.info__btn {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50px;
	margin: 0 0 0 auto;
}

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

	.info__list li:nth-child(3n) {
		margin: 0 15px 30px 0;
	}

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

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

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


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

/* ====================================
	access
==================================== */
.access__area {
	background-image: url("../index/access__sub.svg");
	background-repeat: no-repeat;
	background-position: 30px 100px;
	background-size: 18px 360px;
	padding: 100px 75px;
}

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

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

.access__table th {
	width: 120px;
	text-align: left;
}

.access__table th,
.access__table td {
	font-size: 1.6rem;
	padding: 0 0 20px 0;
	line-height: 2;
}

.access__table td a {
	color: #45b035;
	text-decoration: underline;
}


.access__wrap iframe {
	width: 100%;
	height: 480px;
}

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

}

@media only screen and (max-width: 1700px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 415px) {}
