@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&amp;display=swap');

.pre {
  white-space: pre;
}

br.sp {
  display: inline;
}

br.pc {
  display: none;
}

.p-mv {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 16px 0;
}

.p-mv img {
  width: 100%;
  height: auto;
}

.p-mv img.sp {
  display: block;
}

.p-mv img.pc {
  display: none;
}

.p-mv__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}

.p-mv__button .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: auto;
  margin-left: 10px;
}

.p-mv__button .swiper-pagination-bullet-active {
  background: #52b7f6;
}

.p-mv__inner {
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 16px;
}
/*スクロールダウン全体の場所*/
.p-scroll {
  position: absolute;
  bottom: 60px;
  left: 30px;
  z-index: 3;
  display: none;
}

.p-scroll:before {
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  content: '';
  background: #36afff;
  border-radius: 50%;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 60px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.p-scroll:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
  content: '';
  background: #282828;
}

.slide-in {
  display: inline-block;
  padding: 0 10px;
  overflow: hidden;
  /*英語がはみ出るので見えるように余白追記*/
}

.slide-in_inner {
  display: inline-block;
}

.p-loading {
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  background: #fff;
}

.p-loading span {
  font-size: 28.8px;
  font-size: 1.8rem;
}

.p-loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*左右のアニメーション*/

