@charset "utf-8";




/* ----------------
	top page
 ---------------- */


/* ---- main visual ---- */

.main-visual {
	height: calc(100vh - 60px);
}

.main-visual .swiper-wrapper {
	height: 100%;
}

.main-visual .swiper-slide {
	height: 100%;
	overflow: hidden;
}

.main-visual .swiper-slide span {
	display: block;
	height: 100%;
	background-size: cover;
	background-position: center;
	transform: scale(1.2);
}

.main-visual .swiper-slide span img {
	display: none;
}

.main-visual .swiper-slide.zoom > span {
  animation: zoomOut 12s linear 0s both;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.main-visual .swiper-pagination {
	bottom: 20px;
}

.main-visual .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
	margin: 0 6px !important;
  background-color: #fff;
  opacity: .4;
}

.main-visual .swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 767px) {

	.main-visual {
		height: 58vw;
	}

	.main-visual .swiper-pagination {
		bottom: 2vw;
	}

	.main-visual .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

}


/* ---- introduction ---- */

#introduction {
	padding-top: 100px;
}

#introduction h1 {
	font-size: 3rem;
	font-weight: normal;
	line-height: 1.4;
	text-align: center;
}

#introduction p {
	margin-top: 40px;
	font-size: 1.7rem;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 767px) {

	#introduction {
		padding-top: 15vw;
	}

	#introduction h1 {
		font-size: 2.6rem;
	}

	#introduction p {
		margin-top: 5vw;
		font-size: 1.4rem;
		line-height: 1.8;
		text-align: left;
	}

}


/* ---- safety ---- */

#safety {
	padding-bottom: 150px;
}

#safety .inner {
	max-width: 640px;
}

#safety .youtube {
  position: relative;
  width: 100%;
	height: 0;
	margin: 30px auto 0;
  padding-top: 56.25%;
}

#safety .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {

	#safety {
		padding-bottom: 20vw;
	}

	#safety .youtube {
		margin: 4vw auto 0;
	}

}


/* ---- plans ---- */

#plan {
	background-color: #efefef;
}

#plan ul {
	display: flex;
	/*justify-content: space-between;*/
	width: 80%;
	margin: 40px auto 0;
}

#plan li {
	width: 47%;
}
#plan ul.odd li {
	width: 32.33%;
}

#plan li + li {
	margin-left: 1%;
}
#plan .img {
	overflow: hidden;
}

#plan img {
	display: block;
	transform: scale(1);
	transition: transform .3s ease-out;
}

#plan p.serif {
	margin-top: 20px;
	font-size: 2rem;
	line-height: 1.3;
}
#plan ul.odd p.serif {
	font-size: 1.8rem;
}

#plan p.serif + p {
	margin-top: 15px;
	font-size: 1.5rem;
	line-height: 1.5;
}

#plan a:link,
#plan a:visited {
	text-decoration: none;
}

#plan a:hover img,
#plan a:active img {
	transform: scale(1.05);
}

@media screen and (max-width: 767px) {

	#plan ul {
		display: block;
		width: auto;
		margin-top: 8vw;
	}
	#plan li + li {
		margin-left: 0;
	}
	#plan li,#plan ul.odd li {
		width: auto;
		margin-top: 10vw;
	}

	#plan li:first-child {
		margin-top: 0;
	}

	#plan img {
		transition: none;
	}

	#plan p.serif {
		margin-top: 5vw;
		font-size: 1.6rem;
	}

	#plan p.serif + p {
		margin-top: 3vw;
		font-size: 1.4rem;
	}

	#plan a:hover img,
	#plan a:active img {
		transform: scale(1);
	}

}


/* ---- banquet ---- */

#banquet {
	padding-top: 100px;
}

#banquet header {
	position: relative;
}

#banquet header p {
	position: absolute;
	right: 0;
	bottom: 27px;
	font-size: 1.5rem;
}

#banquet header p::before {
	content: "＞";
	margin-right: 3px;
	font-size: 1.5rem;
}

