@charset "utf-8";

html {
  font-size: 62.5%;
}

body {
  font-family:"Zen Kaku Gothic New", 'Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #121E3E;
  font-size: 1.6rem;
  font-weight: 400;
  min-width: 1280px;
  background: #EAE3DD;
  letter-spacing: 0.05em;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.w10 {width: 10% !important;}
.w20 {width: 20% !important;}
.w25 {width: 25% !important;}
.w30 {width: 30% !important;}
.w33 {width: 33.3% !important;}
.w35 {width: 35% !important;}
.w40 {width: 40% !important;}
.w50 {width: 50% !important;}
.w60 {width: 60% !important;}
.w70 {width: 70% !important;}
.w75 {width: 75% !important;}
.w80 {width: 80% !important;}
.w90 {width: 90% !important;}
.w100 {width: 100% !important;}

.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}

.el_opa {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.el_opa:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}

.el_brightness {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.el_brightness:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.el_brightness02 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.el_brightness02:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

a {
  text-decoration: none;
  color: #1B564D;
}

a.line {
  text-decoration: underline;
}

.ly_cont {
  max-width: 1280px;
  padding-left: 60px;
  padding-right: 60px;
  margin: 0 auto;
  position: relative;
}


@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

img {
  vertical-align: top;
}

img.w100 {
  width: 100%;
  height: auto;
}

.el_txt {
  line-height: 2;
}

.el_bold {
  font-weight: 700;
}

.el_f_s {
  font-size: 0.85em;
}

.el_f_l {
  font-size: 1.25em;
}

.ta_l {text-align: left !important;}
.ta_c {text-align: center !important;}
.ta_r {text-align: right !important;}

.el_link_line {
  text-decoration: underline;
}

.en {
  font-family: "EB Garamond", serif;
}




/******************************
 loading
*******************************/
#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #0E376F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  pointer-events: all;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}



#loading-logo {
  width: 240px;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: logo-appear 1s forwards;
          animation: logo-appear 1s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@-webkit-keyframes logo-appear {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes logo-appear {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}



#content {
  /* opacity: 0; */
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  position: relative;
  z-index: 1;
}


/******************************
 header
*******************************/
.ly_header {
  width: 100%;
  min-width: 1280px;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* position: -webkit-sticky; */
  z-index: 999;
}



.ly_header_inr {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


.ly_header_logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.ly_header,
.ly_header_logo {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ly_header.fixed {
  position: fixed;
  height: 70px;
}


.ly_header.fixed .ly_header_inr {
  padding-top: 0;
}



.ly_nav_inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ly_nav .bl_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 20px;
}

.ly_nav .bl_nav_list li a {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  padding: 20px;
  position: relative;
  -webkit-transition: all  0.3s ease;
  transition: all  0.3s ease;
  font-family: "EB Garamond", serif;

}



.ly_nav .bl_nav_list li a:hover {
  color: #B8CFE7;
  color: #FFAE4A;
  color: #0E376F;
}


.ly_nav .el_btn a {
  background-color: #EFB670;
  background-color: #FFAE4A;
  display: inline-block;
  padding: 14px 45px;
  border-radius: 50px;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 1.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ly_nav .el_btn a:hover {
  background-color: #0E376F;
}




/******************************
 mv
*******************************/
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mv .mv__slide {
  height: 100vh;
  margin: 0;
}

.mv .mv__slide .bg {
  z-index: -1;
  position: relative;
}

.mv .mv__slide .bg img {
  height: 100vh;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.slick-animation .bg {
  -webkit-animation: fadezoom 8s 0s forwards;
          animation: fadezoom 8s 0s forwards;
}

.mv__tagline {
  z-index: 1;
  position: absolute;
  bottom: 100px;
  left: 60px;
  color: #fff;
}


.tagline__en.split {
  font-family: "EB Garamond", serif;
  font-size: 11.6rem;
  margin-bottom: 20px;
}

.tagline__jp {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.tagline__en.split > div,
.tagline__jp > div {
  overflow: hidden;
}

.tagline__en.split > div {
    padding-bottom: 0.3em;
    line-height: 1;
    margin-top: -0.3em;
}

.tagline__en.split > div > span,
.tagline__jp > div > span {
  display: inline-block;
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
  opacity: 0;
}

.slick-animation .tagline__en.split > div:nth-child(1) > span {
  -webkit-animation: revealUp 0.9s cubic-bezier(0.25,1,0.5,1) forwards;
          animation: revealUp 0.9s cubic-bezier(0.25,1,0.5,1) forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.slick-animation .tagline__en.split > div:nth-child(2) > span {
  -webkit-animation: revealUp 0.9s cubic-bezier(0.25,1,0.5,1) forwards;
          animation: revealUp 0.9s cubic-bezier(0.25,1,0.5,1) forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.slick-animation .tagline__jp > div > span {
  -webkit-animation: revealUp 0.9s cubic-bezier(0.25,1,0.5,1) forwards;
          animation: revealUp 0.9s cubic-bezier(0.25,1,0.5,1) forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes revealUp {
  0%   { -webkit-transform: translateY(120%); transform: translateY(120%); opacity: 0; }
  100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

@keyframes revealUp {
  0%   { -webkit-transform: translateY(120%); transform: translateY(120%); opacity: 0; }
  100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}




@-webkit-keyframes slideIn{0%{-webkit-transform:translateY(120%);transform:translateY(120%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}


@keyframes slideIn{0%{-webkit-transform:translateY(120%);transform:translateY(120%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}


/******************************
 common
*******************************/
.bl_sec {
  padding: 200px 0;
}

.bl_sec_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}

.el_lead {
  font-size: 1.6rem;
  line-height: 2;
}

.bl_sec_header .el_lead {
  width: 640px;
  margin-top: 50px;
}

.el_lv2Heading span {
  display: block;
}

.el_lv2Heading .en {
  font-size: 10rem;
  margin-bottom: 1rem;
}

.el_lv2Heading .jp {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.el_lv3Heading {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 5rem;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 2rem;
}

.el_lv3Heading:after {
  content: '';
  width: 100px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #121E3E;
}

/******************************
 about
*******************************/
#about {
  padding: 0;
}

#about .el_lv3Heading:after {
  width: 0;
}

.bl_about01 {
  background-image: url(../images/bg_sand.jpg);
  background-repeat: repeat;
  background-size: 300px 300px;
  padding: 100px 0 150px;
  overflow: hidden;
  position: relative;
}

.about__name {
  opacity: 0.4;
  width: 100vw;
  position: relative;
  z-index: 1;
}

.about__name img {
  width: 100%;
  display: block;
  will-change: transform;
  -webkit-transform: translateX(8vw);
          transform: translateX(8vw);
  -webkit-transition: none;
  transition: none;
}

.bl_about01 .bl_txtarea {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
}

.bl_about01 .bl_txtarea .el_lead {
  font-size: 1.8rem;
  line-height: 3;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.bl_about01 .bl_imgarea {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bl_about01 .bl_imgarea > div {
  position: absolute;
}

.bl_about01 .img01 {
  top: 40px;
  left: 700px;
}

.bl_about01 .img02 {
  top: 420px;
  left: 30px;
}

.bl_about01 .img03 {
  top: 700px;
  right: 0px;
}

.bl_about01 .bl_imgarea > div img {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.bl_about02 {
  padding: 150px 0 200px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bl_about02 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/about_ocean.jpg);
  
}

.bl_about02 .bl_txtarea {
  padding-left: 55%;
}

.bl_about02 .bl_txtarea .el_lead {
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

.bl_about02 .map {
  position: absolute;
  right: 45%;
  top: -300px;
}


.bl_about_slider .slick-slide {
  width: 600px !important;
}



.bl_about_slider .slick-slide img {
  width: 100%;
  height: auto;
}



/******************************
 activity
*******************************/
#activity {
  padding-bottom: 0;
}

.bl_activity_flow {
  margin: 100px 0;
}

.bl_list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 7rem;
}

.bl_list01 li {
  width: 28%;
  position: relative;
}

.bl_list01 li .num {
  font-family: "EB Garamond", serif;
  font-size: 12.8rem;
  color: #EFB670;
  font-style: italic;
  position: absolute;
  top: -60px;
  left: -30px;
  z-index: 1;
}

.bl_list01 li .ttl {
  font-size: 2rem;
  line-height: 1.6;
  text-align: right;
  margin-bottom: 1.5rem;
}

.bl_list01 li .img {
  margin-bottom: 1.5rem;
}

.bl_list01 li .img img {
  width: 100%;
  height: auto;
}

.bl_list01 li .txt {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: justify;
}

.bl_list01 li:nth-child(2) .is-animated {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.bl_list01 li:nth-child(3) .is-animated {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}




.bl_activity_cate {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_activity_menu {
  position: -webkit-sticky;
  position: sticky;
  -ms-flex-item-align: start;
      align-self: flex-start;
  top: 0;
  padding-top: 120px;
}

.bl_activity_menu ul li a {
  font-size: 2rem;
  font-weight: 500;
  display: inline-block;
  padding: 10px 0 10px 30px;
  line-height: 1.6;
  position: relative;
  font-family: "EB Garamond", "Zen Kaku Gothic New", 'Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  
}

.bl_activity_menu ul li a.current {
  opacity: 1;
}

.bl_activity_menu ul li a.current:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #EFB670;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.bl_activity_detail .item {
  width: 840px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-top: 120px;
}

.bl_activity_detail h3 {
  width: 100%;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 60px;
  border-radius: 20px 20px 0 0;
}

.bl_activity_detail #surf h3 { background-image: url(../images/activity_surf.jpg);}
.bl_activity_detail #sup h3 { background-image: url(../images/activity_sup.jpg);}
.bl_activity_detail #monster h3 { background-image: url(../images/activity_monster.jpg);}
.bl_activity_detail #towin h3 { background-image: url(../images/activity_towin.jpg);}



.bl_activity_detail h3 .en {
  font-size: 5rem;
}

.bl_activity_detail h3 .jp {
  font-size: 1.3rem;
  line-height: 1.6;
}

.bl_activity_detail .bl_txtarea {
  padding: 10px 60px;
  background-color: #fff;
}

.bl_activity_table {
  width: 100%;
  border-collapse: separate;
}

.bl_activity_table th,
.bl_activity_table td {
  padding: 25px 0;
  border-bottom: 1px solid rgba(25,71,132,0.3);
}

.bl_activity_table tr:last-child th,
.bl_activity_table tr:last-child td {
  border-bottom: none;
}

.bl_activity_table th {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  width: 30%;
}

.bl_activity_table td {
  font-size: 1.5rem;
  line-height: 1.6;
}

.bl_lblue_list li {
  position: relative;
  padding-left: 16px;
}

.bl_lblue_list li:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #B8CFE7;
  position: absolute;
  top: 9px;
  left: 0;
}

.bl_lblue_list li + li {
  margin-top: 5px;
}

.bl_activity_detail .el_menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.8;
  background-image: url(../images/line_dot.png);
  background-size: 12px auto;
  background-repeat: repeat-x;
  background-position: center;
}

.bl_activity_detail .el_menu .txt {
  padding: 0 12px 0 0;
  background-color: #fff;
  z-index: 2;
  text-align: left;
}

.bl_activity_detail .el_menu .price {
  padding: 0 0 0 12px;
  background-color: #fff;
  z-index: 2;
  text-align: right;
  font-weight: 700;
}



/******************************
 rental
*******************************/
.bl_rental_table {
  width: 800px;
  margin: 0 auto;
}

.bl_rental_table table {
  width: 100%;
}

.bl_rental_table table th {
  background-color: #194784;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 30px;
  border: 1px solid #B8CFE7;
  font-size: 2rem;
  font-weight: 600;
}

.bl_rental_table table td {
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 30px;
  border: 1px solid #B8CFE7;
  font-size: 1.8rem;
}

.bl_rental_table table td .yen {
  font-size: 1.9em;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  color: #194784;
}

.bl_rental_table table td .price {
  font-size: 2.7em;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  color: #194784;
  display: inline-block;
  padding: 0 0.5rem;
}

.bl_rental_table .el_note {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 2rem;
}


/******************************
 shop
*******************************/
#shop {
  background-color: #121E3E;
  color: #EAE3DD;
}

#shop .bl_sec_header {
  width: 400px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#shop .bl01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}

#shop .el_lv2Heading {
  margin-bottom: 150px;
}

#shop .el_lead {
  width: 100%;
  line-height: 2.6;
}


#shop .bl01 .bl_imgarea {
  position: relative;
  width: 58%;
}

#shop .bl01 .img01 {
  position: absolute;
  top: -80px;
  left: 150px;
  width: 590px;
  z-index: 1;
}

#shop .bl01 .img02 {
  margin-left: -130px;
  margin-top: 250px;
  max-width: 670px;
  position: relative;
  z-index: 2;
}

#shop .bl_imgarea img {
  width: 100%;
  height: auto;
}

#shop .bl02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 200px;
}

#shop .bl02 .bl_txtarea {
  width: 400px;
  margin-right: 130px;
}

#shop .bl02 .img03 {
  width: 570px;
  margin-right: -150px;
}

.bl_shop_facilities .el_lv3Heading:after {
  background-color: #EAE3DD;
}

.bl_shop_facilities .bl_list01 li {
  width: 22.8%;
}

.bl_shop_facilities .bl_list01 .ttl {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.bl_shop_facilities .bl_list01 .txt {
  font-size: 1.3rem;
}

.bl_shop_brand {
  background-color: #fff;
  border-radius: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 0;
    margin-top: -100px;
}

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

.bl_brand_list li {
  width: 250px;
  margin-bottom: 1.5rem;
}

.bl_brand_list li img {
  width: 100%;
  height: auto;
}

/******************************
 access
*******************************/
#access .bl_access_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#access .bl_map {
  width: 50%;
}

#access .bl_info {
  width: 480px;
}

