@charset "UTF-8";
body {
  position: relative;
}

.loading {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 9999999;
  background-color: #FEFBF2;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.loading__wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.loading.active {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.loading.hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.loading .logo {
  max-width: 510px;
  padding-inline: 2rem;
  margin-block-end: 4rem;
}
.loading .animals {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  max-width: 900px;
  width: 100%;
  padding-inline: 2rem;
}
.loading .animals--item {
  display: flex;
  justify-content: center;
  gap: 5%;
  width: 24%;
  align-items: flex-end;
}
.loading .animals--item .track {
  width: 35%;
  padding-block-end: 0.5rem;
}
.loading .animals--item .item {
  width: 60%;
}
.loading .animals--item.iriomoteyamaneko {
  transform-origin: center bottom;
  animation: track_anime 2s steps(2, end) infinite;
}
.loading .animals--item.iriomoteyamaneko .item {
  width: 60%;
  transform-origin: center bottom;
  animation: iriomoteyamaneko_anime 1.5s steps(2, end) infinite;
}
.loading .animals--item.yanbarukuina {
  transform-origin: center bottom;
  animation: track_anime2 2s steps(2, end) infinite;
}
.loading .animals--item.yanbarukuina .item {
  width: 40%;
  transform-origin: center bottom;
  animation: yanbarukuina_anime 1.5s steps(2, end) infinite;
}
.loading .animals--item.amaminokurousagi {
  transform-origin: center bottom;
  animation: track_anime 2s steps(2, end) infinite;
}
.loading .animals--item.amaminokurousagi .item {
  width: 40%;
  transform-origin: center bottom;
  animation: iriomoteyamaneko_anime 1.5s steps(2, end) infinite;
}
.loading .animals--item.rurikakesu {
  transform-origin: center bottom;
  animation: track_anime2 2s steps(2, end) infinite;
}
.loading .animals--item.rurikakesu .item {
  width: 60%;
  transform-origin: center bottom;
  animation: yanbarukuina_anime 1.5s steps(2, end) infinite;
}

@keyframes iriomoteyamaneko_anime {
  0% {
    transform: rotate(5deg) translateY(0);
  }
  100% {
    transform: rotate(-5deg) translateY(3px);
  }
}
@keyframes yanbarukuina_anime {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes track_anime {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes track_anime2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
.--digest {
  background-color: #B0854E;
}

.--amami {
  background-color: #5297D2;
}

.--tokunoshima {
  background-color: #7A2476;
}

.--yanbaru {
  background-color: #CB8739;
}

.--iriomote {
  background-color: #569147;
}

@media only screen and (min-width: 1000px) {
  .splide.pc {
    display: block;
  }
  .splide.sp {
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  .splide.pc {
    display: none;
  }
  .splide.sp {
    display: block;
  }
}
.mv__index {
  display: grid;
}
@media only screen and (min-width: 1000px) {
  .mv__index {
    grid-template-columns: 6rem 1fr;
    grid-template-rows: 1fr;
  }
}
@media only screen and (max-width: 999px) {
  .mv__index {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 120px;
  }
}
.mv__index .main__slider {
  position: relative;
}
@media only screen and (min-width: 1000px) {
  .mv__index .main__slider {
    width: 100%;
    aspect-ratio: 16/9;
    min-width: 0;
  }
}
@media only screen and (max-width: 999px) {
  .mv__index .main__slider {
    width: 100vw;
    height: 132vw;
  }
}
@media only screen and (min-width: 1000px) {
  .mv__index .sub__slider {
    grid-area: 1/1/2/2;
    width: 100%;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 999px) {
  .mv__index .sub__slider {
    grid-area: 2/1/3/2;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.mv__index .splide__contents--inner .text {
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}
.mv__index .splide__contents--inner h3 {
  font-size: 2rem;
  font-family: var(--mincho);
  line-height: 1.4;
  margin-block-end: 2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}
.mv__index .splide__contents--inner h3 span {
  letter-spacing: 0;
}
.mv__index .btn {
  display: block;
  padding-block-start: 2rem;
}
.mv__index .btn .modal--trigger {
  padding: 0.8rem;
  font-size: 0.8rem;
  color: #fff;
  width: 260px;
  display: inline-block;
  letter-spacing: 0.25em;
  position: relative;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}
.mv__index .btn .modal--trigger:after {
  content: "";
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  margin-inline-end: 1rem;
  display: inline-block;
}
.mv__index .btn .modal--trigger:hover {
  opacity: 0.6;
}
.mv__index #main__slider--pc .splide__slide {
  height: 100%;
  width: 100% !important;
  aspect-ratio: 16/9;
}
.mv__index #main__slider__text .splide__slide .splide__contents--inner,
.mv__index #main__slider__text--pc .splide__slide .splide__contents--inner {
  width: 100%;
  height: 100%;
  padding: 2rem min(5vw, 6rem);
  box-sizing: border-box;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.55);
  line-height: 2.2;
  z-index: 1;
  font-size: 0.75rem;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
}
.mv__index #main__slider__text .splide__slide .splide__contents--inner .map,
.mv__index #main__slider__text--pc .splide__slide .splide__contents--inner .map {
  width: 50%;
  max-width: 600px;
}
.mv__index #main__slider__text .splide__slide .splide__contents--inner .text,
.mv__index #main__slider__text--pc .splide__slide .splide__contents--inner .text {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.823rem + 0.2vw, 1rem);
}
.mv__index #main__slider__text .splide__slide .splide__contents--inner h3,
.mv__index #main__slider__text--pc .splide__slide .splide__contents--inner h3 {
  font-size: 2.5rem;
}
.mv__index #main__slider__text .splide__slide .splide__contents--inner .btn .modal--trigger,
.mv__index #main__slider__text--pc .splide__slide .splide__contents--inner .btn .modal--trigger {
  margin-inline-start: 0;
}
.mv__index #main__slider__text .splide__slide .splide__slide__container iframe,
.mv__index #main__slider__text--pc .splide__slide .splide__slide__container iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mv__index #main__slider__text--pc {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
}
.mv__index #main__slider__text {
  pointer-events: none;
}
.mv__index #main__slider--sp .splide__slide {
  position: relative;
}
.mv__index #main__slider--sp .splide__slide .splide__contents--inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  line-height: 2.2;
  z-index: 1;
  font-size: 0.75rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.mv__index #main__slider--sp .splide__slide .splide__contents--inner h3 {
  text-align: center;
}

