/* ----------------

Theme Name: かつやまディノパーク

---------------- */
.top-section__wrap {
  max-width: 116rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.top-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 4rem;
  background-image: url("./img/heading-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2rem 12%;
}

#top-gallery .top-title {
  padding-top: 0;
  padding-bottom: 0;
  background-image: none;
}

.top-title h2 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 3.2rem;
}

.top-title__text {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}

.top-title h2::before {
  content: "";
  display: inline-block;
  width: 7rem;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-title h2.top-title__gallery::before {
  background-image: url("./img/heading-icon-gallery.webp");
}

.top-title h2.top-title__imformation::before {
  background-image: url("./img/heading-icon-information.webp");
}

.top-title h2.top-title__attraction::before {
  background-image: url("./img/heading-icon-attraction.webp");
}

.top-title span {
  font-size: 1.8rem;
}

.top-title__btn {
  display: block;
  max-width: 12rem;
  overflow: hidden;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

.top-title__btn img {
  width: 100%;
  transition-duration: 0.4s;
  transition-property: opacity;
  transition-timing-function: ease;
  opacity: 1;
}

@media (any-hover: hover) {
  .top-title__btn:hover {
    border-radius: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .top-title {
    padding: 1rem 2rem;
    margin: 0 -2rem 4rem;
  }

  .top-title__text {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-title span {
    padding-left: 5.5rem;
    font-size: 1.2rem;
    margin-top: -2rem;
  }

  .top-title h2 {
    font-size: 1.8rem;
    align-items: flex-start;
  }

  .top-title h2::before {
    width: 4rem;
  }

  .top-title__btn {
    max-width: 9rem;
  }
}

.top-mv__slider__list.swiper-wrapper {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

.top-mv__slider__list .swiper-slide {
  aspect-ratio: 1920 / 1120;
}

.top-mv__slider__list .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-mv__slider .swiper-button-next,
.top-mv__slider .swiper-button-prev {
  color: #37432d;
  width: 8rem;
  height: 8rem;
  background-color: #221815;
  border: solid 0.2rem #221815;
  border-radius: 50%;
  transition: 0.4s;
  cursor: pointer;
}

.top-mv__slider .swiper-button-next::after,
.top-mv__slider .swiper-button-prev::after {
  font-size: 2.4rem;
  color: #fff;
}

@media (any-hover: hover) {
  .top-mv__slider .swiper-button-next:hover,
  .top-mv__slider .swiper-button-prev:hover {
    background-color: #fff;
  }

  .top-mv__slider .swiper-button-next:hover::after,
  .top-mv__slider .swiper-button-prev:hover::after {
    color: #221815;
  }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
  .top-mv__slider__list .swiper-slide {
    aspect-ratio: 750 / 1100;
  }
  .top-mv__slider .swiper-button-next,
  .top-mv__slider .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }

  .top-mv__slider .swiper-button-next::after,
  .top-mv__slider .swiper-button-prev::after {
    font-size: 1.4rem;
  }
}

.top-nav {
  background-image: url("./img/top-nav-bg.webp");
  background-size: cover;
  background-position: top;
  overflow-x: auto;
  box-shadow: 0.4rem 4rem 2.4rem rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 3;
  /*スクロールバー非表示（IE・Edge）*/
  /* -ms-overflow-style: none; */
  /*スクロールバー非表示（Firefox）*/
  /* scrollbar-width: none; */
}

.top-nav::-webkit-scrollbar {
  /*スクロールバー非表示（Chrome・Safari）*/
  /* display: none; */
}

.top-nav__list {
  display: flex;
  justify-content: center;
  width: 120rem;
  padding: 1rem;
  margin: 0 auto;
}

.top-nav__item {
  width: calc(100% / 7);
  padding: 0 0.2rem;
  text-align: center;
  border-right: solid 2px #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-nav__item:first-of-type {
  border-left: solid 2px #fff;
}

.top-nav__item > a {
  position: relative;
  display: block;
  font-weight: 600;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease-in-out;
  padding: 1rem 0;
}

.top-nav__item > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}

.top-nav__item > a > span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

@media (any-hover: hover) {
  .top-nav__item > a:hover::before {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top-nav {
    display: none;
  }
}

#top-about {
  position: relative;
  padding: 10rem 0 6rem;
}

.top-about__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #000000;
  overflow: clip;
}

.top-about__bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("./img/about-bg-leftwall-pc.webp");
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.top-about__bg.is-active::before {
  animation-name: wall-left-animation;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes wall-left-animation {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.top-about__bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("./img/about-bg-rightwall-pc.webp");
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.top-about__bg.is-active::after {
  animation-name: wall-right-animation;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes wall-right-animation {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.top-about-T-Rex {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("./img/about-T-Rex-pc.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}

.top-about__bg.is-active .top-about-T-Rex {
  animation-name: T-Rex-animation;
  animation-duration: 4.2s;
  animation-timing-function: ease-in-out;
  /* animation-iteration-count: infinite; */
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes T-Rex-animation {
  0% {
    transform: translate(50%, 50%) scale(0.8);
    opacity: 0.4;
  }

  15% {
    transform: translate(25%, 30%) rotate(-10deg) scale(0.8);
    opacity: 0.4;
  }

  50% {
    transform: translate(10%, 35%) rotate(-15deg) scale(0.8);
    opacity: 0.4;
  }

  60% {
    transform: translate(0, 0) rotate(0) scale(1);
    opacity: 1;
  }

  65% {
    transform: translate(0, 0) rotate(-2deg) scale(1.1);
    opacity: 1;
  }

  70% {
    transform: translate(3%, 3%) rotate(2deg) scale(1.05);
    opacity: 1;
  }

  75% {
    transform: translate(0, 0) rotate(-2deg) scale(1.1);
    opacity: 1;
  }

  80% {
    transform: translate(-3%, -3%) rotate(2deg) scale(1.05);
    opacity: 1;
  }

  85% {
    transform: translate(0) rotate(0) scale(1.05);
    opacity: 1;
  }

  100% {
    transform: translate(0) rotate(0);
    opacity: 0.6;
  }
}

.top-about__wrap {
  position: relative;
  max-width: 100rem;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
}

.top-about__title {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-bottom: 4rem;
  font-size: 4.2rem;
  color: #e3ce00;
}

.top-about__title::before,
.top-about__title::after {
  content: "";
  display: inline-block;
  width: 1px;
  background-color: #e3ce00;
}

.top-about__subtitle {
  max-width: 90rem;
  margin: 0 auto 4rem;
}

.top-about__subtitle img {
  width: 100%;
}

.top-about__discription {
  margin-bottom: 4rem;
}

.top-about__time-list {
  width: fit-content;
  margin: 0 auto;
  padding: 1.5rem;
  border: solid 1px #fff;
}

.top-about__time-list dt {
  font-size: 1.4rem;
}

.top-about__time-list dd span {
  font-size: 3rem;
  padding: 0 0.5rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #top-about {
    padding: 6rem 0;
  }

  .top-about__bg {
  }

  .top-about__bg::before {
    background-image: url("./img/about-bg-leftwall-sp.webp");
    background-position: left bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .top-about__bg::after {
    background-image: url("./img/about-bg-rightwall-sp.webp");
    background-position: right bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .top-about-T-Rex {
    background-image: url("./img/about-T-Rex-sp.webp");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
  }

  .top-about__title {
    gap: 3rem;
    font-size: 2.2rem;
  }

  .top-about__discription > p {
    font-size: 1.4rem;
  }
}

#top-gallery {
  padding-top: 4rem;
  padding-bottom: 10rem;
  background-image: url("./img/gallery-bg.jpg");
  background-position: top;
  background-size: cover;
}

#top-gallery .gallery__wrap {
  max-width: 100rem;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.top-gallery__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6rem;
  row-gap: 6rem;
  max-width: 97rem;
  margin: 0 auto;
}

.top-gallery__item {
  background-image: url("./img/gallery-item-bg-frame-pc.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - (6rem * 2)) / 3);
  padding: 4rem;
}

.top-gallery__img figure {
  display: block;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 200 / 240;
}

.top-gallery__img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

@media (any-hover: hover) {
  .top-gallery__img figure:hover img {
    scale: 1.1;
    transform: rotate(2.5deg);
  }
}

@media screen and (max-width: 768px) {
  .top-gallery__list {
    background-image: url("./img/gallery-item-bg-frame-sp.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 600 / 690;
    column-gap: 1rem;
    row-gap: 1rem;
    padding: 3.5rem 1.5rem;
  }

  .top-gallery__item {
    background-image: none;
    width: calc((100% - (1rem * 2)) / 3);
    padding: 0;
  }

  .top-gallery__img figure {
    aspect-ratio: 170 / 170;
  }
}

#top-imformation {
  padding: 5rem 0 10rem;
  background-image: url("./img/information-bg.jpg");
  background-size: cover;
  background-position: top;
}

#top-imformation .section__wrap {
  position: relative;
}

.top-imformation__list {
  max-width: 97rem;
  margin: 0 auto;
}

.top-imformation__list > li {
  position: relative;
  margin-bottom: 4rem;
}

.top-imformation__list > li::before,
.top-imformation__list > li::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.3rem;
}

.top-imformation__list > li::before {
  width: 100%;
  background-color: #fff;
}

.top-imformation__list > li::after {
  width: 0;
  background-color: #f18d00;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.top-imformation__list > li:last-of-type {
  margin-bottom: 0;
}

.top-imformation__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 3.5rem;
}

.top-imformation__list > li > a::before,
.top-imformation__list > li > a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.4rem;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 1.6rem;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.top-imformation__list > li > a::before {
  transform: translateY(calc(-50% - 0.4rem)) rotate(45deg);
}

.top-imformation__list > li > a::after {
  transform: translateY(calc(-50% + 0.4rem)) rotate(-45deg);
}

.top-imformation__list > li > a time {
  font-size: 1.4rem;
}

.top-imformation__list > li > a h3 {
  font-size: 1.8rem;
  font-weight: 400;
}

@media (any-hover: hover) {
  .top-imformation__list > li:hover::after {
    width: 100%;
  }

  .top-imformation__list > li > a:hover::before,
  .top-imformation__list > li > a:hover::after {
    background-color: #f18d00;
  }
}

@media screen and (max-width: 768px) {
  .top-imformation__list > li {
    margin-bottom: 2rem;
  }

  .top-imformation__list > li > a {
    display: block;
  }

  .top-imformation__list > li > a time {
    color: #ffe100;
  }
}

#top-attraction {
}

.top-attraction-map__bg {
  padding: 5rem 0 10rem;
  background-image: url("./img/attraction-bg.jpg");
  background-size: cover;
  background-position: top;
}

.top-attraction-map {
  max-width: 97rem;
  margin: 0 auto;
}

.top-attraction-map__btn {
  display: block;
  width: 36rem;
  margin: 0 auto 4rem;
}

.top-attraction-map__area {
  background-image: url("./img/attraction-map.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1026 / 662;
}

.top-attraction-map__area__list {
  position: relative;
  height: 100%;
}

.top-attraction-map__area__list > li {
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
}

.top-attraction-map__area__list > li > a {
  display: inline-block;
}

.top-attraction-map__area__list > li.dinosaur-forest {
  position: absolute;
  top: 27.19%;
  left: 20.46%;
  width: 18.03%;
}

.top-attraction-map__area__list > li.gaogao {
  position: absolute;
  top: 26.43%;
  left: 46.29%;
  width: 18.03%;
}

.top-attraction-map__area__list > li.dinosaur-labyrinth {
  position: absolute;
  top: 30.21%;
  left: 68.22%;
  width: 16.56%;
}

.top-attraction-map__area__list > li.insect-tour {
  position: absolute;
  top: 61.93%;
  left: 56.53%;
  width: 16.56%;
}

.top-attraction-area__list {
  overflow-x: clip;
}

.top-attraction-area__list > li {
  padding: 8rem 2rem;
  background-size: cover;
  background-position: top;
  position: sticky;
  top: 0;
}

.top-attraction-area__list > li:last-of-type {
  padding: 8rem 2rem 12rem;
}

.top-attraction-area__list > li.dinosaur-forest {
  background-image: url("./img/attraction-area__dinosaur-forest-bg.jpg");
}

.top-attraction-area__list > li.insect-tour {
  background-image: url("./img/attraction-area__insect-tour-bg.jpg");
}

.top-attraction-area__list > li.gaogao {
  background-image: url("./img/attraction-area__gaogao-bg.jpg");
}

.top-attraction-area__list > li.gaogao {
  background-image: url("./img/attraction-area__gaogao-bg.jpg");
}

.top-attraction-area__list > li.dinosaur-labyrinth {
  background-image: url("./img/attraction-area__dinosaur-labyrinth-bg.jpg");
}

.top-attraction-area__list > li.shop {
  background-image: url("./img/attraction-area__shop-bg.jpg");
}

.top-attraction-area__content {
  max-width: 97rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

.top-attraction-area__list
  > li:nth-of-type(even)
  .top-attraction-area__content {
  flex-direction: row-reverse;
}

.top-attraction-area__content__text {
  position: relative;
  width: 50%;
  padding: 4rem 2rem;
  z-index: 2;
}

.top-attraction-area__content__text::before {
  content: "";
  position: absolute;
  top: 0;
  display: inline-block;
  width: calc(50vw - 100%);
  height: 100%;
  right: 100%;
}

.top-attraction-area__list
  > li:nth-of-type(even)
  .top-attraction-area__content__text::before {
  right: auto;
  left: 100%;
  width: calc(50vw - 100%);
}

.dinosaur-forest .top-attraction-area__content__text,
.dinosaur-forest .top-attraction-area__content__text::before {
  background-color: rgba(35, 50, 45, 0.8);
}

.insect-tour .top-attraction-area__content__text,
.insect-tour .top-attraction-area__content__text::before {
  background-color: rgba(64, 34, 15, 0.8);
}

.gaogao .top-attraction-area__content__text,
.gaogao .top-attraction-area__content__text::before {
  background-color: rgba(35, 50, 45, 0.8);
}

.dinosaur-labyrinth .top-attraction-area__content__text,
.dinosaur-labyrinth .top-attraction-area__content__text::before {
  background-color: rgba(64, 34, 15, 0.8);
}

.shop .top-attraction-area__content__text,
.shop .top-attraction-area__content__text::before {
  background-color: rgba(7, 51, 36, 0.8);
}

.top-attraction-area__content__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.top-attraction-area__content__title h3 {
  font-size: 2.8rem;
}

.top-attraction-area__content__title--attention {
  font-size: 2.8rem;
  display: block;
  color: #fff100;
  border: solid 1px #fff100;
  padding: 1rem;
  margin-bottom: 2rem;
}

.top-attraction-area__content__text h4 {
  font-size: 2rem;
  color: #d4ac5a;
}

.top-attraction-area__content__text--attention {
  font-size: 1.4rem;
  display: block;
  color: #fff100;
}

.top-attraction-area__content__img {
  width: calc(50% + 4rem);
  border: solid 0.2rem #fff;
  display: inline-block;
  margin-top: 12rem;
  margin-left: -4rem;
}

.top-attraction-area__content__img img {
  width: 100%;
}

.top-attraction-area__list
  > li:nth-of-type(even)
  .top-attraction-area__content__img {
  margin-left: 0;
  margin-right: -4rem;
}

@media (any-hover: hover) {
  .top-attraction-map__area__list > li:hover {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@media screen and (max-width: 768px) {
  .top-attraction-map__btn {
    width: 24rem;
  }

  .top-attraction-map__content {
    margin-right: -2rem;
    margin-left: -2rem;
    padding: 0 2rem;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
  }

  .top-attraction-map__content::-webkit-scrollbar {
    /*スクロールバー非表示（Chrome・Safari）*/
    display: none;
  }

  .top-attraction-map__area {
    min-width: 60rem;
  }

  .top-attraction-area__list > li {
    position: static;
    display: block;
    height: auto;
  }

  .top-attraction-area__content {
    flex-direction: column;
    align-items: center;
  }

  .top-attraction-area__list
    > li:nth-of-type(even)
    .top-attraction-area__content {
    flex-direction: column;
  }

  .top-attraction-area__content__text,
  .top-attraction-area__content__title {
    display: contents;
    width: 100%;
    padding: 0;
  }

  .top-attraction-area__content__title h3 {
    order: -1;
    margin-bottom: 2rem;
  }

  .top-attraction-area__content__text h4 {
    order: -1;
    text-align: center;
  }

  .top-attraction-area__content__text p {
    order: -1;
  }

  .top-attraction-area__content__text--attention {
    order: -1;
  }

  .dinosaur-forest .top-attraction-area__content__text,
  .dinosaur-forest .top-attraction-area__content__text::before {
    background-color: transparent;
  }

  .insect-tour .top-attraction-area__content__text,
  .insect-tour .top-attraction-area__content__text::before {
    background-color: transparent;
  }

  .gaogao .top-attraction-area__content__text,
  .gaogao .top-attraction-area__content__text::before {
    background-color: transparent;
  }

  .dinosaur-labyrinth .top-attraction-area__content__text,
  .dinosaur-labyrinth .top-attraction-area__content__text::before {
    background-color: transparent;
  }

  .top-attraction-area__content__img {
    margin-top: 4rem;
    width: 100%;
  }
}

/* ----------------

  恐竜の住む森

---------------- */

#dinosaur-forest-mv {
  background-image: url("./img/dinosaur-forest/mv-bg.jpg");
  background-position: top;
  background-size: cover;
  padding: 8rem 0;
}

.dinosaur-forest-mv__wrap {
  padding: 0 2rem;
  max-width: 88rem;
  margin: 0 auto;
}

.dinosaur-forest__title {
  text-align: center;
}

.dinosaur-forest__title h1 {
  background-image: url("./img/dinosaur-forest/mv-text-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: fit-content;
  margin: 0 auto;
  padding: 1.5rem 7rem;
  font-size: 5rem;
}

.dinosaur-forest__discription {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
  max-width: 73rem;
  margin: 0 auto;
}

.dinosaur-forest__discription > p {
  font-size: 2.6rem;
  font-weight: 600;
  padding-left: 2rem;
  border-left: solid 1px #d4ac5a;
  color: #d4ac5a;
  line-height: 1.4;
}

.dinosaur-forest__discription figure {
  width: 10rem;
}

.dinosaur-forest__map-area__content {
  margin-right: -2rem;
  margin-left: -2rem;
  padding: 0 2rem;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dinosaur-forest__map-area {
  aspect-ratio: 858 / 554;
  background-image: url("./img/dinosaur-forest/map_image.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.dinosaur-forest__map-area__list {
  position: relative;
  width: 100%;
  height: 100%;
}

.dinosaur-forest__map-area__list > li {
  position: absolute;
  aspect-ratio: 1 / 1;
  width: 13.98%;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
}

.dinosaur-forest__map-area__list > li a {
  display: block;
}

.dinosaur-forest__map-area__list > li a img {
  width: 100%;
  height: 100%;
}

.dinosaur-forest__map-area__list > li.zone01 {
  top: 50.54%;
  left: 20.39%;
}

.dinosaur-forest__map-area__list > li.zone02 {
  top: 39.71%;
  left: 4.66%;
}

.dinosaur-forest__map-area__list > li.zone03 {
  top: 13.53%;
  left: 30.88%;
}

.dinosaur-forest__map-area__list > li.zone04 {
  top: 9.02%;
  left: 46.62%;
}

.dinosaur-forest__map-area__list > li.zone05 {
  top: 10.83%;
  left: 64.1%;
}

.dinosaur-forest__map-area__list > li.zone06 {
  top: 36.1%;
  left: 69.34%;
}

.dinosaur-forest__map-area__list > li.zone07 {
  top: 32.49%;
  left: 53.03%;
}

.dinosaur-forest__map-area__list > li.zone08 {
  top: 45.95%;
  left: 38.46%;
}

.dinosaur-forest__map-area__list > li.zone09 {
  top: 51.47%;
  left: 81%;
}

.dinosaur-forest-zone__list > li {
  position: sticky;
  top: 0;
  background-position: top;
  background-size: cover;
}

.dinosaur-forest-zone__list > li.zone01 {
  background-image: url("./img/dinosaur-forest/zone01-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone02 {
  background-image: url("./img/dinosaur-forest/zone02-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone03 {
  background-image: url("./img/dinosaur-forest/zone03-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone04 {
  background-image: url("./img/dinosaur-forest/zone04-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone05 {
  background-image: url("./img/dinosaur-forest/zone05-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone06 {
  background-image: url("./img/dinosaur-forest/zone06-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone07 {
  background-image: url("./img/dinosaur-forest/zone07-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone08 {
  background-image: url("./img/dinosaur-forest/zone08-bg.jpg");
}

.dinosaur-forest-zone__list > li.zone09 {
  background-image: url("./img/dinosaur-forest/zone09-bg.jpg");
}

.dinosaur-forest-zone__list > li:last-of-type {
  padding-bottom: 8rem;
}

.dinosaur-forest-zone__item-wrap {
  padding: 4rem 2rem;
  max-width: 65rem;
  margin: 0 auto;
}

.dinosaur-forest-zone__name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(0%, 48rem, 100%);
  min-width: fit-content;
  margin: 0 auto 4rem;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
}

.dinosaur-forest-zone__name h2 {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  padding: 0 2rem;
}

.dinosaur-forest-zone__number {
  padding: 0 3rem;
  font-size: 2rem;
  border-right: solid 1px #fff;
}

.dinosaur-forest-zone__number > span {
  font-size: 3rem;
  margin-left: 1rem;
}

.dinosaur-forest-zone__content {
  display: flex;
  gap: 6rem;
  margin-bottom: 1rem;
}

.dinosaur-forest-zone__text h3 {
  font-size: 2.2rem;
  color: #d4ac5a;
}

.dinosaur-forest-zone__icon {
  min-width: 10rem;
  max-width: 10rem;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease-in-out;
  transform: rotateY(360deg);
}

.dinosaur-forest-zone__dinosaur-img {
  text-align: center;
}

.dinosaur-forest-zone__dinosaur-img img {
  max-height: 25rem;
}

.zone09 .dinosaur-forest-zone__content {
  display: contents;
  text-align: center;
}

.zone09 .dinosaur-forest-zone__text h3 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.zone09 .dinosaur-forest-zone__text h4 {
  text-align: center;
  color: #fff100;
}

@media (any-hover: hover) {
  .dinosaur-forest__map-area__list > li:hover {
    transform: scale(1.05);
    opacity: 0.8;
  }

  .dinosaur-forest-zone__icon:hover {
    transform: rotateY(0);
    opacity: 0.8;
  }
}

@media screen and (max-width: 768px) {
  .dinosaur-forest__title h1 {
    font-size: 3rem;
  }

  .dinosaur-forest__discription {
    flex-direction: column;
  }

  .dinosaur-forest__discription > p {
    font-size: 2.1rem;
    text-align: center;
  }

  .dinosaur-forest__discription figure {
    margin-bottom: 1.5rem;
  }

  .dinosaur-forest__map-area {
    min-width: 60rem;
  }

  .dinosaur-forest-zone__list > li {
    position: static;
  }

  .dinosaur-forest-zone__item-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .dinosaur-forest-zone__name {
    display: block;
    width: calc(100% - 10rem - 2rem);
    min-width: auto;
    margin: 0 0 4rem;
    border-left: none;
    border-right: none;
    order: 0;
  }

  .dinosaur-forest-zone__name h2 {
    padding: 0;
    text-align: left;
  }

  .dinosaur-forest-zone__number {
    padding: 0;
    border-right: none;
  }

  .dinosaur-forest-zone__content {
    display: contents;
  }

  .dinosaur-forest-zone__text {
    order: 2;
  }

  .dinosaur-forest-zone__icon {
    order: 1;
    margin-left: 2rem;
    margin-bottom: 4rem;
  }

  .dinosaur-forest-zone__dinosaur-img {
    order: 3;
    width: 100%;
  }

  .zone09 .dinosaur-forest-zone__content {
    text-align: left;
  }
}

/* ----------------

  ガオガオ広場

---------------- */

#gaogao-mv {
  padding: 8rem 0;
  background-image: url("./img/gaogao/mv-bg.jpg");
  background-size: cover;
  background-position: top;
}

.gaogao-mv__wrap {
  padding: 0 2rem;
  max-width: 88rem;
  margin: 0 auto;
}

.gaogao-mv__title {
  margin-bottom: 4rem;
}

.gaogao-mv__title h1 {
  width: fit-content;
  margin: 0 auto;
  padding: 1.5rem;
  border: solid 1px #fff;
  border-radius: 1.6rem;
  font-size: 5rem;
}

.gaogao-mv__discription {
  text-align: center;
  padding: 1rem 4rem;
  font-size: 2.4rem;
  width: fit-content;
  margin: 0 auto;
  border-left: solid 0.2rem #fff;
  border-right: solid 0.2rem #fff;
}

.gaogao-mv__discription > h2 {
  margin-bottom: 1rem;
}

.gaogao-mv__discription > p {
  margin: 0;
}

.gaogao-area__list > li {
  padding: 4rem 0;
  background-size: cover;
  background-position: top;
  overflow-x: clip;
}

.gaogao-area__list > li:last-of-type {
  padding: 4rem 0 8rem;
}

.gaogao-area__list > li#train {
  background-image: url("./img/gaogao/mv-bg.jpg");
  background-position: center -2rem;
}

.gaogao-area__list > li#walk {
  background-image: url("./img/gaogao/park2-bg.jpg");
}

.gaogao-area__list > li#ride {
  background-image: url("./img/gaogao/park3-bg.jpg");
}

.gaogao-area__list > li#boat {
  background-image: url("./img/gaogao/park4-bg.jpg");
}

.gaogao-area__list > li#golf {
  background-image: url("./img/gaogao/park5-bg.jpg");
}

.gaogao-area__item__wrap {
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 76rem;
}

.gaogao-area__item__name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(0%, 48rem, 100%);
  min-width: fit-content;
  margin: 0 auto 4rem;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
}

.gaogao-area__item__name h2 {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  padding: 0 2rem;
}

.gaogao-area__item__name span {
  display: inline-block;
  padding: 0 1rem;
  font-size: 2rem;
  width: clamp(0%, 17rem, 100%);
  text-align: center;
  border-right: solid 1px #fff;
  min-width: fit-content;
}

.gaogao-area__item__content {
  display: flex;
  align-items: flex-end;
  column-gap: 6rem;
}

.gaogao-area__list > li:nth-child(even) .gaogao-area__item__content {
  flex-direction: row-reverse;
}

.gaogao-area__item__content--text {
  width: calc(100% - 6rem - 32rem);
}

.gaogao-area__item__content--text > p {
  font-size: 1.4rem;
}

.gaogao-area__item-table {
  position: relative;
  padding: 4.5rem 0 8rem;
  width: 100%;
}

.gaogao-area__item-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4rem;
  display: inline-block;
  background-image: url("./img/gaogao/zigzag.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8rem 2rem;
  width: 100vw;
  height: 2rem;
}

.gaogao-area__item-table::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: -4rem;
  display: inline-block;
  background-color: #759853;
  width: 100vw;
  height: calc(100% - 2rem);
}

.gaogao-area__list > li:nth-child(even) .gaogao-area__item-table::before,
.gaogao-area__list > li:nth-child(even) .gaogao-area__item-table::after {
  left: auto;
  right: -4rem;
  background-position: right bottom;
}

.gaogao-area__item-table table {
  width: 100%;
}

.gaogao-area__item-table table,
.gaogao-area__item-table td,
.gaogao-area__item-table th {
  position: relative;
  z-index: 2;
  border-collapse: collapse;
  border: 1px solid #fff;
}

.gaogao-area__item-table td,
.gaogao-area__item-table th {
  padding: 0.5rem;
}

.gaogao-area__item-table .price-tr th {
  text-align: center;
  width: 100%;
}

.gaogao-area__item-table .price-tr td {
  text-align: center;
  min-width: 10rem;
}

.gaogao-area__item-table .note {
  color: #ffe100;
}

.gaogao-area__item__content--img {
  width: 32rem;
  aspect-ratio: 32 / 28;
  position: relative;
  z-index: 2;
  margin-bottom: 8rem;
  min-height: 0; /* flex内でaspect-ratioがを反省するために追加 */
}

.gaogao-area__item__content--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #gaogao-mv {
    padding: 4rem 0;
  }

  .gaogao-mv__title h1 {
    font-size: 3rem;
  }

  .gaogao-mv__discription {
    font-size: 1.6rem;
    padding: 0;
    border-left: none;
    border-right: none;
  }

  .gaogao-area__list > li#train {
    background-image: url("./img/gaogao/park1-bg.jpg");
    background-position: top;
  }

  .gaogao-area__item__name {
    row-gap: 1.6rem;
    flex-direction: column;
    border-left: none;
    border-right: none;
  }

  .gaogao-area__item__name h2 {
    padding: 0;
  }

  .gaogao-area__item__name span {
    padding: 1rem;
    border-right: none;
    border-radius: 1.6rem;
    border: solid 1px #fff;
  }

  .gaogao-area__item__content {
    flex-direction: column;
    align-items: center;
  }

  .gaogao-area__list > li:nth-child(even) .gaogao-area__item__content {
    flex-direction: column;
  }

  .gaogao-area__item__content--text {
    width: 100%;
    display: contents;
  }

  .gaogao-area__item-table {
    position: relative;
    padding: 4.5rem 0 4rem;
    order: 4;
  }

  .gaogao-area__item-table::before {
    left: 50%;
    transform: translateX(-50%);
    background-size: 4rem 1rem;
  }

  .gaogao-area__item-table::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .gaogao-area__list > li:nth-child(even) .gaogao-area__item-table::before,
  .gaogao-area__list > li:nth-child(even) .gaogao-area__item-table::after {
    right: 50%;
    transform: translateX(50%);
  }

  .gaogao-area__item__content--img {
    width: 100%;
    aspect-ratio: 32 / 24;
    margin-bottom: 2rem;
  }

  .gaogao-area__item__content--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ----------------

  下層ページ共通

---------------- */

#page-title {
  background-image: url("./img/page-title-bg.jpg");
  background-size: cover;
  background-position: top;
  text-align: center;
  padding: 2rem;
}

#page-title h1 {
  font-size: 3rem;
}

.page-content__bg {
  position: relative;
  background-image: url("./img/page-main-bg.webp");
  background-position: top;
  color: #69412b;
  overflow-x: clip;
}

.page-content__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1.5rem;
  background-image: url("./img/page-main-bg-shadow.png");
  background-position: top;
  background-size: cover;
}

.page-content__wrap {
  max-width: 84rem;
  margin: 0 auto;
  padding: 6rem 2rem 12rem;
}

/* ----------------

  お知らせ一覧

---------------- */
.page-imformation__list {
}

.page-imformation__list > li {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: solid 0.2rem #69412b;
}

.page-imformation__list > li a {
  position: relative;
  display: block;
  padding: 2rem 4rem 2rem 2rem;
  border-radius: 0.8rem;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  transition-property: all;
}

.page-imformation__list > li a::before,
.page-imformation__list > li a::after {
  content: "";
  position: absolute;
  right: 2rem;
  display: inline-block;
  width: 2rem;
  height: 0.4rem;
  background-color: #69412b;
  border-radius: 0.8rem;
}

.page-imformation__list > li a::before {
  top: calc(50% - 0.6rem);
  transform: translateY(-50%) rotate(45deg);
}

.page-imformation__list > li a::after {
  top: calc(50% + 0.6rem);
  transform: translateY(-50%) rotate(-45deg);
}

.page-imformation__list > li time {
  display: inline-block;
  color: #ea5504;
  margin-bottom: 0.5rem;
}

.page-imformation__list > li h2 {
  font-size: 1.6rem;
  color: #69412b;
}

@media (any-hover: hover) {
  .page-imformation__list > li a:hover {
    background-color: rgba(234, 85, 4, 0.3);
  }
}

/* ----------------

  ページャー

---------------- */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

a.page-numbers {
  background-color: #fff;
  color: #ea5504;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  transition-duration: 0.4s;
  transition-property: opacity;
  transition-timing-function: ease;
}

.page-numbers.current {
  background-color: #ea5504;
  color: #fff;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
}

.prev.page-numbers,
.next.page-numbers {
  position: relative;
  background-color: transparent;
}

.pager__prev-arrow,
.pager__next-arrow {
  width: 1.2rem;
  aspect-ratio: 1 / 1;
  border-top: solid 0.2rem #ea5504;
  border-right: solid 0.2rem #ea5504;
}

.pager__prev-arrow {
  transform: rotate(-135deg);
}

.pager__next-arrow {
  transform: rotate(45deg);
}

@media (any-hover: hover) {
  a.page-numbers:hover {
    opacity: 0.4;
  }
}

/* ----------------

  詳細ページ

---------------- */

.single-page__content {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 4rem 2rem;
  color: #221815;
  margin-bottom: 4rem;
}

.single-page__content > time {
  color: #ea5504;
  margin-bottom: 0.5rem;
}

.single-page__content > h1 {
  color: #69412b;
  margin-bottom: 4rem;
  font-size: 3rem;
}

.single-page__backbtn {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #693332;
  border: solid 1px #693332;
  border-radius: 0.8rem;
  padding: 0.8rem 6.4rem 0.8rem 8rem;
  font-size: 2rem;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

.single-page__backbtn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.8rem);
  transform: translateY(-50%);
  left: 2.4rem;
  width: 1.6rem;
  aspect-ratio: 1 / 1;
  border-top: solid 0.2rem #fff;
  border-left: solid 0.2rem #fff;
  transform: rotate(-45deg);
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: ease;
}

.single-pege__inner a {
  color: #bf974d;
  text-decoration: underline;
}

.single-pege__inner a:hover {
  text-decoration: none;
}

.single-pege__inner h2,
.single-pege__inner h3 {
  margin: 4rem 0 2.4rem;
}

.single-pege__inner ul.wp-block-list {
  padding-left: 2.4rem;
  list-style: disc;
}

.single-pege__inner ul.wp-block-list > li {
  margin-bottom: 1.6rem;
}

.single-pege__inner ol.wp-block-list {
  padding-left: 2.4rem;
  list-style: decimal;
}

.single-pege__inner ol.wp-block-list > li {
  margin-bottom: 1.6rem;
}

@media (any-hover: hover) {
  .single-page__backbtn:hover {
    background-color: #fff;
    color: #693332;
  }

  .single-page__backbtn:hover::before {
    border-top: solid 0.2rem #693332;
    border-left: solid 0.2rem #693332;
  }
}

/* ----------------

  フォトギャラリー 一覧

---------------- */

.page-gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.page-gallery__item {
  width: calc((100% - 2rem * 3) / 4);
}

.page-gallery__img figure {
  aspect-ratio: 180 / 160;
  border-radius: 0.8rem;
  overflow: hidden;
  position: relative;
}

.page-gallery__img figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition-duration: 0.4s;
  transition-property: all;
}

@media (any-hover) {
  .page-gallery__img figure img:hover {
    scale: 1.1;
    transform: rotate(2.5deg);
  }
}

.page-gallery__img figure img:hover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .page-gallery__item {
    width: calc((100% - 2rem * 1) / 2);
  }

  .page-gallery__img figure {
    aspect-ratio: 150 / 110;
  }
}

/* ----------------

  アクセス

---------------- */
#page-access__info {
  margin-bottom: 6rem;
}

