@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}

body {
  font-size: 2rem;
  background-color: rgba(26, 51, 2, 0.86);
}

body.no-scroll {
  overflow: hidden;
}

.container {
  margin-inline: auto;
  padding-inline: 3%;
  max-width: 1500px;
}

.inner {
  margin-inline: auto;
  padding-inline: 3%;
  max-width: 1500px;
}

.contents {
  margin-inline: auto;
  padding-inline: 0;
  max-width: 700px;
}

img {
  width: 100%;
  height: 100%;
  max-width: 2000px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-out;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  transform: scale(1.05);
}

li {
  list-style: none;
}

section {
  display: flex;
  margin-block: 94px;
}
@media (max-width: 900px) {
  section {
    flex-direction: column;
  }
}
section .text--box {
  display: flex;
  flex-direction: column;
  padding-block: 40px;
  width: 40%;
  box-shadow: inset 0px 0px 25px 22px rgba(0, 0, 0, 0.3);
}
@media (max-width: 900px) {
  section .text--box {
    order: 2;
    width: 100%;
  }
}
section .sub--title {
  font-size: 1.8rem;
  align-self: flex-end;
}
section .text {
  flex: 1;
  padding-block: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.4rem;
}
section .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  padding: 10px 30px;
  border: 2px #000 solid;
  border-radius: 20px;
  box-shadow: 0px 20px 13px -10px rgba(0, 0, 0, 0.39);
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
section .btn:hover {
  transform: scale(1.02);
}
@media (max-width: 900px) {
  section .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    padding: 10px 30px;
    border: 2px #000 solid;
    border-radius: 20px;
    box-shadow: 0px 20px 13px -10px rgba(0, 0, 0, 0.39);
    font-weight: bold;
  }
  section .btn:hover {
    transform: scale(1.02);
  }
}
section .img--box {
  width: 60%;
}
@media (max-width: 900px) {
  section .img--box {
    width: 100%;
  }
}