#thumb__slider--pc .splide__list, #thumb__slider--sp .splide__list {
  height: auto;
  justify-content: space-between;
}
@media only screen and (min-width: 1000px) {
  #thumb__slider--pc .splide__track, #thumb__slider--sp .splide__track {
    height: auto !important;
  }
}
#thumb__slider--pc .splide__slide, #thumb__slider--sp .splide__slide {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  height: max(100px, 14%);
  height: 6rem;
  border: none !important;
}
@media only screen and (min-width: 1000px) {
  #thumb__slider--pc .splide__slide, #thumb__slider--sp .splide__slide {
    height: 5.5rem;
  }
}
@media only screen and (min-width: 1000px) {
  #thumb__slider--pc .splide__slide:not(:first-child), #thumb__slider--sp .splide__slide:not(:first-child) {
    margin-block-start: 1rem;
  }
}
#thumb__slider--pc .splide__slide .splide__slide__container, #thumb__slider--sp .splide__slide .splide__slide__container {
  border-radius: 7vw;
  overflow: hidden;
  height: min(4rem, 5vw) !important;
  aspect-ratio: 1/1;
  position: relative;
}
@media only screen and (max-width: 999px) {
  #thumb__slider--pc .splide__slide .splide__slide__container, #thumb__slider--sp .splide__slide .splide__slide__container {
    border-radius: 7vw;
    overflow: hidden;
    height: 3rem !important;
    width: 3rem;
    position: relative;
  }
}
#thumb__slider--pc .splide__slide .thumb_txt, #thumb__slider--sp .splide__slide .thumb_txt {
  font-family: var(--mincho);
  text-align: center;
  color: #fff;
  font-weight: 600;
}
@media only screen and (min-width: 1000px) {
  #thumb__slider--pc .splide__slide .thumb_txt, #thumb__slider--sp .splide__slide .thumb_txt {
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
  }
}
@media only screen and (max-width: 999px) {
  #thumb__slider--pc .splide__slide .thumb_txt, #thumb__slider--sp .splide__slide .thumb_txt {
    font-size: 0.65rem;
    letter-spacing: 0;
  }
}
#thumb__slider--pc .is-active .splide__slide__container:before, #thumb__slider--sp .is-active .splide__slide__container:before {
  content: "";
  border: 2.5px solid #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4rem;
}

/* モーダル */
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal__container {
  padding: 1rem;
  max-width: 960px;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-block-end: 1rem;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__close:before {
  content: "✕";
  background-color: #fff;
  border-radius: 4rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__content {
  aspect-ratio: 16/9;
}

.modal__container iframe {
  width: 100%;
  height: 100%;
}

/**************************\
  Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}