#page-access__info h2 {
  font-size: 4rem;
  background-color: #ea5504;
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.page-access__info--map {
  max-width: 72rem;
  margin: 0 auto 8rem;
  border-radius: 1rem;
  overflow: hidden;
}

.page-access__info--map img {
  width: 100%;
}

#page-access address {
  text-align: center;
  margin-bottom: 8rem;
}

.page-access__info--gmap {
  aspect-ratio: 8 / 6;
}

.page-access__info--gmap iframe {
  aspect-ratio: 8 / 6;
  width: 100%;
  height: 100%;
}

.page-access__route__list > li {
  background-color: #fff;
}

.page-access__route__list > li h2 {
  font-size: 2rem;
  background-color: #eeaa3d;
  padding: 1rem;
  text-align: center;
}

.page-access__route__from {
  padding: 2rem 8rem;
}

.page-access__route__from dt {
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  #page-access__info h2 {
    font-size: 2.4rem;
  }

  .page-access__info--map {
    margin: 0 auto 2rem;
  }

  #page-access address {
    margin-bottom: 4rem;
  }

  #page-access address > span {
    display: block;
  }

  .page-access__route__list > li {
    background-color: transparent;
    border: solid 1px #69412b;
    margin-bottom: 3rem;
  }

  .page-access__route__list > li:last-of-type {
    margin-bottom: 0;
  }

  .page-access__route__list > li h2 {
    font-size: 1.8rem;
    background-color: #69412b;
    color: #fff;
  }

  .page-access__route__from {
    padding: 2rem;
  }

  .page-access__route__from dt {
    font-size: 1.6rem;
  }

  .page-access__route__from dd {
    font-size: 1.4rem;
  }
}

