@charset "UTF-8";
body {
  color: #00a2a6;
  background-color: #f1eee5;
  font-family: "Zen Maru Gothic", serif;
}

.initial-width {
  width: min(90%, 1366px);
  margin: 0 auto;
}

header {
  padding: 40px 50px;
}
@media only screen and (max-width: 960px) {
  header {
    padding: 25px 20px;
    display: flex;
    justify-content: center;
  }
}

h1 {
  width: 160px;
}
@media only screen and (max-width: 960px) {
  h1 {
    width: 120px;
  }
}

.main-grid {
  display: grid;
  grid-template-columns: 50.5% 40%;
  justify-content: center;
  margin: 60px auto 0;
  gap: 0 100px;
  width: min(90%, 950px);
}
@media only screen and (max-width: 960px) {
  .main-grid {
    grid-template-columns: 1fr;
    margin: 40px auto 0;
    padding: 0 20px;
  }
}
.main-grid .main-lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1666666667;
}
@media only screen and (max-width: 960px) {
  .main-grid .main-lead {
    font-size: 1rem;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 960px) {
  .main-grid .main-catch {
    width: 80%;
    position: relative;
    left: -5px;
  }
}

.info-table {
  margin: 80px auto 0;
  width: min(90%, 750px);
}
@media only screen and (max-width: 960px) {
  .info-table {
    margin: 80px auto 0;
    padding: 0 20px;
  }
}
.info-table .info-table-wrapper {
  margin-top: 30px;
}
.info-table__title {
  font-size: 1.5625rem;
  font-weight: 700;
  color: #00a2a6;
  line-height: 1.56;
  margin-bottom: 16px;
}
@media only screen and (max-width: 960px) {
  .info-table__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}
.info-table__table {
  width: 100%;
  border-collapse: collapse;
}
.info-table__row {
  border-bottom: 1px solid #00a2a6;
}
@media only screen and (max-width: 640px) {
  .info-table__row {
    display: block;
  }
}
.info-table__term {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00a2a6;
  width: 280px;
  padding: 22px 0 22px 22px;
  vertical-align: middle;
}
@media only screen and (max-width: 960px) {
  .info-table__term {
    font-size: 1.0625rem;
    padding: 22px 0 22px 0px;
    width: 200px;
  }
}
@media only screen and (max-width: 640px) {
  .info-table__term {
    display: block;
    width: 100%;
    padding: 16px 0 6px;
    font-size: 0.875rem;
  }
}
.info-table__data {
  font-size: 1.25rem;
  font-weight: 500;
  color: #00a2a6;
  padding: 22px 0 22px 22px;
  vertical-align: middle;
}
@media only screen and (max-width: 960px) {
  .info-table__data {
    font-size: 1.0625rem;
    padding: 22px 0 22px 0px;
  }
}
@media only screen and (max-width: 640px) {
  .info-table__data {
    display: block;
    width: 100%;
    padding: 0 0 16px;
    font-size: 1rem;
  }
}

.facility-list {
  margin: 220px auto 0;
  width: min(90%, 1250px);
  position: relative;
}
@media only screen and (max-width: 960px) {
  .facility-list {
    margin: 180px auto 0;
    padding: 0 20px;
  }
}
.facility-list > h2 {
  position: absolute;
  left: -10px;
  top: -80px;
}
@media only screen and (max-width: 960px) {
  .facility-list > h2 {
    left: 10px;
    width: 90%;
  }
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 960px) {
  .facility-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 30px;
  }
}
.facility-grid .facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.facility-grid .facility-item > img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.facility-grid .facility-item .facility-item-text {
  position: absolute;
  width: 100%;
  margin-top: 20px;
  font-family: "Zen Kaku Gothic";
  bottom: 65px;
  display: flex;
  flex-direction: column;
}
.facility-grid .facility-item .facility-item-text h3 {
  font-size: 1.1875rem;
  font-weight: 500;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px 3px;
}
@media only screen and (max-width: 960px) {
  .facility-grid .facility-item .facility-item-text h3 {
    font-size: 1rem;
  }
}
.facility-grid .facility-item .facility-item-text p {
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px 3px;
}
@media only screen and (max-width: 960px) {
  .facility-grid .facility-item .facility-item-text p {
    font-size: 0.875rem;
  }
}
.facility-grid .facility-item .facility-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media only screen and (max-width: 960px) {
  .facility-grid .facility-item .facility-link {
    margin-top: 30px;
  }
}
.facility-grid .facility-item .facility-link a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #00a2a6;
  text-decoration: none;
}
@media only screen and (max-width: 960px) {
  .facility-grid .facility-item .facility-link a {
    font-size: 0.875rem;
  }
}
.facility-grid .facility-item .facility-link a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.facility-grid .facility-item .facility-link img {
  margin-left: 10px;
  transition: transform 0.15s ease;
}
.facility-grid .facility-item .facility-link:hover img {
  transform: translateX(5px);
  transition: transform 0.15s ease;
}