.slideAnimeLeftRight {
  opacity: 0;
  -webkit-animation-name: slideText-100;
  animation-name: slideText-100;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes slideText-100 {
  from {
    /*要素を左の枠外に移動*/
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    /*要素を元の位置に移動*/
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideAnimeRightLeft {
  opacity: 0;
  -webkit-animation-name: slideText100;
  animation-name: slideText100;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes slideText100 {
  from {
    /*要素を右の枠外に移動*/
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    /*要素を元の位置に移動*/
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.is-anime {
  -webkit-filter: blur(5px);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  filter: blur(5px);
  -webkit-animation: blur 1s linear forwards;
  animation: blur 1s linear forwards;
}

@keyframes blur {
  100% {
    -webkit-filter: blur(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    filter: blur(0);
  }
}

.p-top-info {
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  padding: 40px 16px 0;
  overflow: hidden;
}

.p-top-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 38.4px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #52b7f6;
  letter-spacing: 0.05em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.p-top-info__title span {
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #d34444;
  letter-spacing: 0.05em;
}

.p-top-info__head {
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
}

.p-top-info__body {
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  margin-top: 20px;
}

.p-top-info__list {
  width: 77.33333vw;
  margin: 0;
  overflow: visible;
}

.p-top-info__list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-info__list__head {
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
}

.p-top-info__list__head img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-top-info__list__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
}

.p-top-info__list__label {
  padding: 6px 16px;
  margin-left: 10px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  color: #52b7f6;
  letter-spacing: 0.03em;
  border: solid 1px #52b7f6;
  border-radius: 4px;
}

.p-top-info__list__date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.p-top-info__list__text {
  margin-top: 10px;
  font-size: 14px;
}

.p-top-news {
  padding: 40px 16px;
  margin-top: 40px;
  background-color: #fafafa;
}

.p-top-news__inner {
  margin: auto;
}

.p-top-news__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px;
  font-size: 38.4px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #52b7f6;
  letter-spacing: 0.05em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.p-top-news__title span {
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #d34444;
  letter-spacing: 0.05em;
}

.p-top-news__button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #52b7f6;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 8px rgba(92, 147, 171, 0.1);
  box-shadow: 2px 2px 8px rgba(92, 147, 171, 0.1);
}

.p-top-news__button.all {
  color: #52b7f6;
}

.p-top-news__button.all:hover,
.p-top-news__button.all.is-active {
  color: #fff;
  background-color: #52b7f6;
}

.p-top-news__button.news {
  color: #52b7f6;
  border-color: #52b7f6;
}

.p-top-news__button.news.is-active,
.p-top-news__button.news:hover {
  color: #fff;
  background-color: #52b7f6;
}

.p-top-news__button.event {
  color: #2740ae;
  border-color: #2740ae;
}

.p-top-news__button.event.is-active,
.p-top-news__button.event:hover {
  color: #fff;
  background-color: #2740ae;
}

.p-top-news__button.facility {
  color: #037171;
  border-color: #037171;
}

.p-top-news__button.facility.is-active,
.p-top-news__button.facility:hover {
  color: #fff;
  background-color: #037171;
}

.p-top-news__button.use {
  color: #ff904d;
  border-color: #ff904d;
}

.p-top-news__button.use.is-active,
.p-top-news__button.use:hover {
  color: #fff;
  background-color: #ff904d;
}

.p-top-news__button.schedule {
  color: #c1ff72;
  border-color: #c1ff72;
}

.p-top-news__button.schedule.is-active,
.p-top-news__button.schedule:hover {
  color: #fff;
  background-color: #c1ff72;
}

.p-top-news__button.proxy.is-active {
  color: #fff;
  background-color: #ff904d;
}

.p-top-news__head li {
  display: inline-block;
  margin-bottom: 10px;
}

.p-top-news__head a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.05em;
  background-color: #fff;
  border: 1px solid #52b7f6;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 8px rgba(92, 147, 171, 0.1);
  box-shadow: 2px 2px 8px rgba(92, 147, 171, 0.1);
}

.p-top-news__head a.is-active {
  color: #fff;
  background-color: #52b7f6;
}

.p-top-news__head a.news {
  color: #52b7f6;
  border-color: #52b7f6;
}

.p-top-news__head a.news:hover {
  color: #fff;
  background-color: #52b7f6;
}

.p-top-news__head a.event {
  color: #2740ae;
  border-color: #2740ae;
}

.p-top-news__head a.event.is-active,
.p-top-news__head a.event:hover {
  color: #fff;
  background-color: #2740ae;
}

.p-top-news__head a.facility {
  color: #037171;
  border-color: #037171;
}

.p-top-news__head a.facility.is-active,
.p-top-news__head a.facility:hover {
  color: #fff;
  background-color: #037171;
}

.p-top-news__head a.use {
  color: #ff904d;
  border-color: #ff904d;
}

.p-top-news__head a.use.is-active,
.p-top-news__head a.use:hover {
  color: #fff;
  background-color: #ff904d;
}

.p-top-news__head a.schedule {
  color: #c1ff72;
  border-color: #c1ff72;
}

.p-top-news__head a.schedule:hover {
  color: #fff;
  background-color: #c1ff72;
}

.p-top-news__body {
  width: 100%;
  max-width: 1020px;
  margin-top: 10px;
}

.p-top-news__list__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-top-news__list__label {
  padding: 6px 16px;
  margin-left: 10px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  color: #52b7f6;
  letter-spacing: 0.03em;
  border: solid 1px #52b7f6;
  border-radius: 4px;
}

.p-top-news__list__label.news {
  color: #52b7f6;
  border-color: #52b7f6;
}

.p-top-news__list__label.news:hover {
  color: #fff;
  background-color: #52b7f6;
}

.p-top-news__list__label.event {
  color: #2740ae;
  border-color: #2740ae;
}

.p-top-news__list__label.event:hover {
  color: #fff;
  background-color: #2740ae;
}

.p-top-news__list__label.facility {
  color: #037171;
  border-color: #037171;
}

.p-top-news__list__label.facility:hover {
  color: #fff;
  background-color: #037171;
}

.p-top-news__list__label.use {
  color: #ff904d;
  border-color: #ff904d;
}

.p-top-news__list__label.use:hover {
  color: #fff;
  background-color: #ff904d;
}

.p-top-news__list {
  display: none;
}

.p-top-news__list.is-active {
  display: block;
}

.p-top-news__list li:first-child {
  border-top: 1px dotted #282828;
}

.p-top-news__list a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-bottom: 1px dotted #282828;
}

.p-top-news__list p {
  margin-top: 10px;
}

.p-top-guide {
  padding: 16px;
}

.p-top-guide__inner {
  padding: 40px 16px;
  border-radius: 16px;
  -webkit-box-shadow: 2px 2px 14px rgba(92, 147, 171, 0.16);
  box-shadow: 2px 2px 14px rgba(92, 147, 171, 0.16);
}

.p-top-guide__items {
  margin-top: 40px;
}

.p-top-guide__item:not(:first-child) {
  margin-top: 40px;
}

.p-top-guide__image {
  overflow: hidden;
  border-radius: 10px;
}

.p-top-guide__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-guide__title {
  margin-top: 20px;
  font-size: 18px;
}

.p-top-guide__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.p-top-facility {
  padding: 16px;
}

.p-top-facility__inner {
  padding: 40px 16px;
  border-radius: 16px;
  -webkit-box-shadow: 2px 2px 14px rgba(92, 147, 171, 0.16);
  box-shadow: 2px 2px 14px rgba(92, 147, 171, 0.16);
}

.p-top-facility__item {
  margin-top: 40px;
}

.p-top-facility__image {
  overflow: hidden;
  border-radius: 10px;
}

.p-top-facility__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-facility__title {
  margin-top: 20px;
  font-size: 18px;
}

.p-top-facility__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.p-top-facility__more {
  margin-top: 60px;
  margin-bottom: 0;
}

.p-hours {
  position: absolute;
  right: 30px;
  bottom: 60px;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
}

.p-hours .p-hours__item {
  font-size: 12px;
}

.p-hours .open,
.p-hours .close {
  display: none;
}

.p-hours .open.is-active,
.p-hours .close.is-active {
  display: inline;
}

@media (prefers-color-scheme: light) {
  :root {
    --color-base: #ffffff;
    --color-bg: #3b3f43;
    --color-main: #032f40;
    --color-sub: #011c26;
    --color-point: #5c7073;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-base: #000;
    --color-bg: #3b3f43;
    --color-main: #287496;
    --color-sub: #37a1d0;
    --color-point: #d0b737;
  }
}

@media (min-width: 1024px) {
  br.sp {
    display: none;
  }
  br.pc {
    display: inline;
  }
  .p-mv img.sp {
    display: none;
  }
  .p-mv img.pc {
    display: block;
  }
}

@media only screen and (min-width: 1024px) {
  .p-mv {
    padding: 0 60px 0;
  }
  .p-scroll {
    display: block;
  }
  .p-top-info {
    padding: 80px 60px 0;
  }
  .p-top-info__title {
    font-size: 3.2rem;
    letter-spacing: 0.05em;
  }
  .p-top-info__title span {
    font-size: 1.6rem;
  }
  .p-top-info__body {
    overflow: hidden;
  }
  .p-top-info__inner {
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
  }
  .p-top-info__list {
    width: 100%;
  }
  .p-top-info__list__item {
    width: 31.06061%;
  }
  .p-top-info__list__item:not(:first-child) {
    margin-left: 3.33333%;
  }
  .p-top-info__list__item:hover .p-top-info__list__head img {
    opacity: 0.7;
  }
  .p-top-news {
    padding: 80px 60px 60px;
    margin-top: 60px;
  }
  .p-top-news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1320px;
  }
  .p-top-news__title {
    font-size: 3.2rem;
    letter-spacing: 0.05em;
  }
  .p-top-news__title span {
    font-size: 1.6rem;
  }
  .p-top-news__head {
    width: 300px;
    padding-right: 40px;
    text-align: left;
  }
  .p-top-news__head ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-top-news__head a {
    padding: 10px 20px;
    font-size: 14px;
  }
  .p-top-news__head a:hover {
    color: #fff;
    background-color: #52b7f6;
  }
  .p-top-news__body {
    margin-top: 0;
  }
  .p-top-news__list a {
    padding: 20px;
  }
  .p-top-guide {
    padding: 80px 60px 40px;
  }
  .p-top-guide__inner {
    max-width: 1320px;
    padding: 60px;
    margin-right: auto;
    margin-left: auto;
  }
  .p-top-guide__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-top-guide__item:first-child {
    padding-right: 20px;
  }
  .p-top-guide__item:not(:first-child) {
    padding-left: 20px;
    margin-top: 0;
  }
  .p-top-guide__image {
    border-radius: 16px;
  }
  .p-top-guide__title {
    font-size: 24px;
  }
  .p-top-guide__text {
    margin-top: 20px;
  }
  .p-top-facility {
    padding: 40px 60px;
  }
  .p-top-facility__inner {
    max-width: 1320px;
    padding: 60px;
    margin-right: auto;
    margin-left: auto;
  }
  .p-top-facility__outer {
    text-align: center;
  }
  .p-top-facility__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
  }
  .p-top-facility__item {
    width: 48.33333%;
    max-width: 580px;
  }
  .p-top-facility__image {
    border-radius: 16px;
  }
  .p-top-facility__title {
    font-size: 24px;
  }
  .p-top-facility__text {
    margin-top: 20px;
  }
  .p-hours {
    right: 80px;
    bottom: 60px;
    padding: 20px;
  }
  .p-hours .p-hours__item {
    font-size: 14px;
  }
}