/* ----------------

  営業案内・料金

---------------- */
#page-price-table h2 {
  display: flex;
  align-items: center;
  column-gap: 6rem;
  margin-bottom: 4rem;
}

#page-price-table h2 span {
  font-size: 2.6rem;
  color: #69412b;
  min-width: fit-content;
}

#page-price-table h2::before,
#page-price-table h2::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.5rem;
  background-color: #69412b;
}

.business-hour__list {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.business-hour__item {
  text-align: center;
  width: 100%;
  min-width: 50%;
  border: solid 1px #9b7341;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.business-hour__item:nth-child(2) {
  border-left: none;
}

.business-hour__item--title {
  background-color: #d4ac5a;
  padding: 1rem;
  border-bottom: solid 1px #9b7341;
  font-size: 2.1rem;
  margin: 0;
  font-weight: 600;
  height: 5.5rem;
}

.business-hour__item dd {
  padding: 2rem;
  border-left: none;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.business-hour__item:first-child dd {
  padding: 4rem 2rem;
}

.business-hour__item--time {
  font-size: 3.4rem;
}

.business-hour__item--note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 1.2rem;
  background-color: #ea5504;
  color: #fff;
  margin: 0;
  padding: 1rem;
}

.business-hour__attraction__list {
  width: fit-content;
  text-align: left;
  margin: 0 auto;
}

.business-hour__attraction__list > li {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.business-hour__attraction__list > li::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #69412b;
  border-radius: 50%;
}

.anchor__colendar-bottom {
  display: block;
  width: 22.5rem;
  margin: 0 auto 8rem;
}

#price-dinosaur-forest,
#price-insect-tour,
#price-gaogao {
  margin-bottom: 6rem;
}