#access .map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  padding-top: 0;
  height: 0;
  height: 590px;
}

#access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#access .el_img {
  margin-bottom: 4rem;
}

#access .el_logo {
  text-align: center;
  margin-bottom: 4rem;
}

#access .el_logo img {
  width: 274px;
}

/******************************
 booking
*******************************/
#booking {
  padding: 0;
  padding-top: 100vh;
  position: relative;
  overflow: hidden;
}

#booking .bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/booking_bg.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

#booking .color {
  position: absolute;
  top: 100vh;
  background: #194784;
  mix-blend-mode: multiply;
  opacity: 0.8;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#booking .el_lv2Heading {
  margin-bottom: 100px;
}

.bl_booking_inr {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  color: #fff;
}

.bl_booking_options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_booking_options a {
  width: 550px;
  height: 280px;
  display: block;
  background-color: #194784;
  color: #fff;
  background-size: 65px;
  background-repeat: no-repeat;
  background-position: 50px center;
  padding-left: 140px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bl_booking_options .en {
  font-size: 5.5rem;
  margin-bottom: 1rem;
}

.bl_booking_options .en .dash {
  font-family: 'Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
  font-weight: 100;
  display: inline-block;
  padding: 0 5px;
}

.bl_booking_options .jp {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.bl_booking_options .online {
  background-image: url(../images/ico_calendar.svg);
}

.bl_booking_options .tel {
  background-image: url(../images/ico_phone.svg);
}

.bl_booking_options a:hover {
  background-color: #135bba;
}





@media(min-width: 769px) {
  a[href^="tel:"]{
    pointer-events: none;
    cursor: none;
  }
}





/******************************
 footer
*******************************/
.ly_footer {
  padding: 100px 0;
}

.ly_footer .ly_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ly_footer .bl_l .el_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 2rem;
}


.ly_footer .el_txt a {
  -webkit-transition: all  0.3s ease;
  transition: all  0.3s ease;
}

.ly_footer .el_txt a:hover {
  color: #FFAE4A;
}

.ly_footer .bl_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ly_footer .el_btn a {
  border: 1px solid #121E3E;
  background-color: #fff;
  width: 270px;
  height: 64px;
  line-height: 64px;
  border-radius: 100px;
  text-align: center;
  font-family: "EB Garamond", serif;
  margin-bottom: 3rem;
  -webkit-transition-duration: .4s;
          transition-duration: .4s;
  overflow: hidden;
  display: block;
  z-index: 2;
  position: relative;
}

.ly_footer .el_btn a:hover {
  color: #fff;
  background-color: #121E3E;
}

.ly_footer .bl_footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "EB Garamond", serif;
  margin-bottom: 6rem;
}

