@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.top-firstview {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.top-hero {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 31.25rem;
  max-height: calc(100vh - 5rem);
}
@media screen and (max-width: 767px) {
  .top-hero {
    min-height: 25rem;
  }
}

.top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  object-fit: cover;
  object-position: center center;
}

.top-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.top-hero__inner {
  height: 100%;
  min-height: 46.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-hero__inner {
    min-height: 34.375rem;
  }
}

.top-hero__content {
  position: absolute;
  z-index: 3;
  left: 1.5625rem;
  bottom: 5.0625rem;
}
@media screen and (max-height: 900px) {
  .top-hero__content {
    bottom: 11.25rem;
  }
}
@media screen and (max-height: 820px) {
  .top-hero__content {
    bottom: 12.5rem;
  }
}
@media screen and (max-height: 700px) {
  .top-hero__content {
    bottom: 15.625rem;
  }
}
@media screen and (max-height: 600px) {
  .top-hero__content {
    bottom: 18.75rem;
  }
}
@media screen and (max-height: 500px) {
  .top-hero__content {
    bottom: 21.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__content {
    left: 1.25rem;
    bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) and (max-height: 600px) {
  .top-hero__content {
    bottom: 5rem;
  }
}
@media screen and (max-width: 767px) and (max-height: 500px) {
  .top-hero__content {
    bottom: 7.5rem;
  }
}

.top-hero__title {
  color: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-hero__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.creatures-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.creatures-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.creatures-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.creatures-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 0.625rem;
  max-width: 80%;
  max-height: 90%;
  overflow-y: auto;
  padding: 1.25rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .creatures-modal__content {
    max-width: 95%;
    padding: 0.9375rem;
  }
}

.creatures-modal__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000000;
  z-index: 10001;
}

.creatures-modal__close-icon {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  text-align: center;
}

.creatures-modal__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .creatures-modal__title {
    font-size: 1.25rem;
  }
}

.creatures-modal__rarity {
  margin-bottom: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.creatures-modal__rarity-label {
  font-size: 0.875rem;
  color: #000000;
}

.creatures-modal__stars {
  display: inline-block;
  font-size: 1.25rem;
  color: #ffd700;
  letter-spacing: 0.125rem;
}

.creatures-modal__image {
  margin-bottom: 1.25rem;
}

.creatures-modal__img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.creatures-modal__body {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .creatures-modal__body {
    font-size: 0.875rem;
  }
}

.creatures-modal__location {
  margin-bottom: 0.9375rem;
  padding: 0.625rem;
  background: #f8f9fa;
  border-radius: 0.3125rem;
}

.creatures-modal__location-label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.3125rem;
  color: #000000;
  font-size: 0.875rem;
}

.creatures-modal__location-content {
  color: #000000;
  font-size: 0.875rem;
}

.creatures-modal__staff-comment {
  margin-bottom: 0.9375rem;
  padding: 0.625rem;
  background: #f8f9fa;
  border-radius: 0.3125rem;
}

.creatures-modal__staff-label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.3125rem;
  color: #000000;
  font-size: 0.875rem;
}

.creatures-modal__staff-content {
  color: #000000;
  font-size: 0.875rem;
}

body.modal-open {
  overflow: hidden;
}

.top-news {
  background-color: #005bac;
  padding-block: 1.25rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  min-height: 5rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-block: 0.625rem 1rem;
    min-height: 3.75rem;
  }
}

.top-news .inner {
  display: flex;
  align-items: center;
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-news .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.0625rem;
  }
}

.top-news__title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-news__title {
    font-size: 1rem;
  }
}

.top-news__item {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .top-news__item {
    align-items: flex-start;
    gap: 0.375rem;
  }
}

.top-news__date {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-news__date {
    font-size: 0.75rem;
  }
}

.top-news__link,
.top-news__heading {
  color: #ffffff;
  transition: opacity 0.3s ease;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-news__link,
  .top-news__heading {
    font-size: 0.75rem;
  }
}
.top-news__link:hover,
.top-news__heading:hover {
  opacity: 0.8;
}

