.spotArea .arrowBox .arrow, .newsArea .arrowBox .arrow, .newsArea .item, .facArea .arrowBox .arrow, .facArea .facthumbBox .Img::after, .facArea .facthumbBox .Img::before, .roomArea .arrowBox .arrow, .roomArea .tagList, .roomArea .Txt .titleEn, .roomArea .item, .aboutArea .videoBtn a::before, .aboutArea .videoBtn a .play, .aboutArea .videoBtn a .circle, .aboutArea .Img img, .bannerArea .scrollDown a::after, .bannerArea .scrollDown a::before, .bannerArea .scrollDown a svg {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes zoomInImage {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomInImage {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes decoCircle {
  50% {
    stroke-dashoffset: 60;
  }
  100% {
    stroke-dashoffset: -330;
  }
}
@keyframes decoCircle {
  50% {
    stroke-dashoffset: 60;
  }
  100% {
    stroke-dashoffset: -330;
  }
}
@-webkit-keyframes move {
  20% {
    -webkit-transform: translateX(-50%) scaleY(1.5);
            transform: translateX(-50%) scaleY(1.5);
  }
  50% {
    top: -35px;
    -webkit-transform: translateX(-50%) scaleY(2.5);
            transform: translateX(-50%) scaleY(2.5);
  }
  70% {
    -webkit-transform: translateX(-50%) scaleY(1.5);
            transform: translateX(-50%) scaleY(1.5);
  }
  100% {
    top: -125px;
  }
}
@keyframes move {
  20% {
    -webkit-transform: translateX(-50%) scaleY(1.5);
            transform: translateX(-50%) scaleY(1.5);
  }
  50% {
    top: -35px;
    -webkit-transform: translateX(-50%) scaleY(2.5);
            transform: translateX(-50%) scaleY(2.5);
  }
  70% {
    -webkit-transform: translateX(-50%) scaleY(1.5);
            transform: translateX(-50%) scaleY(1.5);
  }
  100% {
    top: -125px;
  }
}
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  padding: 0;
  margin: 0 0 50px;
  background-image: none;
  z-index: 0;
}
.mainArea::after {
  display: none;
}
.mainArea .wrap {
  position: relative;
  z-index: 1;
}

.bannerArea {
  position: relative;
  background-color: #e8e8e8;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerList:not(.slick-slider) {
  position: relative;
}
.bannerArea .bannerList:not(.slick-slider) > div, .bannerArea .bannerList:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.bannerArea .bannerList:not(.slick-slider) > div:not(:first-child), .bannerArea .bannerList:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 1200px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 240px 20px 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-shadow: 3.5px 3.5px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1880px) {
  .bannerArea .bannerItem .Txt {
    padding-top: 150px;
  }
}
@media (max-width: 1560px) {
  .bannerArea .bannerItem .Txt {
    max-width: 900px;
    padding-top: 110px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt {
    padding-top: 90px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    padding-top: 190px;
    max-width: 850px;
  }
}
@media (max-width: 1024px) {
  .bannerArea .bannerItem .Txt {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    max-width: 500px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt {
    padding: 180px 20px 0;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.bannerArea .bannerItem .Txt .logo {
  width: 103px;
  height: 110px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(3.5px 3.5px 7px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(3.5px 3.5px 7px rgba(0, 0, 0, 0.3));
  opacity: 0;
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .logo {
    width: 95px;
  }
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 10px;
  opacity: 0;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 40px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 8.5px;
  margin-top: 20px;
  line-height: 1.8;
  opacity: 0;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Txt .subtitle {
    letter-spacing: 6.5px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt .subtitle {
    max-width: 80%;
    margin: 20px auto 0;
  }
}
.bannerArea .bannerItem .Img {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.bannerArea .bannerItem .Img img.zoomIn {
  -webkit-animation: zoomInImage 2.1s cubic-bezier(0.45, 0, 0.55, 1) forwards;
          animation: zoomInImage 2.1s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Img {
    height: 640px;
  }
}
.bannerArea .bannerItem.slick-current .Txt .logo {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
  -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
  -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Img img {
  opacity: 1;
}
.bannerArea .dotsBox {
  position: absolute;
  z-index: 5;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1180px) {
  .bannerArea .dotsBox {
    left: 20px;
  }
}
.bannerArea .slick-dots {
  position: static;
  width: 6px;
  margin: 0;
}
.bannerArea .slick-dots li {
  width: 100%;
  height: 6px;
  margin: 15px 0;
}
.bannerArea .slick-dots li button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
}
.bannerArea .slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300%;
  height: 300%;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0;
}
.bannerArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #fff;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button::before {
  border: 1px solid #fff;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button::after {
  opacity: 1;
}
.bannerArea .copyright {
  position: absolute;
  z-index: 5;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 250px;
}
.bannerArea .copyright .footerInfo,
.bannerArea .copyright .design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-size: 14px;
  font-family: Outfit;
  font-weight: 300;
  letter-spacing: 1.2px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: mixed;
  margin: 5px 0;
}
.bannerArea .copyright .footerInfo a,
.bannerArea .copyright .design a {
  color: #ffffff;
  font-size: 14px;
}
.bannerArea .copyright .footerInfo a:hover,
.bannerArea .copyright .design a:hover {
  color: #043248;
}
.bannerArea .scrollDown {
  position: absolute;
  z-index: 5;
  bottom: 240px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 1680px) {
  .bannerArea .scrollDown {
    bottom: 180px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .scrollDown {
    bottom: 120px;
  }
}
@media (max-width: 1366px) {
  .bannerArea .scrollDown {
    bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .bannerArea .scrollDown {
    bottom: 140px;
  }
}
.bannerArea .scrollDown a {
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  font-family: Outfit;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  text-align: center;
}
.bannerArea .scrollDown a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  stroke: #ffffff;
  fill: none;
  stroke-dasharray: 390;
  stroke-dashoffset: 390;
  -webkit-animation: decoCircle 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
          animation: decoCircle 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
@media (max-width: 480px) {
  .bannerArea .scrollDown a svg {
    width: 104px;
    height: 104px;
  }
}
.bannerArea .scrollDown a::before {
  content: "";
  position: absolute;
  top: -125px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  height: 123px;
  width: 1px;
  background: #ffffff;
}
@media (max-width: 1180px) {
  .bannerArea .scrollDown a::before {
    height: 90px;
    top: -100px;
  }
}
.bannerArea .scrollDown a::after {
  content: "";
  position: absolute;
  top: -125px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  height: 20px;
  width: 3px;
  background: #ab8e59;
  -webkit-animation: move 3s cubic-bezier(0.37, 0, 0.63, 1) infinite;
          animation: move 3s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
@media (max-width: 1180px) {
  .bannerArea .scrollDown a::after {
    top: -100px;
    -webkit-animation: none;
            animation: none;
  }
}
.bannerArea .scrollDown a:hover {
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.bannerArea .scrollDown a:hover svg {
  -webkit-transform: translate(-50%, -50%) scale(1.25);
          transform: translate(-50%, -50%) scale(1.25);
}
.bannerArea .scrollDown a:hover::after, .bannerArea .scrollDown a:hover::before {
  opacity: 0;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .bannerVideo, .bannerArea .socialBox, .bannerArea .copyright, .bannerArea .arrowBox {
    display: none !important;
  }
}

.aboutArea {
  padding: 150px 0 50px;
  background-image: url(../images/aboutbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80% 25%;
}
.aboutArea .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1300px;
}
@media (max-width: 1080px) {
  .aboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.aboutArea .left,
.aboutArea .right {
  position: relative;
  z-index: 5;
  width: 50%;
}
.aboutArea .left {
  padding-bottom: 400px;
}
@media (max-width: 640px) {
  .aboutArea .left {
    padding-bottom: 230px;
  }
}
@media (max-width: 460px) {
  .aboutArea .left {
    padding-bottom: 0px;
  }
}
.aboutArea .titleBox_m {
  margin: 50px auto 80px;
  text-align: center;
}
.aboutArea .titleBox_m .titleTw {
  position: relative;
  z-index: 5;
  color: #043248;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 8.8px;
}
.aboutArea .titleBox_m .dceoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.aboutArea .titleBox_m .dceoBox .Discovery {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 460px) {
  .aboutArea .titleBox_m .dceoBox .Discovery {
    width: 280px;
  }
}
@media (max-width: 414px) {
  .aboutArea .titleBox_m .dceoBox .Discovery {
    width: 240px;
    top: -30px;
  }
}
.aboutArea .titleBox_m .dceoBox .Hayata {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 460px) {
  .aboutArea .titleBox_m .dceoBox .Hayata {
    width: 280px;
  }
}
@media (max-width: 414px) {
  .aboutArea .titleBox_m .dceoBox .Hayata {
    width: 240px;
    top: 20px;
  }
}
@media (min-width: 1081px) {
  .aboutArea .titleBox_m {
    display: none;
  }
}
@media (max-width: 414px) {
  .aboutArea .titleBox_m {
    margin-top: 0;
  }
  .aboutArea .titleBox_m .titleTw {
    font-size: 28px;
  }
}
.aboutArea .ImgBox {
  position: relative;
  z-index: 5;
  pointer-events: none;
  padding: 70px 170px 115px 75px;
  overflow: hidden;
}
.aboutArea .ImgBox::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100px;
  left: 55px;
  width: 145px;
  height: 510px;
  background: #043248;
}
@media (max-width: 768px) {
  .aboutArea .ImgBox::after {
    height: 410px;
  }
}
@media (max-width: 640px) {
  .aboutArea .ImgBox::after {
    height: 320px;
  }
}
@media (max-width: 540px) {
  .aboutArea .ImgBox::after {
    left: 0px;
  }
}
@media (max-width: 360px) {
  .aboutArea .ImgBox::after {
    height: 250px;
    left: 10px;
    top: 85px;
  }
}
@media (max-width: 320px) {
  .aboutArea .ImgBox::after {
    top: 25px;
  }
}
.aboutArea .ImgBox .wheel {
  position: absolute;
  z-index: 0;
  top: 0px;
  right: 100px;
}
@media (max-width: 1366px) {
  .aboutArea .ImgBox .wheel {
    top: -10px;
    right: 160px;
  }
}
@media (max-width: 540px) {
  .aboutArea .ImgBox .wheel {
    top: -10px;
    right: initial;
    left: 220px;
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 414px) {
  .aboutArea .ImgBox .wheel {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 360px) {
  .aboutArea .ImgBox .wheel {
    top: 10px;
    right: initial;
    left: 150px;
  }
}
@media (max-width: 320px) {
  .aboutArea .ImgBox .wheel {
    display: none;
  }
}
@media (max-width: 640px) {
  .aboutArea .ImgBox {
    padding: 70px 75px 115px;
  }
}
@media (max-width: 540px) {
  .aboutArea .ImgBox {
    padding: 70px 20px 115px;
  }
}
@media (max-width: 540px) {
  .aboutArea .ImgBox {
    padding: 70px 20px 115px;
  }
}
@media (max-width: 320px) {
  .aboutArea .ImgBox {
    padding: 10px 20px 115px;
  }
}
.aboutArea .Img {
  position: relative;
  z-index: 5;
  border: 1px solid #ffffff;
  pointer-events: auto;
  overflow: hidden;
}
.aboutArea .Img.b {
  position: relative;
  width: 405px;
}
.aboutArea .Img.s {
  position: absolute;
  right: 85px;
  bottom: 15px;
  width: 225px;
}
.aboutArea .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutArea .Img img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 768px) {
  .aboutArea .Img.b {
    width: 325px;
  }
  .aboutArea .Img.s {
    right: 120px;
  }
}
@media (max-width: 640px) {
  .aboutArea .Img.b {
    width: 260px;
  }
  .aboutArea .Img.s {
    width: 155px;
    right: initial;
    left: 250px;
  }
}
@media (max-width: 540px) {
  .aboutArea .Img.s {
    left: 200px;
  }
}
@media (max-width: 414px) {
  .aboutArea .Img.s {
    left: initial;
    right: 20px;
  }
}
@media (max-width: 360px) {
  .aboutArea .Img.b {
    width: 200px;
  }
  .aboutArea .Img.s {
    width: 120px;
    left: initial;
    right: 20px;
    bottom: 40px;
  }
}
.aboutArea .videoBtn {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 90px;
  margin-top: -400px;
  margin-left: 525px;
}
@media (max-width: 768px) {
  .aboutArea .videoBtn {
    margin-left: 480px;
  }
}
@media (max-width: 640px) {
  .aboutArea .videoBtn {
    margin-left: 380px;
    margin-top: -300px;
  }
}
@media (max-width: 540px) {
  .aboutArea .videoBtn {
    margin-left: 340px;
    margin-top: -270px;
  }
}
@media (max-width: 460px) {
  .aboutArea .videoBtn {
    position: absolute;
    z-index: 5;
    margin: 0;
    right: 25px;
    top: 30em;
  }
}
@media (max-width: 414px) {
  .aboutArea .videoBtn {
    right: 25px;
    top: 20em;
  }
}
.aboutArea .videoBtn a {
  position: relative;
  display: block;
  padding: 15px 20px;
  color: #043248;
  font-size: 15px;
  font-weight: 300;
  font-family: Outfit;
  letter-spacing: 0.5px;
}
.aboutArea .videoBtn a .circle {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  stroke: #ab8e59;
  fill: transparent;
  stroke-dasharray: 390;
  stroke-dashoffset: 390;
  -webkit-animation: decoCircle 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
          animation: decoCircle 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
.aboutArea .videoBtn a .play {
  display: block;
  margin: 0 auto 5px;
  width: 12px;
  height: 10px;
  stroke: #043248;
}
.aboutArea .videoBtn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -115px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 123px;
  height: 1px;
  background: #ab8e59;
}
@media (max-width: 460px) {
  .aboutArea .videoBtn a::before {
    display: none;
  }
}
.aboutArea .videoBtn a:hover {
  color: transparent;
}
.aboutArea .videoBtn a:hover .play {
  -webkit-transform: translate(2px, 13px) scale(2);
          transform: translate(2px, 13px) scale(2);
  stroke: #ffffff;
}
.aboutArea .videoBtn a:hover .circle {
  -webkit-transform: translate(-50%, -50%) scale(0.6);
          transform: translate(-50%, -50%) scale(0.6);
  fill: #ab8e59;
  -webkit-animation: none;
          animation: none;
}
.aboutArea .videoBtn a:hover::before {
  opacity: 0;
}
.aboutArea .titleBox {
  margin: 65px 0 0 -70px;
  text-align: start;
}
.aboutArea .titleBox .titleTw {
  position: relative;
  z-index: 5;
  color: #043248;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 8.8px;
}
.aboutArea .titleBox .dceoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.aboutArea .titleBox .dceoBox .Discovery {
  position: absolute;
  top: -50px;
  left: -10px;
}
.aboutArea .titleBox .dceoBox .Hayata {
  position: absolute;
  bottom: -70px;
  right: 100px;
}
@media (max-width: 1080px) {
  .aboutArea .titleBox {
    display: none;
  }
}
.aboutArea .Txt {
  margin: 35px 20px 20px 20px;
  max-width: 450px;
}
@media (max-width: 1080px) {
  .aboutArea .Txt {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .aboutArea .Txt {
    margin: 30px auto;
  }
}
.aboutArea .Txt .subtitle {
  display: inline-block;
  position: relative;
  font-size: 17px;
  color: #043248;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 7.2px;
}
.aboutArea .Txt .subtitle::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  display: block;
  width: 100%;
  height: 15px;
  background: #e0ceb3;
}
.aboutArea .Txt .text {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 6.5px;
  color: #1c1c1c;
}
@media (max-width: 480px) {
  .aboutArea .Txt .text {
    text-align: left;
  }
}
@media (max-width: 1440px) {
  .aboutArea {
    background-position: 50% 25%;
    padding: 180px 0 50px;
  }
}
@media (max-width: 1366px) {
  .aboutArea .left {
    width: 60%;
  }
  .aboutArea .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 1080px) {
  .aboutArea {
    padding: 120px 0 120px;
  }
  .aboutArea .left, .aboutArea .right {
    max-width: 750px;
    width: 100%;
  }
  .aboutArea .btn {
    text-align: center;
    margin: 40px 0 0;
  }
}
@media (max-width: 640px) {
  .aboutArea {
    padding-top: 50px;
    padding-bottom: 250px;
  }
}

.roomArea {
  position: relative;
  z-index: 5;
  margin-top: -245px;
  padding: 100px 0 200px;
  background-image: url(../images/roombg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 10px;
  pointer-events: none;
}
@media (max-width: 1080px) {
  .roomArea {
    margin-top: -185px;
  }
}
@media (max-width: 640px) {
  .roomArea {
    margin-top: -245px;
    background-position: 100% 10px;
  }
}
.roomArea .seagull {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1366px) {
  .roomArea .seagull {
    width: 455px;
  }
}
@media (max-width: 1280px) {
  .roomArea .seagull {
    top: 50px;
  }
}
@media (max-width: 414px) {
  .roomArea .seagull {
    width: 300px;
  }
}
.roomArea .anchor {
  position: absolute;
  top: 400px;
  left: 16em;
}
@media (max-width: 1180px) {
  .roomArea .anchor {
    left: 150px;
  }
}
@media (max-width: 800px) {
  .roomArea .anchor {
    display: none;
  }
}
.roomArea .turtle {
  position: absolute;
  bottom: 80px;
  right: 0;
}
@media (max-width: 800px) {
  .roomArea .turtle {
    width: 180px;
  }
}
@media (max-width: 640px) {
  .roomArea .turtle {
    bottom: 120px;
  }
}
@media (max-width: 480px) {
  .roomArea .turtle {
    display: none;
  }
}
.roomArea .wrap {
  max-width: 1920px;
  padding: 160px 0 100px;
  pointer-events: auto;
}
.roomArea .titleBox .rooms {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 460px) {
  .roomArea .titleBox .rooms {
    width: 220px;
  }
}
@media (max-width: 414px) {
  .roomArea .titleBox .rooms {
    width: 180px;
    top: -30px;
  }
}
.roomArea .roomInfo {
  max-width: 585px;
  text-align: center;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.roomArea .roomInfo .subtitle {
  display: inline-block;
  position: relative;
  font-size: 17px;
  color: #043248;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 7.2px;
}
.roomArea .roomInfo .subtitle::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  display: block;
  width: 100%;
  height: 15px;
  background: #e0ceb3;
}
@media (max-width: 640px) {
  .roomArea .roomInfo {
    max-width: 500PX;
  }
}
.roomArea .roomBox {
  position: relative;
}
.roomArea .roomList {
  position: relative;
  z-index: 5;
  pointer-events: none;
}
.roomArea .roomList:not(.slick-slider) {
  position: relative;
}
.roomArea .roomList:not(.slick-slider) > div, .roomArea .roomList:not(.slick-slider) li {
  position: relative;
  z-index: 2;
}
.roomArea .roomList:not(.slick-slider) > div:not(:first-child), .roomArea .roomList:not(.slick-slider) li:not(:first-child) {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.roomArea .roomItem {
  padding: 0;
}
.roomArea .roomItem.slick-target .item, .roomArea .roomItem.slick-current .item {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.roomArea .roomItem.slick-target .Txt .titleEn, .roomArea .roomItem.slick-current .Txt .titleEn {
  opacity: 1;
}
.roomArea .roomItem.slick-target .tagList, .roomArea .roomItem.slick-current .tagList {
  opacity: 1;
}
.roomArea .item {
  position: relative;
  overflow: hidden;
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
.roomArea .Img {
  position: relative;
  width: 755px;
  pointer-events: auto;
}
@media (max-width: 1280px) {
  .roomArea .Img {
    width: 645px;
  }
}
@media (max-width: 1180px) {
  .roomArea .Img {
    width: 545px;
  }
}
@media (max-width: 1024px) {
  .roomArea .Img {
    width: 500px;
  }
}
@media (max-width: 768px) {
  .roomArea .Img {
    width: 450px;
  }
}
@media (max-width: 640px) {
  .roomArea .Img {
    width: 400px;
  }
}
@media (max-width: 414px) {
  .roomArea .Img {
    width: 280px;
  }
}
.roomArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.roomArea .classTitle {
  position: absolute;
  top: 20px;
  left: 25px;
  padding: 8px 35px;
  letter-spacing: 4.8px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .roomArea .classTitle {
    top: 10px;
    left: 10px;
  }
}
@media (max-width: 414px) {
  .roomArea .classTitle {
    font-size: 12px;
    padding: 8px 20px;
  }
}
.roomArea .Txt {
  background: #ffffff;
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 25px 100px;
  margin-top: -65px;
  width: 550px;
  -webkit-box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}
@media (max-width: 1180px) {
  .roomArea .Txt {
    width: 450px;
  }
}
@media (max-width: 768px) {
  .roomArea .Txt {
    width: 400px;
    padding: 25px;
  }
}
@media (max-width: 640px) {
  .roomArea .Txt {
    width: 350px;
  }
}
@media (max-width: 414px) {
  .roomArea .Txt {
    width: 230px;
    padding: 10px;
    margin-top: -30px;
  }
}
.roomArea .Txt .title {
  margin-bottom: 10px;
}
.roomArea .Txt .title a {
  font-size: 21px;
  font-weight: 700;
  color: #043248;
  letter-spacing: 5.8px;
}
@media (max-width: 414px) {
  .roomArea .Txt .title a {
    font-size: 15px;
  }
}
.roomArea .Txt .titleEn {
  font-size: 16px;
  font-weight: 300;
  font-family: Outfit;
  letter-spacing: 1.5px;
  color: #adadad;
  opacity: 0;
}
@media (max-width: 768px) {
  .roomArea .Txt .titleEn {
    font-size: 15px;
  }
}
@media (max-width: 414px) {
  .roomArea .Txt .titleEn {
    font-size: 12px;
  }
}
.roomArea .tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 640px) {
  .roomArea .tagList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 480px) {
  .roomArea .tagList {
    max-width: 300px;
  }
}
.roomArea .tagList .tagItem {
  width: 180px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #d2d2d2;
}
.roomArea .tagList .tagItem:last-of-type {
  border-right: transparent;
}
@media (max-width: 768px) {
  .roomArea .tagList .tagItem {
    width: 140px;
  }
}
@media (max-width: 640px) {
  .roomArea .tagList .tagItem {
    width: 105px;
    padding: 10px 15px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .roomArea .tagList .tagItem {
    border-right: 0;
  }
}
.roomArea .tagList .Img {
  width: 50px;
  margin-bottom: 10px;
}
.roomArea .tagList .Img img {
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .roomArea .tagList .Img {
    width: 40px;
  }
  .roomArea .tagList .Img img {
    height: 40px;
  }
}
.roomArea .tagList .tag {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2.8px;
  color: #043248;
}
@media (max-width: 414px) {
  .roomArea .tagList .tag {
    font-size: 13px;
  }
}
.roomArea .arrowBox {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 980px;
  padding: 0 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
@media (max-width: 1280px) {
  .roomArea .arrowBox {
    max-width: 840px;
  }
}
@media (max-width: 1180px) {
  .roomArea .arrowBox {
    max-width: 740px;
  }
}
@media (max-width: 768px) {
  .roomArea .arrowBox {
    max-width: 620px;
  }
}
@media (max-width: 640px) {
  .roomArea .arrowBox {
    top: initial;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .roomArea .arrowBox {
    bottom: 5em;
    padding: 0;
  }
}
.roomArea .arrowBox .arrow {
  position: relative;
  pointer-events: auto;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.roomArea .arrowBox .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -120px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 123px;
  height: 0.5px;
  background: #ab8e59;
}
@media (max-width: 640px) {
  .roomArea .arrowBox .arrow::before {
    display: none;
  }
}
.roomArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.roomArea .arrowBox .arrow .arrowicon {
  width: 10px;
  height: 15px;
}
.roomArea .arrowBox .arrow .circle {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: #ab8e59;
}
@media (max-width: 640px) {
  .roomArea .arrowBox .arrow .circle {
    display: none;
  }
}
.roomArea .arrowBox .arrowPrev {
  margin-right: auto;
}
.roomArea .arrowBox .arrowPrev .arrowicon {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.roomArea .arrowBox .arrowPrev::before {
  right: -120px;
  left: initial;
}
.roomArea .arrowBox .arrow.nonePrev {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.roomArea .arrowBox .arrow.noneNext {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.facArea {
  position: relative;
  z-index: 4;
  margin-top: -320px;
  padding: 200px 0 250px;
  background-image: url(../images/servicebg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 25%;
}
.facArea .wrap {
  position: relative;
  max-width: 1320px;
}
@media (max-width: 1280px) {
  .facArea .wrap {
    padding-left: 40px;
  }
}
@media (max-width: 1080px) {
  .facArea .wrap {
    padding: 0 20px;
  }
}
.facArea .titleBox {
  margin: 40px 0 70px;
}
.facArea .titleBox .Service {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 460px) {
  .facArea .titleBox .Service {
    width: 220px;
  }
}
@media (max-width: 414px) {
  .facArea .titleBox .Service {
    width: 180px;
    top: -30px;
  }
}
.facArea .facBox {
  position: relative;
}
.facArea .facBox::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -15px;
  bottom: -15px;
  display: block;
  height: 195px;
  width: 400px;
  background: #043248;
}
.facArea .facBox .dotsBox {
  display: none;
}
@media (max-width: 1080px) {
  .facArea .facBox::after {
    bottom: initial;
    width: 300px;
    top: 10em;
    left: calc(50% - 105px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .facArea .facBox .dotsBox {
    position: absolute;
    left: 50%;
    bottom: -120px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 6px;
    width: 100%;
    display: block;
  }
  .facArea .facBox .slick-dots {
    height: 6px;
    bottom: 0;
    margin: 0;
  }
  .facArea .facBox .slick-dots li {
    height: 100%;
    width: 6px;
    margin: 0 15px;
  }
  .facArea .facBox .slick-dots li button {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .facArea .facBox .slick-dots li button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 300%;
    height: 300%;
    border-radius: 50%;
    border: 1px solid #ab8e59;
    opacity: 0;
  }
  .facArea .facBox .slick-dots li button::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ab8e59;
    border: 1px solid #ab8e59;
    opacity: 1;
  }
  .facArea .facBox .slick-dots li.slick-active button::before {
    border: 1px solid #ab8e59;
    opacity: 1;
  }
  .facArea .facBox .slick-dots li.slick-active button::after {
    opacity: 1;
  }
}
@media (max-width: 640px) {
  .facArea .facBox::after {
    bottom: initial;
    width: 300px;
    top: 7em;
    left: calc(50% - 75px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .facArea .facBox::after {
    bottom: initial;
    width: 280px;
    top: 90px;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 460px) {
  .facArea .facBox::after {
    display: none;
  }
}
.facArea .facList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1080px) {
  .facArea .facList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.facArea .facList .Img {
  width: 55%;
  height: 465px;
}
.facArea .facList .Img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1280px) {
  .facArea .facList .Img {
    height: 420px;
  }
}
@media (max-width: 1080px) {
  .facArea .facList .Img {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    height: 320px;
  }
}
@media (max-width: 640px) {
  .facArea .facList .Img {
    max-width: 420px;
    height: initial;
    width: 100%;
    margin: 0 auto;
  }
}
.facArea .facList .Txt {
  width: 45%;
  text-align: center;
  padding: 0 40px;
}
.facArea .facList .Txt .title {
  margin: 25px 0;
}
.facArea .facList .Txt .title a {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: #043248;
  font-weight: 700;
  letter-spacing: 8.8px;
  padding: 0 15px;
}
.facArea .facList .Txt .title a::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 15px;
  background: #e0ceb3;
}
.facArea .facList .Txt .subtitle {
  display: inline-block;
  position: relative;
  font-size: 17px;
  color: #043248;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 7.2px;
}
.facArea .facList .Txt .text {
  margin-top: 0;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 5.8px;
  line-height: 1.8;
  height: 130px;
}
.facArea .facList .Txt .text .time {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: #043248;
  letter-spacing: 6.8px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .facArea .facList .Txt .text {
    text-align: left;
  }
}
@media (max-width: 1080px) {
  .facArea .facList .Txt {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
  }
  .facArea .facList .Txt .title {
    margin: 0 0 25px;
  }
}
@media (max-width: 640px) {
  .facArea .facList .Txt {
    padding: 40px 20px 0;
  }
  .facArea .facList .Txt .text .time {
    letter-spacing: 4.8px;
  }
}
@media (max-width: 480px) {
  .facArea .facList .Txt {
    padding: 40px 0 0;
  }
  .facArea .facList .Txt .text .time {
    font-size: 15px;
  }
}
.facArea .facthumbList {
  margin-top: 25px;
}
.facArea .facthumbBox {
  position: absolute;
  bottom: 112px;
  right: 60px;
  width: 38%;
  height: 205px;
  padding: 0 20px;
}
@media (max-width: 1280px) {
  .facArea .facthumbBox {
    bottom: 80px;
  }
}
@media (max-width: 1080px) {
  .facArea .facthumbBox {
    display: none;
  }
}
.facArea .facthumbBox .thumbItem {
  padding: 10px 0;
}
.facArea .facthumbBox .thumbItem.slick-current .Img::after, .facArea .facthumbBox .thumbItem.slick-current .Img::before {
  opacity: 1;
}
.facArea .facthumbBox .Img {
  position: relative;
  width: 200px;
  margin: 0 auto;
}
.facArea .facthumbBox .Img::before {
  content: "Explore";
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4, 50, 72, 0.65);
  color: #ffffff;
  text-align: center;
  font-family: Outfit;
  font-weight: 300;
  padding-top: 60px;
  pointer-events: none;
  opacity: 0;
}
.facArea .facthumbBox .Img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid #ab8e59;
  pointer-events: none;
  opacity: 0;
}
.facArea .facthumbBox .Img img {
  width: 100%;
  height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1280px) {
  .facArea .facthumbBox .Img {
    width: 150px;
  }
  .facArea .facthumbBox .Img::before {
    padding-top: 45px;
  }
  .facArea .facthumbBox .Img img {
    height: 100px;
  }
}
.facArea .facthumbBox .slick-dots {
  bottom: -14px;
  height: 6px;
  margin: 0;
}
.facArea .facthumbBox .slick-dots li {
  height: 100%;
  width: 6px;
  margin: 0 15px;
}
.facArea .facthumbBox .slick-dots li button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
}
.facArea .facthumbBox .slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300%;
  height: 300%;
  border-radius: 50%;
  border: 1px solid #ab8e59;
  opacity: 0;
}
.facArea .facthumbBox .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ab8e59;
  border: 1px solid #ab8e59;
  opacity: 1;
}
.facArea .facthumbBox .slick-dots li.slick-active button::before {
  border: 1px solid #ab8e59;
  opacity: 1;
}
.facArea .facthumbBox .slick-dots li.slick-active button::after {
  opacity: 1;
}
.facArea .arrowBox {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.facArea .arrowBox .arrow {
  position: relative;
  pointer-events: auto;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.facArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.facArea .arrowBox .arrow .arrowicon {
  width: 10px;
  height: 15px;
}
.facArea .arrowBox .arrow .circle {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: #ab8e59;
}
.facArea .arrowBox .arrowPrev {
  margin-right: auto;
}
.facArea .arrowBox .arrowPrev .arrowicon {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.facArea .arrowBox .arrowPrev::before {
  right: -120px;
  left: initial;
}
@media (max-width: 1280px) {
  .facArea .arrowBox {
    top: 45%;
    width: calc(100% + 10px);
  }
}
.facArea .hayata {
  margin-top: 85px;
  text-align: center;
}
.facArea .hayata a {
  background-color: #22b9d8;
}
.facArea .hayata a::after, .facArea .hayata a::before {
  background-color: #22b9d8;
}
.facArea .hayata a:hover {
  color: #22b9d8;
  border-top: 1px solid #22b9d8;
  border-bottom: 1px solid #22b9d8;
}
@media (max-width: 1080px) {
  .facArea .hayata {
    margin-top: 50px;
  }
  .facArea .hayata a {
    margin: 60px auto 10px;
  }
}
.facArea .crab {
  position: absolute;
  left: 140px;
  bottom: 260px;
}
@media (max-width: 1366px) {
  .facArea .crab {
    left: 50px;
    bottom: 200px;
  }
}
@media (max-width: 480px) {
  .facArea .crab {
    display: none;
  }
}
.facArea .star {
  position: absolute;
  bottom: 100px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 140px));
          transform: translateX(calc(-50% + 140px));
}
@media (max-width: 360px) {
  .facArea .star {
    -webkit-transform: none;
            transform: none;
  }
}

.newsArea {
  position: relative;
  z-index: 3;
  margin-top: -400px;
  padding: 200px 0 300px;
  background-image: url(../images/newsbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 25%;
}
.newsArea .wrap {
  margin-top: 140px;
  max-width: 1480px;
}
@media (max-width: 1180px) {
  .newsArea .wrap {
    padding: 0;
  }
}
.newsArea .titleBox {
  padding-top: 20px;
  margin-bottom: 50px;
}
.newsArea .titleBox .News {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 460px) {
  .newsArea .titleBox .News {
    width: 220px;
  }
}
@media (max-width: 414px) {
  .newsArea .titleBox .News {
    width: 180px;
    top: -30px;
  }
}
.newsArea .newsBox {
  position: relative;
  padding: 0 100px;
}
@media (max-width: 1180px) {
  .newsArea .newsBox {
    padding: 0;
  }
}
.newsArea .newsItem.slick-center .item {
  border: transparent;
  background: #fff;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media (max-width: 640px) {
  .newsArea .newsItem.slick-center .item {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.newsArea .newsItem:hover .title a::after {
  opacity: 1;
}
.newsArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #ab8e59;
  background: transparent;
  margin: 15px;
}
@media (max-width: 1024px) {
  .newsArea .item {
    max-width: 400px;
    margin: 15px auto;
  }
}
@media (max-width: 768px) {
  .newsArea .item {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .newsArea .item {
    max-width: 280px;
  }
}
.newsArea .Img {
  max-width: 365px;
  margin: 20px;
}
.newsArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  max-height: 225px;
}
@media (max-width: 1180px) {
  .newsArea .Img {
    max-width: 400px;
  }
}
@media (max-width: 1024px) {
  .newsArea .Img {
    max-width: 340px;
  }
}
.newsArea .Txt {
  position: relative;
  max-width: 365px;
  width: 100%;
  padding: 5px 20px 30px;
}
@media (max-width: 1024px) {
  .newsArea .Txt {
    max-width: 340px;
  }
}
@media (max-width: 640px) {
  .newsArea .Txt {
    padding: 5px 20px 15px;
  }
}
.newsArea .Txt .date {
  display: inline-block;
  font-size: 17px;
  font-family: Outfit;
  font-weight: 300;
  letter-spacing: 1.8px;
  color: #545454;
  padding-bottom: 8px;
}
@media (max-width: 640px) {
  .newsArea .Txt .date {
    letter-spacing: 1.2px;
  }
}
.newsArea .Txt .classTitle {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  padding: 8px 10px;
  margin-left: 15px;
  color: #ffffff;
  background: #ab8e59;
}
@media (max-width: 460px) {
  .newsArea .Txt .classTitle {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
.newsArea .Txt .title {
  margin: 20px 0;
  height: 65px;
}
.newsArea .Txt .title a {
  position: relative;
  display: inline;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 3.8px;
  line-height: 1.8;
  font-family: Outfit, "Noto Sans Tc";
  color: #000000;
  background: rgba(224, 206, 179, 0) no-repeat;
  background-size: 100% 2px;
  background-position: 0px 40px;
}
.newsArea .Txt .title a:hover {
  background: rgb(224, 206, 179) no-repeat;
}
@media (max-width: 1024px) {
  .newsArea .Txt .title .title {
    height: 95px;
  }
}
@media (max-width: 460px) {
  .newsArea .Txt .title {
    height: 80px;
  }
  .newsArea .Txt .title a {
    line-height: 1.5;
  }
}
.newsArea .dotsBox {
  display: none;
}
@media (max-width: 1180px) {
  .newsArea .dotsBox {
    position: absolute;
    left: 50%;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 6px;
    width: 100%;
    display: block;
  }
  .newsArea .dotsBox .slick-dots {
    height: 6px;
    bottom: 0;
    margin: 0;
  }
  .newsArea .dotsBox .slick-dots li {
    height: 100%;
    width: 6px;
    margin: 0 15px;
  }
  .newsArea .dotsBox .slick-dots li button {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .newsArea .dotsBox .slick-dots li button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 300%;
    height: 300%;
    border-radius: 50%;
    border: 1px solid #ab8e59;
    opacity: 0;
  }
  .newsArea .dotsBox .slick-dots li button::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ab8e59;
    border: 1px solid #ab8e59;
    opacity: 1;
  }
  .newsArea .dotsBox .slick-dots li.slick-active button::before {
    border: 1px solid #ab8e59;
    opacity: 1;
  }
  .newsArea .dotsBox .slick-dots li.slick-active button::after {
    opacity: 1;
  }
}
.newsArea .arrowBox {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.newsArea .arrowBox .arrow {
  position: relative;
  pointer-events: auto;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.newsArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.newsArea .arrowBox .arrow .arrowicon {
  width: 10px;
  height: 15px;
}
.newsArea .arrowBox .arrow .circle {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: #ab8e59;
}
.newsArea .arrowBox .arrowPrev {
  margin-right: auto;
}
.newsArea .arrowBox .arrowPrev .arrowicon {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.newsArea .arrowBox .arrowPrev::before {
  right: -120px;
  left: initial;
}
.newsArea .arrowBox .arrow.nonePrev {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.newsArea .arrowBox .arrow.noneNext {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
@media (max-width: 1180px) {
  .newsArea .arrowBox {
    display: none;
  }
}
.newsArea .hayata {
  text-align: center;
}
@media (max-width: 1180px) {
  .newsArea .hayata {
    margin-top: 80px;
  }
  .newsArea .hayata a {
    margin-top: 60px;
  }
}
.newsArea .hippocampus {
  position: absolute;
  right: 210px;
  top: 500px;
}
@media (max-width: 1366px) {
  .newsArea .hippocampus {
    right: 210px;
    top: 500px;
  }
}
@media (max-width: 480px) {
  .newsArea .hippocampus {
    display: none;
  }
}
.newsArea .plant {
  position: absolute;
  right: 70px;
  top: 400px;
}
@media (max-width: 1366px) {
  .newsArea .plant {
    right: 70px;
    top: 400px;
  }
}
@media (max-width: 640px) {
  .newsArea .plant {
    right: 70px;
    top: 500px;
  }
}
@media (max-width: 480px) {
  .newsArea .plant {
    display: none;
  }
}

.spotArea {
  position: relative;
  z-index: 2;
  margin: -250px 0 -200px;
  background-image: url(../images/spotbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 25%;
  overflow: hidden;
}
@media (max-width: 640px) {
  .spotArea {
    margin-bottom: 0;
  }
}
.spotArea .wrap {
  position: relative;
  z-index: 5;
  padding: 200px 0;
}
@media (max-width: 414px) {
  .spotArea .wrap {
    padding-top: 100px;
  }
}
.spotArea .spotBox {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin-left: auto;
}
@media (max-width: 1080px) {
  .spotArea .spotBox {
    padding: 0 20px;
  }
}
.spotArea .titleBox {
  position: absolute;
  top: 40px;
  right: 220px;
  width: 300px;
}
.spotArea .titleBox .dceoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.spotArea .titleBox .dceoBox .Our {
  position: absolute;
  top: -50px;
  left: 40px;
}
@media (max-width: 1680px) {
  .spotArea .titleBox .dceoBox .Our {
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 1080px) {
  .spotArea .titleBox .dceoBox .Our {
    left: -50px;
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 414px) {
  .spotArea .titleBox .dceoBox .Our {
    width: 120px;
    top: -30px;
    left: 30px;
  }
}
.spotArea .titleBox .dceoBox .Travel {
  position: absolute;
  bottom: -40px;
  right: -170px;
}
@media (max-width: 1680px) {
  .spotArea .titleBox .dceoBox .Travel {
    top: 10px;
    right: -170px;
  }
}
@media (max-width: 1440px) {
  .spotArea .titleBox .dceoBox .Travel {
    top: 10px;
    right: -120px;
  }
}
@media (max-width: 1080px) {
  .spotArea .titleBox .dceoBox .Travel {
    right: -60px;
  }
}
@media (max-width: 414px) {
  .spotArea .titleBox .dceoBox .Travel {
    width: 180px;
    right: -10px;
  }
}
@media (max-width: 360px) {
  .spotArea .titleBox .dceoBox .Travel {
    right: 10px;
  }
}
@media (max-width: 1680px) {
  .spotArea .titleBox {
    top: 0px;
  }
}
@media (max-width: 1440px) {
  .spotArea .titleBox {
    right: 160px;
  }
}
@media (max-width: 1080px) {
  .spotArea .titleBox {
    right: initial;
    top: initial;
    bottom: 350px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.spotArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1440px) {
  .spotArea .item {
    padding-right: 60px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1080px) {
  .spotArea .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
}
@media (max-width: 414px) {
  .spotArea .item {
    margin-top: 125px;
  }
}
.spotArea .Img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
}
@media (max-width: 1440px) {
  .spotArea .Img {
    max-width: 500px;
  }
}
@media (max-width: 1080px) {
  .spotArea .Img {
    max-width: 660px;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .spotArea .Img {
    margin-right: 0;
    padding-right: 10px;
    max-width: 500px;
  }
}
@media (max-width: 640px) {
  .spotArea .Img {
    margin-right: 0;
    max-width: 385px;
  }
}
@media (max-width: 414px) {
  .spotArea .Img {
    margin-right: 0;
    max-width: 285px;
  }
}
.spotArea .Img:after {
  content: "";
  position: absolute;
  z-index: 5;
  right: -15px;
  bottom: 0;
  display: block;
  width: 355px;
  height: 480px;
  border: 1px solid #ab8e59;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .spotArea .Img:after {
    width: 260px;
    height: 420px;
    bottom: initial;
    top: 70px;
    right: -15px;
  }
}
@media (max-width: 1080px) {
  .spotArea .Img:after {
    width: 350px;
    height: 485px;
    bottom: initial;
    top: 70px;
    right: -15px;
  }
}
@media (max-width: 800px) {
  .spotArea .Img:after {
    width: 255px;
    height: 360px;
    right: 0;
  }
}
@media (max-width: 640px) {
  .spotArea .Img:after {
    width: 235px;
    height: 330px;
  }
}
@media (max-width: 414px) {
  .spotArea .Img:after {
    width: 180px;
    height: 250px;
  }
}
.spotArea .Img .right {
  position: relative;
  z-index: 5;
  margin: 60px 0 0 -40px;
  width: 355px;
  height: 480px;
}
@media (max-width: 1440px) {
  .spotArea .Img .right {
    height: initial;
    max-height: 420px;
  }
}
@media (max-width: 1080px) {
  .spotArea .Img .right {
    max-height: 480px;
  }
}
@media (max-width: 800px) {
  .spotArea .Img .right {
    max-height: 450px;
  }
}
@media (max-width: 414px) {
  .spotArea .Img .right {
    max-height: 360px;
  }
}
.spotArea .Img .left {
  position: relative;
  width: 270px;
  height: 375px;
  margin-left: 80px;
}
@media (max-width: 1440px) {
  .spotArea .Img .left {
    height: initial;
    max-height: 300px;
  }
}
@media (max-width: 1080px) {
  .spotArea .Img .left {
    max-height: 375px;
  }
}
@media (max-width: 800px) {
  .spotArea .Img .left {
    max-height: 255px;
  }
}
@media (max-width: 640px) {
  .spotArea .Img .left {
    max-height: 245px;
    margin-left: 0;
  }
}
@media (max-width: 414px) {
  .spotArea .Img .left {
    max-height: 205px;
  }
}
.spotArea .Img .decoCircle {
  position: absolute;
  z-index: 5;
  bottom: -50px;
  left: -75px;
  -webkit-filter: drop-shadow(3.5px 3.5px 7px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(3.5px 3.5px 7px rgba(0, 0, 0, 0.3));
}
.spotArea .Img .decoCircle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  background: #ffffff;
  border-radius: 50%;
  width: 9px;
  height: 9px;
}
.spotArea .Img .decoCircle svg {
  width: 154px;
  height: 154px;
  -webkit-animation: rotate 15s cubic-bezier(0.37, 0, 0.63, 1) infinite;
          animation: rotate 15s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
@media (max-width: 1080px) {
  .spotArea .Img .decoCircle {
    bottom: -210px;
    left: 140px;
  }
}
@media (max-width: 800px) {
  .spotArea .Img .decoCircle {
    bottom: -80px;
    left: 40px;
  }
}
@media (max-width: 480px) {
  .spotArea .Img .decoCircle {
    bottom: -280px;
    left: 40px;
  }
}
@media (max-width: 414px) {
  .spotArea .Img .decoCircle {
    bottom: -80px;
    left: 0px;
  }
  .spotArea .Img .decoCircle svg {
    width: 90px;
    height: 90px;
  }
}
.spotArea .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.spotArea .Txt {
  margin: 135px 0 0 55px;
  padding-bottom: 100px;
}
@media (max-width: 1080px) {
  .spotArea .Txt {
    margin: 255px auto 0;
    padding-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .spotArea .Txt {
    margin: 285px auto 0;
  }
}
@media (max-width: 414px) {
  .spotArea .Txt {
    margin: 125px auto 0;
  }
}
.spotArea .Txt .title a {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 8.8px;
  color: #043248;
}
.spotArea .Txt .title a::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  display: block;
  width: 100%;
  height: 15px;
  background: #e0ceb3;
}
@media (max-width: 1080px) {
  .spotArea .Txt .title a::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.spotArea .Txt .text {
  max-width: 465px;
  width: 100%;
  margin-top: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 6.5px;
  height: 240px;
  color: #1c1c1c;
}
@media (max-width: 1440px) {
  .spotArea .Txt .text {
    max-width: 340px;
    height: 200px;
  }
}
@media (max-width: 1080px) {
  .spotArea .Txt .text {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .spotArea .Txt .text {
    text-align: left;
  }
}
.spotArea .hayata {
  position: absolute;
  right: 300px;
  bottom: 80px;
  margin: 0;
}
.spotArea .hayata a {
  display: block;
  width: 150px;
}
@media (max-width: 1440px) {
  .spotArea .hayata {
    right: 245px;
  }
}
@media (max-width: 1080px) {
  .spotArea .hayata {
    right: initial;
    left: 50%;
    bottom: -70px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.spotArea .arrowBox {
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 0 230px;
  pointer-events: none;
}
.spotArea .arrowBox .arrow {
  position: relative;
  pointer-events: auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.spotArea .arrowBox .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.spotArea .arrowBox .arrowPrev svg {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.spotArea .arrowBox .numerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto;
}
.spotArea .arrowBox .numerBox .slidePage {
  display: inline-block;
  font-family: Outfit;
  font-size: 16px;
  color: #b9b9b9;
  font-weight: 300;
}
.spotArea .arrowBox .numerBox .slidePage.current {
  font-size: 21px;
  letter-spacing: 12px;
  color: #545454;
}
.spotArea .arrowBox .numerBox .slidePage.current::after {
  content: "/";
  color: #545454;
}
@media (max-width: 1440px) {
  .spotArea .arrowBox {
    margin-left: 380px;
  }
}
@media (max-width: 1080px) {
  .spotArea .arrowBox {
    margin: 0 auto;
  }
}
.spotArea .mapBox {
  position: absolute;
  top: 0;
  left: -10em;
}
.spotArea .mapBox .mask {
  height: 915px;
  -webkit-mask-image: url(../images/mapMak.png);
          mask-image: url(../images/mapMak.png);
  -webkit-mask-size: 45%;
          mask-size: 45%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 1680px) {
  .spotArea .mapBox {
    left: -8rem;
  }
}
@media (max-width: 1080px) {
  .spotArea .mapBox {
    left: -12rem;
  }
  .spotArea .mapBox .mask {
    -webkit-mask-size: 44%;
            mask-size: 44%;
  }
}
@media (max-width: 800px) {
  .spotArea .mapBox {
    left: -15rem;
  }
  .spotArea .mapBox .mask {
    -webkit-mask-size: 40%;
            mask-size: 40%;
  }
}
@media (max-width: 640px) {
  .spotArea .mapBox .mask {
    -webkit-mask-size: 38%;
            mask-size: 38%;
  }
}
@media (max-width: 414px) {
  .spotArea .mapBox {
    left: -15rem;
  }
  .spotArea .mapBox .mask {
    -webkit-mask-size: 28%;
            mask-size: 28%;
  }
}
.spotArea .coral {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -20px;
}
@media (max-width: 1800px) {
  .spotArea .coral {
    width: 1000px;
    right: -5%;
  }
}
@media (max-width: 1280px) {
  .spotArea .coral {
    width: 1000px;
    right: -28%;
  }
}
@media (max-width: 1280px) {
  .spotArea .coral {
    display: none;
  }
}
.spotArea .fish {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1280px) {
  .spotArea .fish {
    -webkit-transform: translateX(calc(-50% + 150px));
            transform: translateX(calc(-50% + 150px));
  }
}