#page-price-table h3 {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 4rem;
}

#page-price-table #price-dinosaur-forest h3 {
  background-color: #483d2f;
}

.price-dinosaur-forest__title {
  display: flex;
  flex-direction: column;
}

.price-dinosaur-forest--note {
  background-color: #ea5504;
  color: #fff;
  padding: 0.4rem 1.2rem;
  text-align: center;
  border-radius: 0.4rem;
  margin-top: 0;
  margin-bottom: 4rem;
}

#page-price-table #price-insect-tour h3 {
  background-color: #073324;
}

#page-price-table #price-gaogao h3 {
  background-color: #687012;
}

.price-table {
  background-color: #fff;
}

.price-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto 40px;
  background-color: #fff;
}

.price-table th,
.price-table td {
  border: 1px solid #9b7341;
  padding: 1rem 2.5rem;
  vertical-align: middle;
}

.price-table th {
  font-weight: 600;
}

.price-table .bg-color01 {
  background-color: #d4ac5a;
  min-width: 6.5rem;
}

.price-table .bg-color02 {
  background-color: #f3deb9;
}

.price-table .bg-color03 {
  background-color: #f8ecbd;
}

.price-table .price-table--note {
  color: #ea5504;
}

.price-table .price-table--note__list > li {
  position: relative;
  padding-left: 2rem;
}

