/*------------------------------
  private paty
------------------------------*/
.private-party {
  width: 100%;
  position: relative;
  color: #fff;
  background-color: #141414;
  overflow: hidden;
  z-index: 0;
}

.private-party::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../img/eyecatch.jpg");

  background-size: cover;
  background-position: center;
  filter: blur(10px);
}

/*------------------------------
  20-service
------------------------------*/
.service .container .section-heading {
  text-align: center;
}

/*------------------------------
  facilities
------------------------------*/
.facilities {
  background: #E7E7E7;
}

.facilities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.facilities__item {
  width: calc(33.33% - 27px);
  text-align: center;
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 20px;
}

.facilities__item img {
  aspect-ratio: 16/8;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .facilities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .facilities__item {
    width: calc(33.33% - 14px);
    padding-bottom: 10px;
  }

  .facilities__item p {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 600px) {
  .facilities__item {
    width: calc(50% - 10px);
  }
}

/*------------------------------
  slider
------------------------------*/
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee {
  display: flex;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: scrollX 35s linear infinite;
}

@keyframes scrollX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slide {
  width: 400px;
  flex-shrink: 0;
  position: relative;
}

.slide-img {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caption {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 3%;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 15px;
}

.caption-line {
  flex-grow: 1;
  height: 1px;
  background-color: currentColor;
  opacity: 0.5;
  text-shadow: #141414 0 0 5px;
}

.caption-text {
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  white-space: nowrap;
  text-shadow: #141414 0 0 5px;
}

@media screen and (max-width: 768px) {
  .slide {
    width: 280px;
  }
}

/*------------------------------
  price
------------------------------*/
.price .container .notice-text {
  margin: 0 0 25px;
}

.price .container .price-table__wrapper .price-table .price-table__head {
  color: #fff;
}

.price .container .price-table__wrapper .price-table td span {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.price__note {
  background: #E7E7E7;
  text-align: center;
  padding: 50px 20px;
  margin: 0 0 100px;
}

.price__note-title {
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 20px;
}

.price__notice-list {
  display: inline-block;
  font-size: 1.6rem;
}

.price__notice-list p {
  text-align: left;
}

.price__notice-item {
  display: flex;
  justify-content: left;
  align-items: center;
}

.price__notice-item dt {
  text-align: left;
}

.price__notice-item dd {
  text-align: left;
}

.price__notice-item dd span {
  font-size: 1.4rem;
}

.opt-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .price__notice-list {
    font-size: 1.5rem;
  }

  .price__notice-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .opt-wrapper {
    flex-direction: column;
  }

  .opt-wrapper .menu-column {
    padding: 0;
  }
}