@charset "UTF-8";
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
}

pre {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  margin: 0;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

li {
  list-style-type: none;
}

dl {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

address, em, cite, dfn, var, i {
  font-style: inherit;
}

img, iframe, embed, object, video, audio, svg, canvas {
  vertical-align: bottom;
}

img, video, input, select, textarea {
  max-width: 100%;
  height: auto;
}

svg {
  fill: currentcolor;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td, th {
  padding: 0;
}

th {
  text-align: inherit;
}

input, button, select, textarea {
  padding: 0;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

/* =========================
   _base.scss
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  background-image: url("../img/bg_pattern.jpg");
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}

/* =========================
   _layout.scss
========================= */
/* Header */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.l-header__inner {
  height: 100px;
  width: 90%;
  max-width: 1000px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .l-header__inner {
    height: 50px;
  }
}
.l-header__logo img {
  display: block;
  width: clamp(143px, 13.2638888889vw, 253px);
  aspect-ratio: 253/25;
}

/* PageTop */
.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/* Section */
.p-section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .p-section {
    padding: 30px 0;
  }
}
.p-section__inner {
  text-align: center;
}
.p-section__title img {
  display: block;
  margin: 0 auto;
}

.l-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* main */
.main {
  margin-bottom: 38px;
}

.hero {
  height: 100vh;
}
@media (max-width: 1025px) {
  .hero {
    height: auto;
  }
}

.p-content {
  position: relative;
  overflow: hidden;
}
.p-content__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-content__bg {
    display: block;
    height: auto;
  }
}
.p-content__title {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 2;
  width: clamp(350px, 70vw, 720px);
  max-width: 858px;
}
.p-content__title-img {
  display: block;
  width: 100%;
  height: auto;
}
.p-content__title-img.unlslider img {
  max-width: 1000px;
}
.p-content__title-img.hydropolis {
  left: 42%;
  bottom: 10%;
}
.p-content__title-img.hydropolis img {
  width: clamp(350px, 60vw, 700px);
}
@media (max-width: 1025px) {
  .p-content__title-img.hydropolis {
    left: 50%;
  }
}
@media (max-width: 767px) {
  .p-content__title-img {
    display: none;
  }
}
.p-content__comment {
  position: absolute;
  z-index: 1;
}
.p-content__comment img {
  display: block;
  width: clamp(260px, 19.8vw, 380px);
  height: auto;
}

.p-content__comment--left {
  top: -100%;
  left: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 1025px) {
  .p-content__comment--left {
    top: -70%;
    left: 10%;
  }
}
@media (max-width: 767px) {
  .p-content__comment--left {
    display: none;
  }
}

.p-content__comment--center {
  top: 5%;
  left: calc(50% + 7vw);
  transform: translateX(-50%);
}
@media (max-width: 1025px) {
  .p-content__comment--center {
    top: 2%;
    left: calc(50% + 5vw);
  }
}
@media (max-width: 767px) {
  .p-content__comment--center {
    display: none;
  }
}

.p-content__comment--right {
  bottom: 150%;
  right: -160px;
}
@media (max-width: 1025px) {
  .p-content__comment--right {
    bottom: 100%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .p-content__comment--right {
    display: none;
  }
}

.p-content__comment--slid {
  top: 5%;
  left: calc(50% + 18vw);
  transform: translateX(-50%);
}
@media (max-width: 1025px) {
  .p-content__comment--slid {
    left: calc(50% + 23vw);
  }
}
.wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}
.wrap > div {
  width: 48%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wrap > div {
    width: 85%;
  }
}

/* button */
.button a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 398px;
  padding: 26px 50px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid #FFF;
}
@media (max-width: 767px) {
  .button a {
    padding: 20px;
    font-size: 0.9rem;
  }
}
.button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
}

.button--black a {
  background: #000;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1019607843));
}