.price-table .price-table--note__list > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.price-table__title {
  font-size: 2.4rem;
}

.price-table__title > span {
  display: block;
  font-size: 1.8rem;
}

.calendar__wrap {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.calendar__slider {
  max-width: 98rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.calendar__slider-button {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.calendar__slider-button--prev,
.calendar__slider-button--next {
  display: inline-block;
  justify-content: center;
  color: #fff;
  background-color: #ea5504;
  padding: 0.5rem 2.5rem;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
  opacity: 1;
}

.calendar__slider-button--prev::before {
  content: "◀︎ 前月";
  display: inline-block;
}

.calendar__slider-button--next::before {
  content: "翌月 ▶︎";
  display: inline-block;
}

.calendar__slider-button .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}

.calendar {
  border-collapse: collapse;
  width: 100%;
}

.calendar caption {
  font-weight: 600;
  padding: 0.5rem;
  background-color: #69412b;
  color: #fff;
}
.calendar caption > span {
  margin-left: 0.4rem;
  font-size: 2.4rem;
}

.calendar th,
.calendar td {
  width: calc(100% / 7);
  border: 1px solid #ccc;
  padding: 0.5rem 0.5rem 0;
  text-align: center;
  background-color: #fff;
  position: relative;
  font-weight: 600;
}

.calendar th.sun,
.calendar .sun .day {
  color: #ec6d7b;
}

.calendar th.sat,
.calendar .sat .day {
  color: #22749e;
}

.calendar .day {
  display: block;
  text-align: center;
  font-size: 1.8rem;
}

.calendar .today {
  background: #ff0;
}

.calendar .holiday .day {
  color: #ec6d7b;
}

.calendar .close {
  display: inline-block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/information/icon-calendar-close.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  #page-price-table h2 {
    column-gap: 1rem;
  }

  #page-price-table h2 span {
    font-size: 2.1rem;
  }

  #page-price-table h2::before,
  #page-price-table h2::after {
    height: 0.1rem;
  }

  .business-hour__list {
    flex-direction: column;
    row-gap: 4rem;
  }

  .business-hour__item:nth-child(2) {
    border: solid 1px #9b7341;
  }

  .business-hour__item--note {
    font-size: 1rem;
  }

  #page-price-table h3 {
    font-size: 1.8rem;
  }

  .price-dinosaur-forest__title {
    flex-direction: column-reverse;
  }

  .price-dinosaur-forest--note {
    background-color: #fff;
    border: solid 1px #ea5504;
    color: #ea5504;
    font-size: 1.4rem;
  }

  .price-table {
    font-size: 1.4rem;
  }

  .price-table th,
  .price-table td {
    padding: 1rem;
  }

  .price-table__title {
    font-size: 1.8rem;
  }

  .price-table__title > span {
    font-size: 1.4rem;
  }

  #page-price-table #price-dinosaur-forest .bg-color03 {
    color: #fff;
    background-color: #69412b;
  }

  #page-price-table #price-insect-tour .bg-color01 {
    background-color: #b9bca5;
  }

  #page-price-table #price-gaogao .bg-color01 {
    background-color: #b4c28a;
  }

  .calendar__wrap {
    margin: 0;
    width: 100%;
  }

  .calendar__slider {
    padding: 0;
  }

  .calendar__slider-button--prev,
  .calendar__slider-button--next {
    position: relative;
    width: 4rem;
    height: 4rem;
    background-color: #69402b;
    padding: 0;
  }

  .calendar__slider-button--prev::before,
  .calendar__slider-button--prev::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5rem);
    left: calc(50% - 0.1rem);
    display: inline-block;
    width: 1.5rem;
    height: 0.2rem;
    border-radius: 0.2rem;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .calendar__slider-button--prev::after {
    top: calc(50% + 0.5rem);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .calendar__slider-button--next::before,
  .calendar__slider-button--next::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5rem);
    left: calc(50% + 0.1rem);
    display: inline-block;
    width: 1.5rem;
    height: 0.2rem;
    border-radius: 0.2rem;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .calendar__slider-button--next::after {
    top: calc(50% + 0.5rem);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ----------------

  営業案内・料金

---------------- */

#faq h2 {
  margin-bottom: 4rem;
  font-size: 3rem;
}

