@charset "UTF-8";


/* ----------------------------
  Header
---------------------------- */
.header {
  padding: 0 50px;
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  height: 50px;
  background: #fff;
  font-family: "Axiforma", Helvetica, sans-serif;
  font-size: 13px;
  position: fixed;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 10000;
  -webkit-transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.loaded .header {
  top: 0;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

@media screen and (max-width: 800px) {
  .header {
    padding: 0 20px;
    padding-right: 40px;
    height: 54px;
    top: -54px;
    font-size: 11px;
  }
}


/* Header Title
---------------------------- */
.header-title {
  height: 100%;
}
.header-title a {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  height: 100%;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.header-title a:hover {
  opacity: 0.6;
}
.header-title svg {
  margin-right: 12px;
  width: 123px;
  height: 12px;
  position: relative;
  top: -1px;
}
.header-title em {
  font-weight: 900;
}

@media screen and (max-width: 800px) {
  .header-title svg {
    margin-right: 10px;
    width: 103px;
    height: 13.5px;
    top: 0;
  }
  .header-title span {
    position: relative;
    top: 1px;
  }
}

/* 2021/05/26 */


/* Header Menu
---------------------------- */
.header-menu {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  height: 100%;

  /* For Hide Reservation Button */
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}



/* Header Menu List
---------------------------- */
.header-menu-list {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  height: 100%;

}

.header-menu-list a {
    padding-right: 60px;
    padding-left: 60px;
  display: block;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
    background-color: #929397;
    color: #FFF;
        line-height: 50px;
}
.header-menu-list a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .header-menu-list {
    display: none;
  }
}

/* Header Button
---------------------------- */
.header-button {
  width: 50px;
    height: 50px;
    position: fixed;
  top: 0;
  right: 0;
	background-color: rgba(99,102,106,1.00);
z-index: 10010;}

.header-button svg {
  display: block;
  margin: auto;
  width: 25px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

  .header-button {
    display: flex; /* 子要素をflexboxで揃える */
    flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
  }
  .header-button button{
    width: 50%;
  }
  .header-button span{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    width: 25px;
    height: 2px;
    background: #FFF;
  -webkit-transition: all 0.5s 0s ease;
     -moz-transition: all 0.5s 0s ease;
      -ms-transition: all 0.5s 0s ease;
       -o-transition: all 0.5s 0s ease;
          transition: all 0.5s 0s ease;
  }
  .header-button span.l1{
    margin-top: -6px;
  }
  .header-button span.l3{
    margin-top: 6px;
  }

.header-button.active{transform: translate(-300px, 0);
    -ms-transform: translate(-300px, 0);
    -moz-transform: translate(-300px, 0);
    -webkit-transform: translate(-300px, 0);
      -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);}

  .header-button.active span.l1{
    margin-top: 0px;
  -webkit-transform: scale(1,1) translate(0%,0%) rotate(45deg);
     -moz-transform: scale(1,1) translate(0%,0%) rotate(45deg);
      -ms-transform: scale(1,1) translate(0%,0%) rotate(45deg);
       -o-transform: scale(1,1) translate(0%,0%) rotate(45deg);
          transform: scale(1,1) translate(0%,0%) rotate(45deg);

  }
  .header-button.active span.l2{
  opacity: 0;
  }
  .header-button.active span.l3{
    margin-top: 0px;
  -webkit-transform: scale(1,1) translate(0%,0%) rotate(-45deg);
     -moz-transform: scale(1,1) translate(0%,0%) rotate(-45deg);
      -ms-transform: scale(1,1) translate(0%,0%) rotate(-45deg);
       -o-transform: scale(1,1) translate(0%,0%) rotate(-45deg);
          transform: scale(1,1) translate(0%,0%) rotate(-45deg);

  }

@media screen and (max-width: 800px) {
    
.header-button {
    width: 55px;
    height: 54px;}
}

@media screen and (max-width: 350px) {
.header-button.active{transform: translate(-300px, 0);
    -ms-transform: translate(0px, 0);
    -moz-transform: translate(0px, 0);
    -webkit-transform: translate(0px, 0);
      -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);}
}

/* ----------------------------
  Wrapper
---------------------------- */
.wrapper {
  padding: 50px 0px 0;
}

@media screen and (max-width: 800px) {
  .wrapper {
     padding: 54px 0px 0;
  }
}



/* ----------------------------
  Info
---------------------------- */
.info {
  padding: 70px 70px 66px;
  background: rgba(99,102,106,1.00);
  color: #fff;
}
.info a {
  color: #fff;
}

@media screen and (max-width: 800px) {
  .info {
    padding: 26px 20px 35px;
  }
}


/* Info Main
---------------------------- */
.info-main:after {
  content: "";
  display: block;
  clear: both;
}


/* Info Body
---------------------------- */
.info-body {
  width: 480px;
  float: left;
}

@media screen and (max-width: 800px) {
  .info-body {
    width: 100%;
    float: none;
  }
}


/* Info Body Head
---------------------------- */
.info-body-head {
  margin-bottom: 20px;
  line-height: 1.75;
  font-family: "Axiforma", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
}

@media screen and (max-width: 800px) {
  .info-body-head {
    font-size: 24px;
  }
}


/* Info Body Text
---------------------------- */
.info-body dl {
  margin-bottom: 12px;
  line-height: 1.692307692;
}
.info-body dt,
.info-body p {
  margin-bottom: -2px;
  line-height: 1.846153846em;
  font-family: "Axiforma", Helvetica, sans-serif;
  font-weight: 900;
  font-size: 18px;
    letter-spacing: 0.1em;
}
.info-body dt a {
  font-size: 20px;
  position: relative;
  top: 1px;
}
.info-body dd {
  font-size: 14px;
}
.info-body dd small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}
.info-body p a {
  font-weight: normal;
  text-decoration: underline;
}
.info-body p a:hover {
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .info-body dl {
    margin-bottom: 18px;
    line-height: 1.636363636;
  }
  .info-body dt,
  .info-body p {
    margin-bottom: 0;
    line-height: 1.636363636em;
    font-size: 11px;
	letter-spacing: 0.1em;
  }
  .info-body dt a {
    font-size: 14px;
  }
  .info-body dd {
    font-size: 11px;
  }
  .info-body dd small {
    margin-top: 0;
    letter-spacing: -0.02em;
    font-size: 11px;
  }
}