/* スライド */
.p-slide {
  background-color: #1dbaea;
  background-image: url(../img/slider_bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: repeat;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-slide {
    background-position: top 200px center;
    background-size: 150% auto;
    padding-bottom: 30px;
  }
}
.p-slide__title {
  position: relative;
  margin-top: 100px;
  top: -100px;
  overflow: hidden;
  height: auto;
}
@media (max-width: 767px) {
  .p-slide__title {
    top: -50px;
  }
}
.p-slide__title .title_img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 460px;
}
@media (max-width: 1025px) {
  .p-slide__title .title_img {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .p-slide__title .title_img {
    min-height: 190px;
  }
}

.profile {
  background-color: #fff;
  padding: 25px 30px;
}
.profile__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1em;
}
@media (max-width: 767px) {
  .profile__box {
    flex-direction: column;
  }
}
.profile .pic-box img {
  max-width: 200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .profile .pic-box img {
    max-width: 180px;
  }
}
.profile .text-box {
  width: 70%;
}
@media (max-width: 767px) {
  .profile .text-box {
    width: 100%;
  }
}

/* アニメーション */
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.item1 {
  animation-delay: 0s;
}

.item2 {
  animation-delay: 0.2s;
}

.anim-box.fadeup {
  opacity: 0;
  transform: translateY(30px);
}

.anim-box.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.siteFooter {
  position: relative;
  font-size: 12px;
}

.siteFooter a {
  text-decoration: none;
  color: #333;
}

.siteFooter__logo svg {
  fill: #e71b1a;
}

.siteFooter__btnList {
  display: flex;
}

