@charset "UTF-8";
/* ----------------
	top page
 ---------------- */
.pc,
.sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

/* ---- 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;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.main-visual .swiper-slide span img {
  display: none;
}
.main-visual .swiper-slide.zoom > span {
  -webkit-animation: zoomOut 12s linear 0s both;
  animation: zoomOut 12s linear 0s both;
}
.main-visual .swiper-pagination {
  bottom: 20px;
}
.main-visual .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  background-color: #fff;
  opacity: 0.4;
}
.main-visual .swiper-pagination-bullet-active {
  opacity: 1;
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(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 h1 span {
  display: block;
}
@media screen and (max-width: 767px) {
  #introduction h1 span + span {
    margin-top: 10px;
  }
}
#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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /*justify-content: space-between;*/
  width: 80%;
  margin: 40px auto 0;
}
#plan li {
  width: 32%;
}
#plan li + li {
	margin-left: 1.33%;
}
#plan .img {
  overflow: hidden;
}
#plan img {
  display: block;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
#plan p.serif {
  margin-top: 20px;
  font-size: 2rem;
  line-height: 1.3;
}
#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 {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media screen and (max-width: 767px) {
  #plan ul {
    display: block;
    width: auto;
    margin-top: 8vw;
  }
  #plan li {
    width: auto;
    margin-top: 10vw;
  }
  #plan li:first-child {
    margin-top: 0;
  }
  #plan img {
    -webkit-transition: none;
    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 {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* ---- banquet ---- */
#banquet {
  padding-top: 100px;
}
#banquet header {
  margin: auto;
  position: relative;
  width: 80%;
}
#banquet header p {
  position: absolute;
  right: 0;
  bottom: 40px;
  font-size: 1.5rem;
}
#banquet header p + p {
  bottom: 10px;
}
#banquet header p::before {
  content: "＞";
  margin-right: 3px;
  font-size: 1.5rem;
}
#banquet h2 {
  padding-bottom: 20px;
}
#banquet .filters {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  #banquet .filters {
    margin-top: 20px;
  }
}
#banquet .filters dl {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  #banquet .filters dl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  #banquet .filters dl dt {
    width: 15%;
  }
}
@media screen and (min-width: 768px) {
  #banquet .filters dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  #banquet .filters dl > div {
    margin: 20px 0;
  }
}
#banquet .filters dl > div dd {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eee;
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  #banquet .filters dl > div dd {
    width: 32%;
  }
}
#banquet .filters dl > div dd input[type=checkbox] {
  display: block;
  margin-right: 5px;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
#banquet .filters dl > div dd label {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #banquet .filters dl > div dd + dd {
    margin-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  #banquet .filters dl > div dd + dd {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  #banquet .filters dl > div dd:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  #banquet .filters dl > div dd:nth-child(n+4) {
    margin-top: 10px;
  }
}
#banquet .filters dl + dl {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
#banquet .filters .result {
  background-color: #000;
  color: #fff;
  display: block;
  margin: 20px auto;
  text-align: center;
  padding: 15px 0;
  width: 300px;
}
@media screen and (max-width: 767px) {
  #banquet .filters .result {
    width: 100%;
  }
}
#banquet .filters .result a {
  color: #fff;
  text-decoration: none;
}
#banquet .js_target {
  display: none;
}
#banquet .js_selected {
  display: block;
}
#banquet .halls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  #banquet .halls {
    max-width: 80%;
  }
}
@media screen and (min-width: 768px) {
  #banquet .halls::after {
    content: "";
    display: block;
    height: 0;
    width: 32%;
  }
}
#banquet .halls li {
  width: 32%;
  margin-top: 50px;
}
@media screen and (min-width:768px) and (max-width: 1023px) {
  #banquet .halls li {
    width: 48% !important;
  }
}
#banquet .halls li a {
  display: block;
  height: 100%;
  border: 1px solid #ccc;
}
#banquet .halls li a:link, #banquet .halls li a:visited {
  text-decoration: none;
}
#banquet .halls li a:hover img, #banquet .halls li a:active img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
#banquet .halls li p {
  margin: 0 20px;
  font-size: 1.5rem;
  line-height: 1.6;
}
#banquet .halls li.nullpo {
  text-align: center;
  width: 100%;
}
#banquet .halls .img {
  overflow: hidden;
}
#banquet .halls img {
  display: block;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
#banquet .halls h3 {
  margin: 30px 20px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}
#banquet .halls dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 18px 30px;
  font-size: 1.5rem;
  line-height: 1.6;
}
#banquet .halls dt {
  position: relative;
  width: 5.5em;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
#banquet .halls dt::after {
  content: "：";
  position: absolute;
  left: 100%;
  top: 0;
}
#banquet .halls dd {
  width: calc(100% - 6.5em);
  word-break: break-all;
}

@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 + p {
	  margin-top: 2em;
	  bottom: auto;
  }
  #banquet header p::before {
    font-size: 1.4rem;
  }
  #banquet h2 {
    padding-bottom: 3vw;
  }
  #banquet .halls {
    display: block;
    width: auto;
    margin: 0;
  }
  #banquet .halls li {
    width: auto;
    margin: 7vw 0 0;
  }
  #banquet .halls li a:hover img, #banquet .halls li a:active img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #banquet .halls h3 {
    margin: 7vw 5vw 4vw;
    font-size: 1.6rem;
  }
  #banquet .halls li p {
    margin: 0 5vw;
    font-size: 1.4rem;
  }
  #banquet .halls dl {
    display: block;
    margin: 3vw 5vw 5vw;
    font-size: 1.4rem;
  }
  #banquet .halls dt {
    width: auto;
    -moz-text-align-last: left;
    text-align-last: left;
  }
  #banquet .halls dt::before {
    content: "●";
    color: #999;
  }
  #banquet .halls dt::after {
    position: static;
  }
  #banquet .halls dd {
    width: auto;
    padding-left: 1em;
  }
}
/* ---- facility ---- */
#facility {
  padding-top: 70px;
}
#facility h2 {
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
#facility ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  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;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.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 {
  -webkit-transform: scale(1.05);
  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 {
    -webkit-transition: none;
    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 {
    -webkit-transform: scale(1);
    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;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.banner a:hover, .banner a:active {
  opacity: 0.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 {
    -webkit-transition: none;
    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: 0.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;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.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;
    -webkit-transition: none;
    transition: none;
  }
  #contact .form a:hover, #contact .form a:active {
    background-color: #fff;
  }
}



.lyt-bnr{
	max-width: 940px;
	margin: auto;
	padding: 80px 0;
}
@media screen and (max-width: 767px) {
.lyt-bnr{
	padding: 40px 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)
}