@charset "UTF-8";
.btn_01, #why .logo_area, .ttl_03, #adventure .points, #access, #why .sec_area .area_overview, #why ul.points {
  z-index: 2;
  position: relative;
}

#access {
  background-color: #fff;
}

/* Accordion styles for ski itinerary */
.day .acc_area {
  overflow: hidden;
  max-height: 0;
  transition: max-height 1s ease;
}
.day.open .acc_area {
  /* JS will set exact max-height inline for smooth expand, this is a fallback */
  max-height: 20000px;
}
.day .btn_open {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.25s ease;
}
.day .btn_open.open {
  transform: rotate(180deg);
}

/*/////////////////////////////
スムーズスクロール＋アニメーションスキーヤー
/////////////////////////////*/
#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}

#smooth-content {
  overflow: visible;
}

.animation-container {
  position: relative;
  overflow: hidden;
}
.animation-container .animation-line-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: 780px;
  height: 6369px;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.animation-container .animation-lain {
  position: absolute;
  width: 700px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  overflow: hidden;
}
.animation-container .animation-lain img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .animation-container .animation-lain {
    display: none;
  }
}
.animation-container .skin-icon-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}
@media screen and (max-width: 767px) {
  .animation-container .skin-icon-container {
    display: none;
  }
}
.animation-container .snow-splash {
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  filter: blur(1px);
}