.faq__list {
  margin-bottom: 8rem;
}

.faq__list:last-of-type {
  margin-bottom: 0;
}

.faq__item {
  position: relative;
  background-color: #fff;
  margin-bottom: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
}

.faq__item.is-active {
  border-radius: 0;
}

.faq__item:last-of-type {
  margin-bottom: 0;
}

.faq__item dt {
  position: relative;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-size: 2.2rem;
  font-weight: 600;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
  z-index: 2;
  cursor: pointer;
}

.faq__item.is-active dt {
  background-color: #e7bd85;
}

.faq__item dt::before {
  content: "Q";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7bc86;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  min-height: 4rem;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 600;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
}

.faq__item.is-active dt::before {
  color: #e7bc86;
  background-color: #fff;
}

.faq__item--cross {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.faq__item--cross::before,
.faq__item--cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  background-color: #69402b;
  width: 100%;
  height: 0.4rem;
  border-radius: 1rem;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
}

.faq__item.is-active .faq__item--cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq__item--cross::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-active .faq__item--cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq__item dd {
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  display: flex;
  column-gap: 2rem;
  visibility: hidden;
  max-height: 0;
  height: 0;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
  margin-top: -3rem;
}

.faq__item.is-active dd {
  margin-top: 0;
  visibility: visible;
  max-height: 100%;
  height: auto;
  opacity: 1;
}