.top-about {
  position: relative;
  margin-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .top-about {
    margin-top: clamp(45px, 0px + 12vw, 90px);
  }
}

.top-about__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    flex-direction: column;
    gap: 3.75rem;
  }
}

.top-about__inner::before,
.top-about__img--main::after,
.top-about__img::before,
.top-about__img--sub::before {
  content: "";
  position: absolute;
}

.top-about__inner::before {
  top: -4rem;
  left: -2.0625rem;
  width: 7.3125rem;
  height: 4.125rem;
  background: url("../images/renovation/common/twofish_illust.png") no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-about__inner::before {
    top: -2.875rem;
    left: -1.25rem;
    width: 18.9552238806%;
  }
}

.top-about__img {
  position: relative;
  width: 52%;
  max-width: 39rem;
}
@media screen and (max-width: 767px) {
  .top-about__img {
    width: 100%;
    max-width: 100%;
  }
}

.top-about__img img {
  border-radius: 0.75rem;
}

.top-about__img::before {
  top: -3.5625rem;
  right: 2.0625rem;
  width: 9.125rem;
  height: 17.0625rem;
  background: url("../images/renovation/common/bubble_illust2x.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-about__img::before {
    display: none;
  }
}

.top-about__img--main {
  width: 100%;
  aspect-ratio: 416/377;
  width: 26rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-about__img--main {
    aspect-ratio: 459/416;
    width: clamp(14.375rem, 61.2vw, 28.6875rem);
    max-width: 28.6875rem;
  }
}

.top-about__img--main::after {
  bottom: -10.1875rem;
  right: 11.875rem;
  width: 13.75rem;
  height: 7.625rem;
  background: url("../images/renovation/common/threefish_illust.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-about__img--main::after {
    top: -14.6%;
    right: -36%;
    width: 33.8%;
    height: 71%;
    background: url("../images/renovation/common/bubble_illust2x.png") no-repeat center/contain;
  }
}

.top-about__img--sub {
  position: relative;
  aspect-ratio: 322/291;
  width: 20.125rem;
  z-index: 1;
  margin-top: -6.25rem;
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .top-about__img--sub {
    aspect-ratio: 355/322;
    width: clamp(11.125rem, 47.7vw, 22.1875rem);
    max-width: 22.1875rem;
    margin-top: -14.8993288591%;
  }
}

@media screen and (min-width: 768px) {
  .top-about__img--sub::before {
    display: none;
  }
}
.top-about__img--sub::before {
  background: url("../images/renovation/common/threefish_illust.png") no-repeat center/contain;
  bottom: 1.25rem;
  left: -79%;
  width: 67%;
  height: 41%;
}

.top-about__img--main img,
.top-about__img--sub img {
  height: 100%;
  object-fit: cover;
}

.top-about__content {
  width: 42%;
  max-width: 31.5rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-about__content {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
}

.top-about__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    margin-top: 1.125rem;
  }
}

.top-about__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-about__btn {
    margin-top: 1.25rem;
    text-align: center;
  }
}

.top-instagram {
  margin-top: 5.75rem;
}
@media screen and (max-width: 767px) {
  .top-instagram {
    margin-top: 2.875rem;
  }
}

.top-service {
  position: relative;
  margin-top: 10.3125rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .top-service {
    margin-top: clamp(50px, 0px + 12vw, 100px);
  }
}

.top-service__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    flex-direction: column;
    gap: 2.0625rem;
  }
}

.top-service__text-block {
  max-width: 31.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__text-block {
    width: 100%;
    max-width: 100%;
  }
}

.top-service__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__text {
    margin-top: 1.625rem;
  }
}

.top-service__btns {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__btns {
    flex-direction: column;
    gap: 0.625rem;
    place-items: center;
    margin-top: 1.875rem;
  }
}

.top-service__btns .btn {
  width: fit-content;
}

.top-service__img-block {
  max-width: 100%;
  width: 49.75%;
  max-width: 37.3125rem;
  aspect-ratio: 597/377;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__img-block {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 664/419;
  }
}
.top-service__img-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.top-service__img-block::before,
.top-service__img-block::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.top-service__img-block::before {
  top: -7.625rem;
  right: -4.4375rem;
  width: 8.9375rem;
  height: 14.625rem;
  background: url("../images/renovation/common/bubble_illust3.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-service__img-block::before {
    width: 24%;
    height: 62%;
    top: -56%;
    right: -8.2%;
  }
}

