@charset "utf-8";

* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hero {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  pointer-events: none;
}

.title {
  width: 50%;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  pointer-events: none;
}

.arrow-img {
  width: 50px;
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.title, .arrow-img {
  opacity: 0;
}

.title.is-show, .arrow-img.is-show {
  opacity: 1;
  transition: 2s;
}

.title.is-show {
  transition-delay: 2s;
}

.arrow-img.is-show {
  transition-delay: 6s;
}

.dots-wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.dots-wrap li {
  width: 12px;
  height: 12px;
  margin: 0 20px;
  background: #000;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeIn {
  0% {
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.dots-wrap li:nth-of-type(1).is-show {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}

.dots-wrap li:nth-of-type(2).is-show {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 4.1s;
}

.dots-wrap li:nth-of-type(3).is-show {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 4.2s;
}

.dots-wrap li:nth-of-type(4).is-show {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 4.3s;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #fff;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.slider {
  width: 100%;
  height: 100vh;
}

.slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


@keyframes fadezoom {
  0% {
    filter: brightness(0);
    transform: scale(1.1);
  }
  60% {
    filter: brightness(0.9);
  }
  90% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(0);
    transform: scale(1);
  }
}

.slick-animation {
  animation: fadezoom 7s forwards;
}

.img1, .img2, .img3, .img4 {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.img1 {
  background-image: url("../images/top_00.jpg");
}

.img2 {
  background-image: url("../images/top_01.jpg");
}

.img3 {
  background-image: url("../images/top_02.jpg");
}

.img4 {
  background-image: url("../images/top_03.jpg");
}

.spacer {
  height: 100vh;
}

.content {
  position: relative;
  z-index: 999;
}

.menu {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.menu-slider {
  width: 100%;
  padding: 30px;
}

.menu-slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-dots {
  display: flex;
  justify-content: center;
}

.menu-dots li {
  width: 10px;
  height: 10px;
  margin: 10px 15px 0;
  background: #707070;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.menu-dots li:hover,
.menu-dots li.slick-active {
  background: #000000;
}
.menu-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.access {
  padding: 50px;
  background-color: #323232;
  text-align: center
}

.access-logo {
  width: 50%;
  margin-bottom: 20px;
}

.access-text {
  color: #ffffff;
  font-weight: bold;
}

.access-text a {
  color: #ffffff;
  text-decoration: none;
}

.map {
  margin: 0;
  padding: 0;
  background-color: #323232;
}

.g-map {
  width: 100%;
  height: 300px;
}

footer {
  padding: 20px;
  background-color: #323232;
  text-align: center;
}

.insta {
  width: 30px;
  margin-bottom: 15px;
}

.copy {
  color: #ffffff;
  font-weight: bold;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 1000;
}

@media(min-width: 769px) {
  
  .title {
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .arrow-img {
    bottom: 30px;
  }
  
  .dots-wrap {
    bottom: 90px;
  }
  
  .access-logo {
    width: 250px;
  }
  
  .g-map {
    height: 500px;
  }
}


