/*breakpoint*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blur {
  0% {
    -ms-filter: blur(12px);
    filter: blur(12px);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
.club-schedule {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .club-schedule {
    padding: 0 3rem;
    box-sizing: border-box;
  }
}
.club-schedule h3 {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2.4rem;
  color: #A35CEB;
  letter-spacing: 0.7rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .club-schedule h3 {
    margin-bottom: 3rem;
  }
}
.club-schedule h3 img {
  display: block;
  margin: 0 auto;
  width: 7rem;
}
.club-schedule .floor-map__text {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.club-schedule .floor-map__text small {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .club-schedule .floor-map__text {
    font-size: 1.4rem;
  }
}
.club-schedule .toc__text {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .club-schedule .toc__text {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    text-align: left;
    text-indent: -1em;
    margin-left: 1em;
  }
}
.club-schedule ul.floor-map__list {
  list-style: none;
  display: flex;
  gap: 6rem;
  max-width: 945px;
  flex-wrap: wrap;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 767px) {
  .club-schedule ul.floor-map__list {
    display: block;
    margin: 0 auto 0;
  }
}
.club-schedule ul.floor-map__list li {
  width: calc(50% - 3rem);
}
@media screen and (max-width: 767px) {
  .club-schedule ul.floor-map__list li {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 6rem;
  }
}
.club-schedule ul.floor-map__list li img {
  width: 100%;
  border-radius: 2rem;
}
.club-schedule ul.floor-map__list li:last-child img {
  border: 1px solid #707070;
}
.club-schedule .floor-map__pic {
  margin-bottom: 10rem;
  border-radius: 2rem;
  border: 1px solid #707070;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .club-schedule .floor-map__pic img {
    width: 100%;
    margin-bottom: 0;
  }
}
.club-schedule .floor-map__item img {
  margin-bottom: 2rem;
}
.club-schedule .floor-map__item p {
  text-align: left;
}
.club-schedule .floor-map__item .floor-map__subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .club-schedule .floor-map__item .floor-map__subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.club-schedule .floor-map__item .floor-map__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .club-schedule .floor-map__item .floor-map__text {
    font-size: 1.4rem;
  }
}
.club-schedule .floor-map__item .red.toc__text {
  display: block;
  color: #FF0000;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.detail__btn .detail__btn--text .detail__btn--anker {
  display: block;
  width: 250px;
  height: 41px;
  line-height: 41px;
  border: 1px solid #707070;
  border-radius: 10px;
  color: #707070;
  margin: 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}
.detail__btn .detail__btn--text .detail__btn--anker .right__arrow::before {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  border-radius: 50px;
  background-color: #707070;
  position: absolute;
  top: 11px;
  right: 16px;
  transform: rotate(-45deg);
}
.detail__btn .detail__btn--text .detail__btn--anker .right__arrow::after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  border-radius: 50px;
  background-color: #707070;
  position: absolute;
  top: 18px;
  right: 16px;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .detail__btn .detail__btn--text .detail__btn--anker:hover {
    background-color: #707070;
    color: #fff;
  }
  .detail__btn .detail__btn--text .detail__btn--anker:hover .right__arrow::before {
    background-color: #fff;
  }
  .detail__btn .detail__btn--text .detail__btn--anker:hover .right__arrow::after {
    background-color: #fff;
  }
}/*# sourceMappingURL=facility.css.map */