/*header*/
header {
  padding-block: 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(194, 194, 194, 0.7019607843);
  z-index: 100;
}
header .web__logo {
  width: 140px;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navi__list {
  display: flex;
  gap: 40px;
}
@media (max-width: 900px) {
  header .navi__list {
    display: block;
  }
}
header .navi__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  padding: 10px 30px;
  border: 2px #000 solid;
  border-radius: 20px;
  box-shadow: 0px 20px 13px -10px rgba(0, 0, 0, 0.39);
  font-weight: bold;
}
header .navi__btn:hover {
  transform: scale(1.02);
}
@media (max-width: 900px) {
  header .navi__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    padding: 10px 30px;
    border: 2px #000 solid;
    border-radius: 20px;
    box-shadow: 0px 20px 13px -10px rgba(0, 0, 0, 0.39);
    font-weight: bold;
  }
  header .navi__btn:hover {
    transform: scale(1.02);
  }
}
@media (max-width: 900px) {
  header .sp__header {
    padding: 15px 20px;
    justify-content: center;
    position: fixed;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background-color: #fff;
    opacity: 0.8;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
header .menu--mask {
  display: none;
}
header .menu--mask.is-active {
  display: block;
  margin-block: 60px 60px;
}
header .menu--mask.is-active .info {
  grid-template-columns: unset;
}

/*main*/
.leaf {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -100;
}
.leaf li {
  width: 15px;
  position: absolute;
  top: -20%;
  -webkit-animation: fall 10s linear infinite, rotate1 5s ease-in-out infinite alternate;
          animation: fall 10s linear infinite, rotate1 5s ease-in-out infinite alternate;
}
.leaf li img {
  fill: #7cfc00;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

@-webkit-keyframes fall {
  from {
    top: -20%;
  }
  to {
    top: 120%;
  }
}

@keyframes fall {
  from {
    top: -20%;
  }
  to {
    top: 120%;
  }
}
@-webkit-keyframes rotate1 {
  from {
    transform: translateX(0vw) rotate(0deg);
  }
  to {
    transform: translateX(10vw) rotate(-80deg) rotateX(180deg);
  }
}
@keyframes rotate1 {
  from {
    transform: translateX(0vw) rotate(0deg);
  }
  to {
    transform: translateX(10vw) rotate(-80deg) rotateX(180deg);
  }
}
@-webkit-keyframes rotate2 {
  from {
    transform: translateX(10vw) rotate(-45deg);
  }
  to {
    transform: translateX(0vw) rotate(0deg);
  }
}
@keyframes rotate2 {
  from {
    transform: translateX(10vw) rotate(-45deg);
  }
  to {
    transform: translateX(0vw) rotate(0deg);
  }
}
.leaf li:nth-child(1) {
  left: 5vw;
  -webkit-animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.leaf li:nth-child(2) {
  left: 15vw;
  -webkit-animation: fall 15s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 15s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.leaf li:nth-child(3) {
  left: 28vw;
  -webkit-animation: fall 9s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
          animation: fall 9s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.leaf li:nth-child(4) {
  left: 40vw;
  -webkit-animation: fall 8s linear infinite, rotate2 4s ease-in-out infinite alternate;
          animation: fall 8s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.leaf li:nth-child(5) {
  left: 55vw;
  -webkit-animation: fall 10s linear infinite, rotate1 4s ease-in-out infinite alternate;
          animation: fall 10s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.leaf li:nth-child(6) {
  left: 70vw;
  -webkit-animation: fall 11s linear infinite, rotate2 3s ease-in-out infinite alternate;
          animation: fall 11s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.leaf li:nth-child(7) {
  left: 85vw;
  -webkit-animation: fall 7s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
          animation: fall 7s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.leaf li:nth-child(8) {
  left: 95vw;
  -webkit-animation: fall 7s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 7s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.mainvisual {
  position: relative;
}
.mainvisual .pc__mainvisual {
  max-width: 100vw;
}
.mainvisual .sp__mainvisual {
  display: none;
}
@media (max-width: 900px) {
  .mainvisual .pc__mainvisual {
    display: none;
  }
  .mainvisual .sp__mainvisual {
    display: block;
    max-height: 100vh;
  }
}
.mainvisual .title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.spa .title {
  color: rgba(1, 69, 146, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.spa .title::after, .spa .title::before {
  content: "";
  border-top: 3px solid rgba(1, 69, 146, 0.8);
  flex-grow: 1;
}
.spa .rink {
  color: rgba(1, 69, 146, 0.8);
}

.active .title {
  color: rgba(40, 142, 162, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.active .title::after, .active .title::before {
  content: "";
  border-top: 3px solid rgba(40, 142, 162, 0.8);
  flex-grow: 1;
}
.active .rink {
  color: rgba(40, 142, 162, 0.8);
}

.gallery .title {
  color: rgba(89, 64, 6, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.gallery .title::after, .gallery .title::before {
  content: "";
  border-top: 3px solid rgba(89, 64, 6, 0.93);
  flex-grow: 1;
}
.gallery .rink {
  color: rgba(89, 64, 6, 0.93);
}

.facility .title {
  color: rgba(197, 145, 81, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.facility .title::after, .facility .title::before {
  content: "";
  border-top: 3px solid rgba(197, 145, 81, 0.7);
  flex-grow: 1;
}
.facility .rink {
  color: rgba(197, 145, 81, 0.7);
}

.visit .title {
  color: rgba(251, 163, 55, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.visit .title::after, .visit .title::before {
  content: "";
  border-top: 3px solid rgba(251, 163, 55, 0.7);
  flex-grow: 1;
}
.visit .rink {
  color: rgba(251, 163, 55, 0.7);
}

.about section {
  gap: 20px;
}
.about .title--vertical {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 5rem;
}
@media (max-width: 900px) {
  .about .title--vertical {
    writing-mode: horizontal-tb;
    text-align: center;
    font-size: 3rem;
  }
}
.about .title {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about .title::after, .about .title::before {
  content: "";
  border-top: 3px solid #000;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .about .title {
    font-size: 2rem;
  }
}
@media (max-width: 900px) {
  .about .sub--title {
    font-size: 1.2rem;
  }
}
.about .container {
  max-width: 1100px;
}
.about .inner {
  margin-inline: unset;
}
.about .text--box {
  width: 70%;
  margin-right: auto;
}
@media (max-width: 900px) {
  .about .text--box {
    width: 100%;
  }
}
.about .img--box {
  margin-bottom: -100px;
  margin-left: auto;
  width: 70%;
}
@media (max-width: 900px) {
  .about .img--box {
    width: 100%;
    margin-bottom: 0px;
  }
}

.access .title {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.access .title::after, .access .title::before {
  content: "";
  border-top: 3px solid #000;
  flex-grow: 1;
}

.back--color {
  background-color: #fff;
  opacity: 0.85;
}

.back--Color {
  background-color: rgba(255, 255, 255, 0.7647058824);
}

.news {
  padding-block: 50px;
  display: block;
}
.news .title {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.news .title::after, .news .title::before {
  content: "";
  border-top: 3px solid #000;
  flex-grow: 1;
}
.news__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media (max-width: 900px) {
  .news__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.news__box--item {
  margin-top: 50px;
}
.news__list {
  margin-block: 50px;
  padding-block: 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.news__title {
  color: red;
}
.news__text {
  font-size: 1.8rem;
}
.news img {
  height: auto;
}

.contact .title {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact .title::after, .contact .title::before {
  content: "";
  border-top: 3px solid #000;
  flex-grow: 1;
}

.top__page .even__box .img--box {
  order: -1;
}
@media (max-width: 900px) {
  .top__page .even__box .img--box {
    order: 0;
  }
}

.about__page .odd__box .title--vertical {
  order: 2;
}
@media (max-width: 900px) {
  .about__page .odd__box .title--vertical {
    order: 0;
  }
}
.about__page .even__box .img--box {
  margin-left: 0;
  margin-right: auto;
}
.about__page .even__box .text--box {
  margin-right: 0;
  margin-left: auto;
}

.Slick__box img {
  aspect-ratio: 16/11;
}

.slick__box .slick-track {
  display: flex;
}
.slick__box .slick-slide {
  height: auto;
  margin-inline: 20px;
}
.slick__box .slick-slide > div {
  height: 100%;
}
.slick__box .slick__box > li {
  height: 100%;
}
.slick__box .text--box {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.slick__box .sub--title {
  font-size: 1.8rem;
  align-self: flex-end;
}
.slick__box .text {
  flex: 1;
  padding-block: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.4rem;
}
.slick__box .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  padding: 10px 30px;
  border: 2px #000 solid;
  border-radius: 20px;
  box-shadow: 0px 20px 13px -10px rgba(0, 0, 0, 0.39);
  font-weight: bold;
  width: 100%;
  justify-content: center;
}
.slick__box .btn:hover {
  transform: scale(1.02);
}
@media (max-width: 900px) {
  .slick__box .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    padding: 10px 30px;
    border: 2px #000 solid;
    border-radius: 20px;
    box-shadow: 0px 20px 13px -10px rgba(0, 0, 0, 0.39);
    font-weight: bold;
  }
  .slick__box .btn:hover {
    transform: scale(1.02);
  }
}

.spa__page .spa {
  display: block;
}
.spa__page .spa__content {
  gap: 20px;
}
@media (max-width: 900px) {
  .spa__page .spa__content {
    flex-direction: column;
  }
}
.spa__page .spa__content .title--vertical {
  writing-mode: vertical-rl;
  font-size: 5rem;
  color: #fff;
}
@media (max-width: 900px) {
  .spa__page .spa__content .title--vertical {
    writing-mode: horizontal-tb;
  }
}
.spa__page .spa__text--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  width: 50%;
}
@media (max-width: 900px) {
  .spa__page .spa__text--box {
    width: 100%;
  }
}
.spa__page .spa__text {
  display: flex;
  flex-wrap: wrap;
}
.spa__page .spa__text dt {
  font-weight: 900;
  width: 20%;
}
.spa__page .spa__text dd {
  width: 80%;
}
.spa__page .even__box {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .spa__page .even__box {
    flex-direction: column;
  }
}
.spa__page .img--box img {
  aspect-ratio: 16/11;
}

.active__page .active {
  display: block;
}
.active__page .active__content {
  gap: 20px;
}
@media (max-width: 900px) {
  .active__page .active__content {
    flex-direction: column;
  }
}
.active__page .active__content .title--vertical {
  writing-mode: vertical-rl;
  font-size: 5rem;
  color: #fff;
}
@media (max-width: 900px) {
  .active__page .active__content .title--vertical {
    writing-mode: horizontal-tb;
  }
}
.active__page .active__text--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  width: 50%;
}
@media (max-width: 900px) {
  .active__page .active__text--box {
    width: 100%;
  }
}
.active__page .active__text {
  display: flex;
  flex-wrap: wrap;
}
.active__page .active__text dt {
  font-weight: 900;
  width: 20%;
}
.active__page .active__text dd {
  width: 80%;
}
.active__page .even__box {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .active__page .even__box {
    flex-direction: column;
  }
}

.gallery__page .gallery {
  display: block;
}
.gallery__page .gallery__content {
  gap: 20px;
}
@media (max-width: 900px) {
  .gallery__page .gallery__content {
    flex-direction: column;
  }
}
.gallery__page .gallery__content .title--vertical {
  writing-mode: vertical-rl;
  font-size: 5rem;
  color: #fff;
}
@media (max-width: 900px) {
  .gallery__page .gallery__content .title--vertical {
    writing-mode: horizontal-tb;
  }
}
.gallery__page .gallery__text--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  width: 50%;
}
@media (max-width: 900px) {
  .gallery__page .gallery__text--box {
    width: 100%;
  }
}
.gallery__page .gallery__text {
  display: flex;
  flex-wrap: wrap;
}
.gallery__page .gallery__text dt {
  font-weight: 900;
  width: 20%;
}
.gallery__page .gallery__text dd {
  width: 80%;
}
.gallery__page .even__box {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .gallery__page .even__box {
    flex-direction: column;
  }
}

.facility__page .facility {
  display: block;
}
.facility__page .facility__content {
  gap: 20px;
}
@media (max-width: 900px) {
  .facility__page .facility__content {
    flex-direction: column;
  }
}
.facility__page .facility__content .title--vertical {
  writing-mode: vertical-rl;
  font-size: 5rem;
  color: #fff;
}
@media (max-width: 900px) {
  .facility__page .facility__content .title--vertical {
    writing-mode: horizontal-tb;
  }
}
.facility__page .facility__text--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  width: 50%;
}
@media (max-width: 900px) {
  .facility__page .facility__text--box {
    width: 100%;
  }
}
.facility__page .facility__text {
  display: flex;
  flex-wrap: wrap;
}
.facility__page .facility__text dt {
  font-weight: 900;
  width: 20%;
}
.facility__page .facility__text dd {
  width: 80%;
}
.facility__page .even__box {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .facility__page .even__box {
    flex-direction: column;
  }
}

.visit__page .visit {
  display: block;
}
.visit__page .visit__content {
  gap: 20px;
}
@media (max-width: 900px) {
  .visit__page .visit__content {
    flex-direction: column;
  }
}
.visit__page .visit__content .title--vertical {
  writing-mode: vertical-rl;
  font-size: 5rem;
  color: #fff;
}
@media (max-width: 900px) {
  .visit__page .visit__content .title--vertical {
    writing-mode: horizontal-tb;
  }
}
.visit__page .visit__text--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  width: 50%;
}
@media (max-width: 900px) {
  .visit__page .visit__text--box {
    width: 100%;
  }
}
.visit__page .visit__text {
  display: flex;
  flex-wrap: wrap;
}
.visit__page .visit__text dt {
  font-weight: 900;
  width: 20%;
}
.visit__page .visit__text dd {
  width: 80%;
}
.visit__page .even__box {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .visit__page .even__box {
    flex-direction: column;
  }
}

.news--content__page .news__content {
  display: block;
  padding-block: 50px;
}
.news--content__page .news__content--title {
  display: flex;
  gap: 30px;
}

.access__page section.access {
  display: block;
  padding-block: 2%;
  background-color: rgba(255, 255, 255, 0.1411764706);
}
.access__page .access .title,
.access__page .btn__list {
  margin-inline: auto;
  padding-inline: 3%;
  max-width: 1500px;
}
.access__page .access .title {
  margin-bottom: 40px;
}
.access__page .btn {
  background-color: #fff;
}
.access__page .btn__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.access__page .img--box {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
.access__page .img-content-wrapper {
  position: relative;
  width: 100%;
}
.access__page .img-content-wrapper > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  -o-object-fit: unset;
     object-fit: unset;
}
.access__page .map--item {
  position: absolute;
  top: 69%;
  left: 55%;
  transform: translate(-50%, -50%);
}
.access__page .map--item a {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  white-space: nowrap;
}

.booking__page .booking .title {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.booking__page .booking .title::after, .booking__page .booking .title::before {
  content: "";
  border-top: 3px solid #000;
  flex-grow: 1;
}
.booking__page section {
  display: block;
  padding-block: 2%;
}
.booking__page form {
  margin-inline: auto;
  max-width: 600px;
  width: 90%;
}
.booking__page form dt {
  margin-top: 5px;
  font-weight: bold;
}
.booking__page form dd {
  background-color: rgba(155, 155, 155, 0.4784313725);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  margin-block: 10px;
  box-sizing: border-box;
}
.booking__page form dd input,
.booking__page form dd select {
  width: 100%;
}
.booking__page form .submit--area {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
  text-align: center;
}
.booking__page form #submit-alert {
  display: block;
  width: 60%;
  max-width: 300px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #4a543a 0%, #2e3524 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.booking__page form #submit-alert:hover {
  background: linear-gradient(135deg, #5b6647 0%, #3c4530 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.15);
}
.booking__page form #submit-alert:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.booking__page .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 900;
}
.booking__page .modal.show {
  opacity: 1;
  visibility: visible;
}
.booking__page .modal .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
  width: 1000px;
}
.booking__page .modal ul {
  display: flex;
  gap: 20px;
  padding-block: 30px;
}
@media (max-width: 900px) {
  .booking__page .modal ul {
    overflow-x: auto;
    padding-bottom: 15px;
    margin-inline: -15px;
    padding-inline: 15px;
  }
}
.booking__page .modal button {
  display: flex;
  flex-direction: column;
}
.booking__page .modal button .img--box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 10px;
}
.booking__page .modal button .plan {
  margin-left: 40px;
}
@media (max-width: 900px) {
  .booking__page .modal button p {
    font-size: 0.8rem;
  }
}

.contact__page section.contact {
  display: block;
  padding-block: 50px;
}
.contact__page form {
  margin-inline: auto;
  max-width: 600px;
  width: 90%;
}
.contact__page form dt {
  margin-top: 5px;
  font-weight: bold;
}
.contact__page form dd {
  background-color: rgba(155, 155, 155, 0.4784313725);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  margin-block: 10px;
  box-sizing: border-box;
}
.contact__page form dd input,
.contact__page form dd select,
.contact__page form dd textarea {
  width: 100%;
}
.contact__page form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact__page form .submit--area {
  margin-top: 40px;
  text-align: center;
}
.contact__page form #submit {
  display: block;
  margin-inline: auto;
  width: 60%;
  max-width: 300px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #4a543a 0%, #2e3524 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.contact__page form #submit:hover {
  background: linear-gradient(135deg, #5b6647 0%, #3c4530 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.15);
}
.contact__page form #submit:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.required {
  color: red;
  border: 2px solid red;
  font-size: 1.8rem;
  padding: 5px;
}

.menu--mask.is-active,
footer {
  margin-block: 100px 60px;
}
.menu--mask.is-active .info,
footer .info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 900px) {
  .menu--mask.is-active .info,
footer .info {
    grid-template-columns: repeat(1, 1fr);
  }
}
.menu--mask.is-active .info__top,
footer .info__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  .menu--mask.is-active .info__top,
footer .info__top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.menu--mask.is-active .info__top--item,
footer .info__top--item {
  display: flex;
  background-color: #fff;
}
.menu--mask.is-active .info__top--item a,
footer .info__top--item a {
  width: 100%;
  padding: 15px 30px;
  text-align: left;
  align-self: center;
}
.menu--mask.is-active .info__top .rink,
footer .info__top .rink {
  font-weight: 700;
}
.menu--mask.is-active .info__middle,
footer .info__middle {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.8rem;
}
.menu--mask.is-active .info__middle .back--color,
footer .info__middle .back--color {
  background-color: #fff;
}
.menu--mask.is-active .info__middle .web__logo,
footer .info__middle .web__logo {
  width: 150px;
}
.menu--mask.is-active .info__middle--days,
footer .info__middle--days {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.menu--mask.is-active .info__middle--btn,
footer .info__middle--btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  padding: 10px 30px;
  border: 2px #000 solid;
  border-radius: 20px;
  box-shadow: none;
  font-weight: bold;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.menu--mask.is-active .info__middle--btn:hover,
footer .info__middle--btn:hover {
  transform: scale(1.02);
}
@media (max-width: 900px) {
  .menu--mask.is-active .info__middle--btn,
footer .info__middle--btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    padding: 10px 30px;
    border: 2px #000 solid;
    border-radius: 20px;
    box-shadow: 0px 20px 13px -10px rgba(0, 0, 0, 0.39);
    font-weight: bold;
  }
  .menu--mask.is-active .info__middle--btn:hover,
footer .info__middle--btn:hover {
    transform: scale(1.02);
  }
}
.menu--mask.is-active .info__end,
footer .info__end {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu--mask.is-active .info__end a,
footer .info__end a {
  font-weight: bold;
  color: #fff;
}
.menu--mask.is-active .copyright,
footer .copyright {
  font-size: 1.8rem;
  color: #fff;
}

/* scss/style.scss の一番下に追加 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a3302; /* サイトの背景色 */
  z-index: 9999;
  transition: opacity 1.5s, visibility 1.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 波紋アニメーションのコンテナ */
}
#loading::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  border: 4px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-animation: loading-ripple 1.5s infinite;
          animation: loading-ripple 1.5s infinite;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

/* 波紋アニメーションの定義 */
@-webkit-keyframes loading-ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes loading-ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/*# sourceMappingURL=style.css.map */