.faq__item dd::before {
  content: "A";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7bc86;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  min-height: 4rem;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 600;
}

.faq__item dd > p {
  margin: 0.6rem 0;
}

.faq__item dd a {
  color: #693332;
}

@media screen and (max-width: 768px) {
  #faq h2 {
    font-size: 1.8rem;
  }

  .faq__item dt {
    column-gap: 2rem;
    font-size: 1.6rem;
  }

  .faq__item dt::before {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    font-size: 1.6rem;
  }

  .faq__item--cross {
    width: 1.5rem;
    height: 1.5rem;
    right: 1.5rem;
  }

  .faq__item--cross::before,
  .faq__item--cross::after {
    height: 0.2rem;
  }

  .faq__item dd {
    font-size: 1.4rem;
  }

  .faq__item dd::before {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    font-size: 1.6rem;
  }

  .faq__item dd > p {
    margin: 0;
  }
}

/* ----------------

  お問い合わせ

---------------- */

.page-contact__info__item {
  margin-bottom: 8rem;
}

.page-contact__info__item:last-of-type {
  margin-bottom: 0;
}

.page-contact__info__item > h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.page-contact__info__content {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  text-align: center;
}

.page-contact__info__content--link {
  font-size: 3rem;
  font-weight: 700;
  color: #69412b;
}

.page-contact__info__content p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .page-contact__info__item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }

  .page-contact__info__item > h2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .page-contact__info__item > h2::before {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 3rem;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .tel.page-contact__info__item > h2::before {
    background-image: url("./img/contact/icon-smartphone.png");
  }

  .mail.page-contact__info__item > h2::before {
    background-image: url("./img/contact/icon-mail.png");
  }

  .page-contact__info__content {
    padding: 0;
  }

  .page-contact__info__content--link {
    font-size: 2rem;
  }

  .page-contact__info__content--note {
    display: block;
  }

  .mail .page-contact__info__content--note {
    color: #ea5504;
    display: block;
  }
}

/* ----------------

  巨大昆虫冒険ツアー

---------------- */
#insect-tour-mv {
  position: relative;
  padding: 8rem 0 16rem;
  background-image: url("./img/insect-tour/mv-bg-pc.jpg");
  background-size: cover;
  background-position: top;
}