#banquet h2 {
	padding-bottom: 20px;
	border-bottom: 1px solid #000;
}

#banquet ul {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 10px auto 0;
}

#banquet li {
	width: 47%;
	margin: 50px 6% 0 0;
}

#banquet li:nth-child(2n) {
	margin-right: 0;
}

#banquet .img {
	overflow: hidden;
}

#banquet img {
	display: block;
	transform: scale(1);
	transition: transform .3s ease-out;
}

#banquet li a {
	display: block;
	height: 100%;
	border: 1px solid #ccc;
}

#banquet li a:link,
#banquet li a:visited {
	text-decoration: none;
}

#banquet li a:hover img,
#banquet li a:active img {
	transform: scale(1.05);
}

#banquet h3 {
	margin: 30px 30px 20px;
	font-size: 1.8rem;
	font-weight: bold;
	list-style: 1.3;
}

#banquet li p {
	margin: 0 30px;
	font-size: 1.5rem;
	line-height: 1.6;
}

#banquet dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 30px 30px;
	font-size: 1.5rem;
	line-height: 1.6;
}

#banquet dt {
	position: relative;
	width: 5.5em;
	text-align-last: justify;
}

#banquet dt::after {
	content: "：";
	position: absolute;
	left: 100%;
	top: 0;
}

#banquet dd {
	width: calc(100% - 6.5em);
}

@media screen and (max-width: 899px) {

	#banquet ul {
		width: auto;
	}

}

@media screen and (max-width: 767px) {

	#banquet {
		padding-top: 20vw;
	}

	#banquet header p {
		position: static;
		margin-top: 4vw;
		font-size: 1.4rem;
		text-align: center;
	}

	#banquet header p::before {
		font-size: 1.4rem;
	}

	#banquet h2 {
		padding-bottom: 3vw;
	}

	#banquet ul {
		display: block;
		width: auto;
		margin: 0;
	}

	#banquet li {
		width: auto;
		margin: 7vw 0 0;
	}

	#banquet img {
		transition: none;
	}

	#banquet li a:hover img,
	#banquet li a:active img {
		transform: scale(1);
	}

	#banquet h3 {
		margin: 7vw 5vw 4vw;
		font-size: 1.6rem;
	}

	#banquet li p {
		margin: 0 5vw;
		font-size: 1.4rem;
	}

	#banquet dl {
		display: block;
		margin: 3vw 5vw 5vw;
		font-size: 1.4rem;
	}

	#banquet dt {
		width: auto;
		text-align-last: left;
	}

	#banquet dt::before {
		content: "●";
		color: #999;
	}

	#banquet dt::after {
		position: static;
	}

	#banquet dd {
		width: auto;
		padding-left: 1em;
	}

}


/* ---- facility ---- */

#facility {
	padding-top: 70px;
}

#facility h2 {
	padding-bottom: 20px;
	border-bottom: 1px solid #000;
}

#facility ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
	padding-bottom: 50px;
	border-bottom: 1px solid #000;
}

#facility li {
	width: 22%;
	margin: 50px 4% 0 0;
}

#facility li:nth-child(4n) {
	margin-right: 0;
}

#facility .img {
	overflow: hidden;
}

#facility img {
	display: block;
	transform: scale(1);
	transition: transform .3s ease-out;
}

#facility h3 {
	margin-top: 20px;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: underline;
}

#facility p {
	margin-top: 12px;
	font-size: 1.5rem;
	line-height: 1.5;
}

#facility a:link,
#facility a:visited {
	text-decoration: none;
}

#facility a:hover img,
#facility a:active img {
	transform: scale(1.05);
}

@media screen and (max-width: 899px) {

	#facility li {
		width: 47%;
		margin: 50px 6% 0 0;
	}

	#facility li:nth-child(2n) {
		margin-right: 0;
	}

}