/* Info Map
---------------------------- */
.info-map {
  margin-left: 480px;
}
.info-map-body {
  height: 350px;
  position: relative;
}
.info-map-body img,
.info-map-body frame {
  max-width: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.info-map p {
  margin-top: 4px;
  text-align: right;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.info-map p a {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.info-map p a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .info-map {
    margin-left: 0;
    margin-top: 32px;
    overflow: hidden;
  }
  .info-map-body {
    height: 250px;
  }
  .info-map p {
    margin-top: 6px;
    letter-spacing: 0.02em;
    font-size: 10px;
  }
  .info-map p a {
    text-decoration: underline;
  }
  .info-map p a:hover {
    opacity: 1;
    text-decoration: none;
  }
}


/* Info List
---------------------------- */
.info-list {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  margin-top: 40px;
}
.info-list li {
  width: 31.25%;
}
.info-list.c4 li {
  width: 23.4375%;
}
.info-list a {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-orient: vertical; /* Less than android 4.3 */
  -webkit-flex-direction: column; /* Less than iOS8 */
  flex-direction: column;
  -webkit-box-pack: center; /* Less than android 4.3 */
  -webkit-justify-content: center; /* Less than iOS8 */
  justify-content: center;
  height: 120px;
  border-bottom: 3px solid #fff;
  box-sizing: border-box;
  text-align: center;
  line-height: 1;
  font-size: 13px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.info-list a:hover {
  background: #fff;
  color: #000;
}
.info-list em {
  margin-bottom: 8px;
  font-size: 24px;
  font-family: "Axiforma", Helvetica, sans-serif;
  font-weight: 900;
}

@media screen and (max-width: 800px) {
  .info-list {
    display: block;
    margin-top: 25px;
  }
  .info-list li {
    margin-top: 15px;
    width: 100%;
  }
  .info-list.c4 li {
    margin-top: 15px;
    width: 100%;
  }
  .info-list a {
    height: 80px;
    background: #fff;
    border-bottom: none;
    font-size: 10px;
    color: #000;
  }
  .info-list em {
    margin-bottom: 7px;
    font-size: 17px;
  }
}


/* Info Contact
---------------------------- */
.info-contact {
  margin-top: 68px;
  text-align: center;
  line-height: 1.692307692;
  font-size: 13px;
}
.info-contact dt {
  margin-bottom: 26px;
  line-height: 1;
}
.info-contact dt em {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 900;
  font-family: "Axiforma", Helvetica, sans-serif;
}
.info-contact dd a {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: 55px;
  font-weight: 900;
  font-family: "Axiforma", Helvetica, sans-serif;
  cursor: default;
}
.info-contact dd a:before {
  content: "";
  display: inline-block;
  margin-right: 6px;
  background: url(https://wildbeach.jp/shinjuku/assets/img/common/icon-tel.png) no-repeat center;
  background-size: contain;
  width: 29px;
  height: 39px;
}
.info-contact ul {
  margin-top: 4px;
}

@media screen and (max-width: 800px) {
  .info-contact {
    margin-top: 30px;
    line-height: 1.6;
    font-size: 10px;
  }
  .info-contact dt {
    margin-bottom: 18px;
    line-height: 1;
  }
  .info-contact dt em {
    margin-bottom: 4px;
    font-size: 21px;
  }
  .info-contact dd a {
    display: block;
    font-size: 33px;
    cursor: pointer;
  }
  .info-contact dd a:before {
    margin-right: 5px;
    width: 16px;
    height: 24px;
  }
  .info-contact ul {
    margin-top: 12px;
  }
}



/* ----------------------------
  Footer
---------------------------- */
@media screen and (max-width: 800px) {
  .footer {
      background-color: #FFF;
  }
}


/* Footer Locations
---------------------------- */
.footer-locations {
  background: rgba(99,102,106,1.00);
}
.footer-locations-inner:after {
  content: "";
  display: block;
  clear: both;
}
.footer-locations li {
  width: 25%;
  float: left;
  position: relative;
}
.footer-locations a {
  display: block;
  overflow: hidden;
  position: relative;
}
.footer-locations a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 2;
}
.footer-locations a:hover:before {
  opacity: 0;
}
.footer-locations p {
  text-align: center;
  line-height: 1;
  font-family: "Axiforma", Helvetica, sans-serif;
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}


.footer-locations a:hover p {
  opacity: 0;
}
.footer-locations p em {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.727272727;
}
.footer-locations img {
  display: block;
  max-width: none;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-locations a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 800px) {
  .footer-locations li {
    width: 50%;
  }
  .footer-locations p {
    font-size: 10px;
  }
  .footer-locations p em {
    margin-bottom: 5px;
    font-size: 17px;
  }

}


/* Footer Body
---------------------------- */
.footer-body {
  padding: 55px 70px 63px;
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  background: rgba(99,102,106,1.00);
  color: #fff;
}
.footer-body a {
  display: block;
  color: #fff;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.footer-body a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .footer-body {
    display: block;
    padding: 10px 20px 16px;
  }
}


/* Footer Body Banners
---------------------------- */
.footer-body-banners {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
}
.footer-body-banners li {
  margin-right: 16px;
}

.footer-body-banners_up {
  display: none;
}
@media screen and (max-width: 800px) {
  .footer-body-banners {
    -webkit-box-pack: center; /* Less than android 4.3 */
    -webkit-justify-content: center; /* Less than iOS8 */
    justify-content: center;
  }
  .footer-body-banners li:first-child {
    width: 107px;
  }
  .footer-body-banners li:last-child {
    width: 195px;
    margin-right: 0;
  }
  .footer-body-banners_up {
    display:block;
    align-items: center;
    margin-bottom: 20px;
  }
  .footer-body-banners_up img{
    width: 100%;
    height: auto;
  }
}


/* Footer Body List
---------------------------- */
.footer-body-list {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  font-size: 13px;
}
.footer-body-list li {
  margin-left: 10px;
  padding-left: 12px;
  position: relative;
}

/* .footer-body-list li:before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer-body-list li:first-child {
  margin-left: 0;
  padding-left: 0
} */

.footer-body-list li:first-child:before {
  display: none;
}

@media screen and (max-width: 800px) {
  .footer-body-list {
    /* -webkit-box-pack: center;  */
    /* -webkit-justify-content: center;  */
    /* justify-content: center; */
    margin-top: 13px;
    font-size: 10px;
    /* flex-wrap: wrap; */
    text-align: center;
    display: block;
  }
  .footer-body-list li {
       font-size: 11px;
    line-height: 18px;
    margin: 0 7px;
    display: inline-block;
  }

  .footer-body-list.kisarazu {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
  .footer-body-list.kisarazu li {
    display: inline-block;
    margin-left: 15px;
    padding-left: 16px;
    margin-top: 15px;
  }
  .footer-body-list.kisarazu li:first-child,
  .footer-body-list.kisarazu li:nth-child(4){
    margin-left: 0px;
    padding-left: 20px;
  }
  .footer-body-list.kisarazu li:nth-child(3),
  .footer-body-list.kisarazu li:last-child{
    padding-right: 20px;
  }
  .footer-body-list.sendai li:first-child,
  .footer-body-list.sendai li:nth-child(4){
    margin-left: 0px;
    padding-left: 40px;
  }
  .footer-body-list.sendai li:nth-child(3),
  .footer-body-list.sendai li:last-child{
    padding-right: 40px;
  }
  .footer-body-list.kisarazu li:first-child:before {
    display: none;
  }
  .footer-body-list.kisarazu li:nth-child(4):before{
    display: none;
  } 
}

@media screen and (max-width: 320px) {
  .footer-body-list li {
    margin-left: 9px;
    padding-left: 10px;
  }
}

/* Footer Top
---------------------------- */
.footer-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-top.visible {
  opacity: 1;
  visibility: visible;
}
.footer-top a {
  display: block;
  width: 100%;
  height: 100%;
  background: #009e42 url(https://wildbeach.jp/shinjuku/assets/img/common/icon-arrow-up-on.png) no-repeat center;
  background-size: 9px auto;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-top a.kisarazu {
  background: #000 url(https://wildbeach.jp/shinjuku/assets/img/common/icon-arrow-up-on_b.png) no-repeat center;
}
.footer-top a.sendai {
  background: #a4e0c5 url(https://wildbeach.jp/shinjuku/assets/img/common/icon-arrow-up-on.png) no-repeat center;
}
.footer-top a.sendai:hover {
  background: #fff url(https://wildbeach.jp/shinjuku/assets/img/common/icon-arrow-up-on_g.png) no-repeat center;
}
.footer-top a:hover {
  background-color: #fff;
}
.footer-top img {
  display: block;
  margin: auto;
  width: 9px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-top a:hover img {
  opacity: 0;
}

@media screen and (max-width: 800px) {
  .footer-top {
    width: 40px;
    height: 40px;
display:none;
  }
}


/* Footer Copy
---------------------------- */
.footer-copy{background-color: #FFF;}
.footer-copy small {
  display: block;
  line-height: 50px;
  font-family: "Axiforma", Helvetica, sans-serif;
  font-size: 11px;
}

@media screen and (max-width: 800px) {
  .footer-copy small {
    text-align: center;
    line-height: 30px;
    font-size: 10px;
  }
}



/* ----------------------------
  Menu
---------------------------- */

.main-container{  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);}

.main-container.view {
    transform: translate(-300px, 0);
    -ms-transform: translate(-300px, 0);
    -moz-transform: translate(-300px, 0);
    -webkit-transform: translate(-300px, 0);
      -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu {
  width: 300px;
  height: 100%;
   height : 100%;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
    background: #000;
  color: #FFF;
  position: fixed;
  top: 0px;
  right: 0;
  bottom: 0;
  z-index: 10001;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden
}
.menu.view {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
.menu-inner {
    padding: 0 15px;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.g_menu{
  margin-bottom: 25px;
}
ul.g_menu li{
    border-bottom: 1px #2b2b2b solid;
    color: #FFF;
    font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1;
    font-weight: 900;
    
padding: 30px 0;
}
ul.g_menu li:last-child{border-bottom: none 0px}
ul.g_menu li a{
	color: #FFF;
  display: block;
 
}
ul.g_menu li a:hover{color:#808080 }
ul.f_menu{
  margin-bottom: 30px;
}

ul.f_menu li a{
  display: block;
  padding: 12px 0;
  font-size: 10px;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 900;
}

@media screen and (max-width: 800px) {
  .menu {
    display: block;
  } 
    
 .menu-inner {
    padding: 0 15px;
    text-align: center;
    width:100%;
    margin-left: 0%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}   
}


@media screen and (max-width: 350px) {
    .menu {
        width: 80%;}
    ul.g_menu li{
    padding: 20px 0;
    font-size: 18px;
}
    .main-container.view {
    transform: translate(-20%, 0);
    -ms-transform: translate(-20%, 0);
    -moz-transform: translate(-20%, 0);
    -webkit-transform: translate(-20%, 0);
      -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
    
    
}
/* Menu Close
---------------------------- */
.menu-close button {
  margin-left: auto;
  padding: 14px 0;
  width: 25px;
}
.menu-close button svg {
  margin: 0 auto;
}


/* Menu List
---------------------------- */
.menu-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.menu-list-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* Menu List Head
---------------------------- */
.menu-list-head {
  display: block;
  padding: 19px 0;
  font-size: 13px;
  font-weight: bold;
  position: relative;
}
.menu-list-head svg {
  margin: auto 0;
  width: 24px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.menu-list-head.on svg {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.menu-list-head rect:nth-child(2) {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.menu-list-head.on rect:nth-child(2) {
  opacity: 0;
}


/* Menu List Inner
---------------------------- */
.menu-list-inner {
  padding-bottom: 6px;
  display: none;
}
.menu-list-inner:after {
  content: "";
  display: block;
  clear: both;
}
.menu-list-inner li {
  width: 50%;
  float: left;
  font-size: 10px;
  font-weight: bold;
}
.menu-list-inner a {
  display: block;
  padding-bottom: 16px;
  text-decoration: underline;
}


/* Menu Info
---------------------------- */
.menu-info {
  margin-top: 16px;
  font-size: 10px;
  font-weight: bold;
}
.menu-info a {
  display: block;
  padding: 8px 0;
  text-decoration: underline;
}


/* Menu Lang
---------------------------- */
.menu-lang {
  margin-top: 8px;
  margin-bottom: 35px;
  font-size: 10px;
  font-weight: bold;
}
.menu-lang a {
  text-decoration: underline;
}
.menu-lang i {
  margin: 0 11px;
}



/* ----------------------------
  Slick Base Style
---------------------------- */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}




/* modal
---------------------------- */
#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
    -webkit-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
#modal.view{
  visibility: visible;
  opacity: 1;
}
#modal .bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}
#modal .inner{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  margin-left: -275px;
  -webkit-transform: scale3d(1,1,1) translate(0px,-50%) rotate(0deg);
          transform: scale3d(1,1,1) translate(0px,-50%) rotate(0deg);
  background: #FFF;
  padding: 67px 0;
}
#modal .inner .close{
  position: absolute;
  display: block;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
    -webkit-transition: all 0.5s 0s cubic-bezier(0.875, 0.005, 0.090, 0.990);
            transition: all 0.5s 0s cubic-bezier(0.875, 0.005, 0.090, 0.990);
}
#modal .inner .close:hover{
  -webkit-transform: scale3d(1,1,1) translate(0px,0%) rotate(90deg);
          transform: scale3d(1,1,1) translate(0px,0%) rotate(90deg);

}
#modal .inner .close .l1{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
          transform: translate(-50%,-50%) rotate(45deg);
  width: 24px;
  height: 2px;
  background: #f19eb4;
}
#modal .inner .close .l2{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
          transform: translate(-50%,-50%) rotate(-45deg);
  width: 24px;
  height: 2px;
  background: #f19eb4;
}
#modal .inner .date{
  margin: 0 75px;
  font-size: 14px;
  border-bottom: 2px #f19eb4 solid;
  display: inline-block;
  line-height: 18px;
  font-family: "Axiforma", Helvetica, sans-serif;
}
#modal .inner .title{
  margin: 0 75px;
  font-size: 30px;
  font-family: "Axiforma", Helvetica, sans-serif;
  font-weight: 900;
}
#modal .inner .entry{
  margin: 0 75px;
  font-size: 13px;
  line-height: 24px;
}
#modal .inner .entry small{
  font-size: 12px;
  line-height: 22px;
}
#modal .inner .entry a{
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  #modal .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    margin-left: -40vw;
    padding: 25px 0;
  }
  #modal .inner .close{
    top: 10px;
    right: 10px;
  }
  #modal .inner .close .l1{
    width: 14px;
    height: 2px;
  }
  #modal .inner .close .l2{
    width: 14px;
    height: 2px;
  }
  #modal .inner .date{
    margin: 0 8vw;
    font-size: 3.2vw;
    line-height: 4vw;
    margin-bottom: 2px;
  }
  #modal .inner .title{
    margin: 0 8vw;
    font-size: 6.4vw;
    margin-bottom: 5px;
  }
  #modal .inner .entry{
    margin: 0 8vw;
    font-size: 3.4vw;
    line-height: 5.6vw;
  }
  #modal .inner .entry small{
    font-size: 2.9vw;
    line-height: 5.6vw;
  }

}

/*  */

#banner-lt{
	width:150px;
	margin: 0;
	padding: 0;
	position: absolute;
	top:73px;
	left:18px;
	opacity: 0;
	-webkit-transform: translateY(16px);
	transform: translateY(16px);
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
	-webkit-transition-delay: 1.3s;
	transition-delay: 1.3s;
}
.loaded #banner-lt{
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (min-width: 768px) {
	#banner-lt{
	top:105px;
	left:50px;
	}
}


/* 2019/03/11 */


.header-menu-reserve a {
  /*background: #fff352;*/
  background: #69dbc8;
  color: #000;
}

.header-menu-reserve a:hover {
  color: #000;
}

.footer-top a{
  background: #009e42;
background-color: #009e42;
}