.ly_footer .bl_footer_nav li {
  margin-left: 4rem;
}

.ly_footer .bl_footer_nav li a {
  -webkit-transition: all  0.3s ease;
  transition: all  0.3s ease;
  font-family: "EB Garamond", serif;
}

.ly_footer .bl_footer_nav li a:hover {
  color: #B8CFE7;
  color: #194784;
  color: #FFAE4A;
}

.ly_footer .copyright {
  font-family: "EB Garamond", serif;
  font-size: 1.1rem;
}




/* animation */
.fadeup {
  opacity: 0;
}
.fadeup.is-animated {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
 
@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
 
@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}


/* 複数フェードアップ */
.fadeupwrap > * {
    opacity: 0;
}

 .fadeupwrap.is-animated > * {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.fadeupwrap.is-animated > *:nth-child(2){
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.fadeupwrap.is-animated > *:nth-child(3){
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}
.fadeupwrap.is-animated > *:nth-child(4){
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.fadeupwrap.is-animated > *:nth-child(5){
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.fadeupwrap.is-animated > *:nth-child(6){
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.fadeupwrap.is-animated > *:nth-child(7){
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.fadeupwrap.is-animated > *:nth-child(8){
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}


.fadeupwrap02.is-animated > *:nth-child(2){
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}
.fadeupwrap02.is-animated > *:nth-child(3){
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.fadeupwrap02.is-animated > *:nth-child(4){
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}
.fadeupwrap02.is-animated > *:nth-child(5){
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}
.fadeupwrap02.is-animated > *:nth-child(6){
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.fadeupwrap02.is-animated > *:nth-child(7){
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.fadeupwrap02.is-animated > *:nth-child(8){
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