@media screen and (max-width: 767px) {

	#facility {
		padding-top: 10vw;
	}

	#facility h2 {
		padding-bottom: 3vw;
	}

	#facility ul {
		margin-top: 0;
		padding-bottom: 10vw;
	}

	#facility li {
		width: 47%;
		margin: 10vw 6% 0 0;
	}

	#facility li:nth-child(2n) {
		margin-right: 0;
	}

	#facility img {
		transition: none;
	}

	#facility h3 {
		margin-top: 4vw;
		font-size: 1.6rem;
	}

	#facility p {
		margin-top: 2vw;
		font-size: 1.3rem;
	}

	#facility a:hover img,
	#facility a:active img {
		transform: scale(1);
	}

}


/* ---- banner ---- */

.banner {
	margin: 80px 5% 0;
	text-align: center;
}

.banner img {
	width: auto;
	height: 184px;
}

.banner + .banner img {
	height: 160px;
}

.banner dt {
	margin-top: 20px;
	font-size: 2.4rem;
	font-weight: normal;
	line-height: 1.3;
}

.banner dd {
	margin-top: 10px;
	font-size: 1.5rem;
	line-height: 1.7;
}

.banner a {
	opacity: 1;
	transition: opacity .2s;
}

.banner a:hover,
.banner a:active {
	opacity: .7;
}

@media screen and (max-width: 767px) {

	.banner {
		margin: 10vw 7vw 0;
	}

	.banner img {
		width: 90%;
		max-width: 300px;
		height: auto;
	}

	.banner + .banner img {
		width: 60%;
		max-width: 200px;
		height: auto;
	}

	.banner dt {
		margin-top: 5vw;
		font-size: 2rem;
	}

	.banner dd {
		margin-top: 2vw;
		font-size: 1.3rem;
		line-height: 1.6;
		text-align: left;
	}

	.banner a {
		transition: none;
	}

	.banner a:hover,
	.banner a:active {
		opacity: 1;
	}

}


/* ---- contact ---- */

#contact {
	margin-top: 120px;
	background-color: #000;
	color: #fff;
}

#contact p {
	text-align: center;
}

#contact h2 + p {
	margin-top: 30px;
	font-size: 2.1rem;
}

#contact .tel {
	margin-top: 30px;
	font-size: 3.4rem;
}

#contact .tel a {
	color: #fff;
	letter-spacing: .1em;
	text-decoration: none;
	pointer-events: none;
}

#contact .tel + p {
	margin-top: 10px;
	font-size: 1.7rem;
}

#contact .form a {
	display: inline-block;
	margin-top: 40px;
	width: 400px;
	padding: 18px 0;
	background-color: #fff;
	font-size: 2rem;
	text-decoration: none;
	transition: background-color .2s;
}

#contact .form a:hover,
#contact .form a:active {
	background-color: #ccc;
}

@media screen and (max-width: 767px) {

	#contact {
		margin-top: 15vw;
	}

	#contact h2 + p {
		margin-top: 8vw;
		font-size: 1.7rem;
	}

	#contact .tel {
		margin-top: 6vw;
		font-size: 3.4rem;
	}

	#contact .tel a {
		letter-spacing: normal;
		pointer-events: auto;
	}

	#contact .tel + p {
		margin-top: 2vw;
		font-size: 1.4rem;
	}

	#contact .form a {
		margin-top: 8vw;
		width: 80%;
		padding: 20px 0;
		font-size: 1.7rem;
		transition: none;
	}

	#contact .form a:hover,
	#contact .form a:active {
		background-color: #fff;
	}

}



.lyt-bnr{
	max-width: 940px;
	margin: auto;
	padding: 80px 0;
}
.lyt-bnr li + li{
	padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
.lyt-bnr{
	padding: 40px 0;
}
.lyt-bnr li + li{
	padding: 15px 0 0;
}
}
.lyt-bnr a{
	display: block;
}
.lyt-bnr a figure{
	line-height: 0;
	margin: 0;
	padding: 0
}
.lyt-bnr a figure img{
	width: 100%;
	height: auto;
	border: 1px solid rgba(0,0,0,.15)
}