.siteFooter__btnList .siteFooter__btnItem.-map .siteFooter__button::before {
  background: url(https://www.seibuen-amusement-park.jp/amusementpark/common-html/img/common/icon_access.svg);
}

.siteFooter__btnList .siteFooter__btnItem.-tel a {
  display: block;
}

.siteFooter__btnList .siteFooter__btnItem.-tel a .siteFooter__button::before {
  background: url(https://www.seibuen-amusement-park.jp/amusementpark/common-html/img/common/icon_tel.svg);
}

.siteFooter__btnList .siteFooter__button {
  position: relative;
  background: #e71b1a;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(44, 49, 60, 0.1);
}

.siteFooter__btnList .siteFooter__button::before {
  content: "";
  display: block;
  position: absolute;
}

.siteFooter__menu .siteFooter__item {
  position: relative;
}

.siteFooter__menu .siteFooter__item::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #333;
  border-radius: 50%;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
}

.siteFooter__menu .siteFooter__item a {
  display: inline-block;
}

.siteFooter__menu .siteFooter__item:last-child a {
  margin-bottom: 0;
}

.siteFooter__menu .siteFooter__item > ol > li a {
  color: #666;
}

.siteFooter__txt {
  color: #6c593e;
  margin-top: 44px;
}

.siteFooter__bottomNav {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
}

.siteFooter__bottomNav .siteFooter__bottomList {
  display: flex;
}

.siteFooter__bottomNav .siteFooter__bottomItem {
  border-right: 1px solid #d6d5d3;
  line-height: 1;
}

.siteFooter__bottomNav .siteFooter__bottomItem a {
  color: #666;
}

.siteFooter__bottomNav .siteFooter__copyright {
  color: #999;
  font-size: 10px;
}

.siteFooter__inner {
  position: relative;
  padding: 50px 0;
  margin: 0 auto;
  max-width: 1000px;
}

.siteFooter__inner a {
  transition: opacity 0.3s ease;
}

.siteFooter__inner a:hover {
  opacity: 0.7;
}

.siteFooter__logo {
  width: 212px;
}

.siteFooter__logo .siteFooter__logo a {
  transition: opacity 0.3s ease;
}

.siteFooter__logo .siteFooter__logo a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .siteFooter__btnList {
    position: absolute;
    top: 50px;
    right: 0;
  }
  .siteFooter__btnList a[href^="tel:"] {
    pointer-events: none;
  }
  .siteFooter__btnList .siteFooter__btnItem.-map .siteFooter__button::before {
    background-size: 17px 25px;
    width: 17px;
    height: 25px;
    top: 13px;
    left: 21px;
  }
  .siteFooter__btnList .siteFooter__btnItem.-tel a .siteFooter__button::before {
    background-size: 19px 24px;
    width: 19px;
    height: 24px;
    top: 13px;
    left: 20px;
  }
  .siteFooter__btnList .siteFooter__button {
    width: 240px;
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    margin-left: 20px;
  }
  .siteFooter__menu {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
  }
  .siteFooter__menu .siteFooter__box {
    width: 500px;
    display: flex;
    justify-content: space-between;
  }
  .siteFooter__menu .siteFooter__list:nth-child(odd) {
    width: 270px;
  }
  .siteFooter__menu .siteFooter__list:nth-child(even) {
    width: 230px;
  }
  .siteFooter__menu .siteFooter__item a, .siteFooter__menu .siteFooter__item span {
    padding-left: 7px;
    margin-bottom: 12px;
  }
  .siteFooter__menu .siteFooter__item > ol > li a {
    padding-left: 17px;
  }
  .siteFooter__bottomNav .siteFooter__bottomItem {
    padding-right: 30px;
    margin-right: 30px;
  }
  .siteFooter__pageTopBtn a {
    display: block;
    width: 500px;
    height: 60px;
    line-height: 60px;
    margin: 50px auto 0;
    transition: opacity 0.3s ease;
  }
  .siteFooter__pageTopBtn a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .siteFooter__inner {
    padding: 50px 25px 70px;
  }
  .siteFooter__logo {
    width: 151px;
  }
  .siteFooter__btnList {
    justify-content: space-between;
    margin-top: 25px;
    right: inherit;
  }
  .siteFooter__btnList .siteFooter__btnItem {
    width: 47.7%;
  }
  .siteFooter__btnList .siteFooter__button {
    width: 100%;
    height: 70px;
  }
  .siteFooter__menu {
    margin-top: 36px;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
  }
  .siteFooter__menu .siteFooter__list:nth-child(1) {
    margin-bottom: 22px;
  }
  .siteFooter__menu .siteFooter__list:nth-child(2) {
    grid-column: 1/2;
  }
  .siteFooter__menu .siteFooter__list:nth-child(3) {
    margin-bottom: 22px;
  }
  .siteFooter__menu .siteFooter__list:nth-child(4) {
    grid-column: 2/3;
  }
  .siteFooter__menu .siteFooter__box:nth-child(1) {
    width: 56%;
  }
  .siteFooter__menu .siteFooter__box:nth-child(2) {
    width: 44%;
  }
  .siteFooter__menu .siteFooter__item a, .siteFooter__menu .siteFooter__item span {
    padding-left: 7px;
    margin-bottom: 22px;
  }
  .siteFooter__menu .siteFooter__item > ol > li a {
    padding-left: 12px;
  }
  .siteFooter__bottomNav {
    flex-wrap: wrap;
  }
  .siteFooter__bottomNav .siteFooter__bottomList {
    width: 100%;
    font-size: 10px;
  }
  .siteFooter__bottomNav .siteFooter__bottomItem {
    padding: 0 11px;
  }
  .siteFooter__bottomNav .siteFooter__bottomItem:last-child {
    border-right: none;
  }
  .siteFooter__bottomNav .siteFooter__copyright {
    width: 100%;
    margin-top: 34px;
  }
  .siteFooter__pageTopBtn a {
    display: block;
    width: 210px;
    height: 60px;
    line-height: 60px;
    margin: 38px auto 0;
  }
}
/* =========================
   _swiper.scss
========================= */
.swiper-area {
  position: relative;
  padding: 0 0 50px 0;
  overflow: hidden;
}
.swiper-area .swiper {
  overflow: visible;
}
.swiper-area .item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .swiper-area .item {
    font-size: 2.4rem;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet {
  margin-top: 3.2rem;
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #fff !important;
}/*# sourceMappingURL=style.css.map */