.instagram-btn {
  display: flex;
  justify-content: center;
  margin: 70px auto 70px;
}
@media only screen and (max-width: 960px) {
  .instagram-btn p {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.instagram-btn a {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #00a2a6;
  text-decoration: none;
  width: 420px;
  border: 2px solid #00a2a6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 10px;
  border-radius: 30px;
  position: relative;
  background-image: url("../images/instagram_icon.png");
  background-repeat: no-repeat;
  background-position: 70px 55%;
}
@media only screen and (max-width: 960px) {
  .instagram-btn a {
    width: 80%;
    font-size: 0.875rem;
    background-position: 30px 55%;
  }
}
.instagram-btn a img {
  width: 20px;
  transition: transform 0.15s ease;
}
.instagram-btn a span {
  position: relative;
  z-index: 1;
  left: 20px;
}
.instagram-btn a:hover {
  opacity: 0.6;
}

footer {
  background-color: #ffffff;
  padding: 40px 0 35px;
}
@media only screen and (max-width: 960px) {
  footer {
    padding: 20px 0 15px;
  }
}
footer p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #00a2a6;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  footer p {
    font-size: 0.75rem;
  }
}

.page-wrapper {
  opacity: 0;
  transition: opacity 1s ease 0.15s;
}

body.is-loaded .page-wrapper {
  opacity: 1;
}

#loading {
  position: fixed;
  inset: 0;
  background-color: #f1eee5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}
#loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.01);
}
#loading .loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#loading img {
  width: 110px;
  -webkit-animation: loading-bounce 1.1s infinite;
          animation: loading-bounce 1.1s infinite;
}
#loading .loading-shadow {
  display: block;
  width: 80px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 162, 166, 0.2);
  margin-top: 14px;
  -webkit-animation: loading-shadow 1.1s infinite;
          animation: loading-shadow 1.1s infinite;
}

@-webkit-keyframes loading-bounce {
  0% {
    transform: translateY(0) scaleX(1.07) scaleY(0.93);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  14% {
    transform: translateY(0) scaleX(1) scaleY(1);
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  50% {
    transform: translateY(-28px) scaleX(0.97) scaleY(1.03);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
            animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  86% {
    transform: translateY(0) scaleX(1) scaleY(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0) scaleX(1.07) scaleY(0.93);
  }
}

@keyframes loading-bounce {
  0% {
    transform: translateY(0) scaleX(1.07) scaleY(0.93);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  14% {
    transform: translateY(0) scaleX(1) scaleY(1);
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  50% {
    transform: translateY(-28px) scaleX(0.97) scaleY(1.03);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
            animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  86% {
    transform: translateY(0) scaleX(1) scaleY(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0) scaleX(1.07) scaleY(0.93);
  }
}
@-webkit-keyframes loading-shadow {
  0%, 100% {
    transform: scaleX(1.07);
    opacity: 0.7;
  }
  14%, 86% {
    transform: scaleX(1);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(0.55);
    opacity: 0.15;
  }
}
@keyframes loading-shadow {
  0%, 100% {
    transform: scaleX(1.07);
    opacity: 0.7;
  }
  14%, 86% {
    transform: scaleX(1);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(0.55);
    opacity: 0.15;
  }
}
.facility-item {
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  /* 中心から半径0%の円 */
  transition: -webkit-clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
  /* アニメーションの速度や変化のカーブ */
}
.facility-item.is-active {
  -webkit-clip-path: circle(150% at 50% 50%);
          clip-path: circle(150% at 50% 50%);
  /* 半径を大きくして画像を全表示させる */
}

.facility-item {
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  /* ① アニメーションの時間を 1s から 2s（2秒）にしてゆっくりにするわ */
  /* 最初から遅延（delay）がかからないように、基本は 0s にしておくの */
  transition: -webkit-clip-path 3s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: clip-path 3s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: clip-path 3s cubic-bezier(0.25, 1, 0.5, 1) 0s, -webkit-clip-path 3s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  /* ② 順番に発動させるためのディレイ（遅延）設定 */
}
.facility-item:nth-child(1) {
  transition-delay: 0s;
  /* 1番目はすぐに発動 */
}
.facility-item:nth-child(2) {
  transition-delay: 0.4s;
  /* 2番目は0.3秒遅れて発動 */
}
@media only screen and (max-width: 960px) {
  .facility-item:nth-child(2) {
    transition-delay: 0s;
  }
}
.facility-item:nth-child(3) {
  transition-delay: 0.8s;
  /* 3番目は0.6秒遅れて発動 */
}
@media only screen and (max-width: 960px) {
  .facility-item:nth-child(3) {
    transition-delay: 0s;
  }
}
.facility-item.is-active {
  -webkit-clip-path: circle(150% at 50% 50%);
          clip-path: circle(150% at 50% 50%);
}
/*# sourceMappingURL=top.css.map */