.top-service__img-block::after {
  left: -10.9375rem;
  bottom: -4.875rem;
  width: 10.6875rem;
  height: 5.9375rem;
  background: url("../images/renovation/common/threefish_illust.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-service__img-block::after {
    width: 28%;
    height: 25%;
    left: -5.7%;
    bottom: -21%;
  }
}

.top-creatures {
  background-image: url("../images/renovation/top/creatures_bg.jpg");
  background-size: cover;
  background-position: center;
  padding-block: 7.25rem 7.5rem;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .top-creatures {
    padding-block: 5.25rem 6.25rem;
    margin-top: 6.25rem;
  }
}

.top-creatures__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .top-creatures__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    margin-top: 1.4375rem;
  }
}

.top-creatures__img {
  aspect-ratio: 276/222;
}
@media screen and (max-width: 767px) {
  .top-creatures__img {
    aspect-ratio: 210/167;
  }
}

.top-creatures__img img {
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
}

.top-creatures__name {
  color: #ffffff;
  font-size: 1.375rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .top-creatures__name {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}

.top-creatures__btn {
  text-align: center;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .top-creatures__btn {
    margin-top: 1.4375rem;
  }
}

.top-news-section {
  background-color: #F2FAFF;
  padding-block: 6rem 4.8125rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .top-news-section {
    padding-block: 2.5rem 3.75rem;
  }
}

.top-news-section__inner {
  position: relative;
}

.top-news-section__inner::after {
  content: "";
  position: absolute;
  bottom: -9.1875rem;
  right: -3.375rem;
  width: 13.75rem;
  height: 7.625rem;
  background: url("../images/renovation/common/threefish_illust.png") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-news-section__inner::after {
    bottom: -13%;
    right: -5%;
    width: 34.375%;
    height: 10%;
  }
}

.top-news-section__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .top-news-section__list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 1.75rem;
  }
}

.top-news-section__item {
  overflow: hidden;
}

.top-news-section__link {
  display: block;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .top-news-section__link {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
  }
}

.top-news-section__img {
  aspect-ratio: 366/218;
}
@media screen and (max-width: 767px) {
  .top-news-section__img {
    aspect-ratio: 292/174;
    width: 47.4702380952%;
  }
}

.top-news-section__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.top-news-section__content {
  display: grid;
  gap: 0.4375rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-news-section__content {
    width: 53.5714285714%;
    margin-top: initial;
  }
}

.top-news-section__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-news-section__categories {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-news-section__label {
  background-color: #1f99e7;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.75rem;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-news-section__label {
    font-size: 0.625rem;
    padding: 0.25rem 0.4375rem;
  }
}

.top-news-section__date {
  font-size: 1rem;
  line-height: 1;
}

.top-news-section__title {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-news-section__title {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.top-news-section__btn {
  text-align: center;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .top-news-section__btn {
    margin-top: 1.5625rem;
  }
}

.top-info {
  margin-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .top-info {
    margin-top: 3rem;
  }
}

.top-info__grid {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-info__grid {
    flex-direction: column;
    gap: 5.875rem;
  }
}

.top-info__block {
  flex: 1;
}

.top-info .section-title {
  margin-bottom: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .top-info .section-title {
    margin-bottom: 1.0625rem;
  }
}

.top-info__map {
  max-width: 35.6875rem;
  aspect-ratio: 571/428;
}
@media screen and (max-width: 767px) {
  .top-info__map {
    aspect-ratio: 664/497;
  }
}

.top-info__map iframe {
  width: 100%;
  height: 100%;
}

.top-info__calendar iframe,
.top-info__calendar .simcal-default-calendar {
  width: 100%;
  max-width: 100%;
}

.top-info__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-info__text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.top-info__btn {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .top-info__btn {
    text-align: center;
    margin-top: 0.9375rem;
  }
}

/*# sourceMappingURL=top.css.map */