#insect-tour-mv::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("./img/insect-tour/section-shadow.png");
  background-position: top;
  background-repeat: repeat-x;
}

.insect-tour-mv__wrap {
  padding: 0 2rem;
  max-width: 92rem;
  margin: 0 auto;
}

.insect-tour-mv__inner {
  padding: 0 2rem;
  text-align: center;
}

.insect-tour-mv__title {
  margin-bottom: 6rem;
}

.insect-tour-mv__renewal {
  margin-bottom: 2.4rem;
}

.insect-tour-mv__heading {
  margin-bottom: 6rem;
}

.insect-tour-mv__discription {
  font-size: 3rem;
  font-weight: 600;
  padding: 2.4rem;
  border-top: solid 0.3rem #fff;
  border-bottom: solid 0.3rem #fff;
}

.insect-tour-mv__time-list {
  width: fit-content;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  border: solid 1px #fff;
}

.insect-tour-mv__time-list dd span {
  font-size: 3rem;
  padding: 0 0.5rem;
  line-height: 1.4;
  font-weight: 600;
}

#insect-tour-map {
  overflow-x: auto;
}

.insect-tour-map__bg {
  position: relative;
  padding: 8rem 0;
  background-image: url("./img/insect-tour/map-bg-pc.jpg");
  background-size: cover;
  background-position: bottom;
  min-height: 84rem;
}

.insect-tour-map__bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("./img/insect-tour/section-shadow.png");
  background-position: top;
  background-repeat: repeat-x;
}

.insect-tour-map__wrap {
  padding: 0 2rem;
  max-width: 92rem;
  margin: 0 auto;
}

.insect-tour-map__text {
  display: flex;
  column-gap: 1.6rem;
  max-width: 100%;
  width: calc(100vw - 4rem);
}

.insect-tour-info__wrap {
  padding: 0 2rem;
  max-width: 92rem;
  margin: 0 auto;
}

#insect-tour-info {
  position: relative;
}

#insect-tour-info::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("./img/insect-tour/section-shadow.png");
  background-position: top;
  background-repeat: repeat-x;
  z-index: 3;
}

.insect-tour-info__title {
  position: relative;
  padding: 8rem 0;
  z-index: 2;
}

.insect-tour-info__title::before {
  content: "";
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("./img/insect-tour/info-title-bg.jpg");
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}

.insect-tour-info__title h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.insect-tour-info__title p {
  padding-top: 4rem;
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  border-top: solid 0.3rem #fff;
  margin-bottom: 0;
}

.insect-tour-info__list {
}

.insect-tour-info__item {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: bottom;
}

.insect-tour-info__item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("./img/insect-tour/section-shadow.png");
  background-position: top;
  background-repeat: repeat-x;
}

.insect-tour-info__item:nth-of-type(odd) {
  background-image: url("./img/insect-tour/info-item-bg01-pc.jpg");
}

.insect-tour-info__item:nth-of-type(even) {
  background-image: url("./img/insect-tour/info-item-bg02-pc.jpg");
}

.insect-tour-info__item__wrap {
  padding: 0 2rem;
  max-width: 92rem;
  margin: 0 auto;
}

.insect-tour-info__item__text {
  position: relative;
}

.insect-tour-info__item:nth-of-type(odd) .insect-tour-info__item__text {
  padding-left: 34rem;
}

.insect-tour-info__item__text > h3 {
  font-size: 5rem;
  color: #e3ce00;
  margin-bottom: 3rem;
}

.insect-tour-info__item__text > h4 {
  font-size: 2.6rem;
  color: #e3ce00;
}

.insect-tour-info__item__text > p {
  margin-bottom: 4rem;
}

.insect-tour-info__item__text__list {
}

.insect-tour-info__item__text__list > div {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.insect-tour-info__item__text__list > div dt {
  border: solid 1px #fff;
  border-radius: 0.8rem;
  padding: 0.2rem 0.4rem;
  width: 24rem;
  text-align: center;
}

.insect-tour-info__item__text__list > div:first-of-type dt {
  background-color: #e3ce00;
  color: #073324;
  border: none;
}

.insect-tour-info__item__text__list > div:first-of-type dd {
  color: #e3ce00;
}

.insect-tour-info__item__text__list > div dd {
  font-size: 2rem;
}

.insect-tour-info__item__text__list > div dd > span {
  font-size: 3rem;
  line-height: 1;
}

#kamakiri .insect-tour-info__item__img {
  margin-top: -18rem;
}

#kuwagata .insect-tour-info__item__img {
  margin-top: -6rem;
}

#kabutomushi .insect-tour-info__item__img {
  margin-top: -4rem;
}

#funkorogashi .insect-tour-info__item__img {
  margin-top: -4rem;
}

#tonosamagaeru .insect-tour-info__item__img {
  margin-top: -2rem;
}

.insect-tour-info__item__img {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.insect-tour-info__item__img p {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  #insect-tour-mv {
    padding: 8rem 0;
    background-image: url("./img/insect-tour/mv-bg-sp.jpg");
  }

  .insect-tour-mv__title {
    margin-bottom: 2.4rem;
  }

  .insect-tour-mv__heading {
    margin-bottom: 2.4rem;
  }

  .insect-tour-mv__discription {
    font-size: 1.6rem;
    padding: 1.6rem;
  }

  .insect-tour-map__bg {
    padding: 4rem 0;
    background-image: url("./img/insect-tour/map-bg-sp.jpg");
    background-position: bottom left;
    min-height: 75rem;
    width: 68rem;
  }

  .insect-tour-map__text {
    align-items: center;
    flex-direction: column;
  }

  .insect-tour-map__text h3 {
    display: none;
  }

  .insect-tour-info__title::before {
    clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  }

  .insect-tour-info__title p {
    font-size: 1.6rem;
  }

  .insect-tour-info__list {
    margin-top: -4rem;
  }

  #kamakiri.insect-tour-info__item::before {
    display: none;
  }

  .insect-tour-info__item:nth-of-type(odd) {
    background-image: url("./img/insect-tour/info-item-bg01-sp.jpg");
  }

  .insect-tour-info__item:nth-of-type(even) {
    background-image: url("./img/insect-tour/info-item-bg02-sp.jpg");
  }

  .insect-tour-info__item:nth-of-type(odd) .insect-tour-info__item__text {
    padding-left: 0;
  }

  .insect-tour-info__item__text__list > div {
    flex-direction: column;
  }

  .insect-tour-info__item__text > h3 {
    text-align: center;
    font-size: 4rem;
  }

  .insect-tour-info__item__text > h4 {
    text-align: center;
  }

  #kamakiri .insect-tour-info__item__img,
  #kuwagata .insect-tour-info__item__img,
  #kabutomushi .insect-tour-info__item__img,
  #funkorogashi .insect-tour-info__item__img,
  #tonosamagaeru .insect-tour-info__item__img {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
