@charset "UTF-8";
html {
  font-size: 16px;
}

/*! transitionベース ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.schedule-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 75px;
  margin: 150px auto 0;
  width: 75%;
  text-align: center;
}
@media (max-width: 1366px) {
  .schedule-contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-aspect-ratio: 3/4) {
  .schedule-contents {
    width: 100%;
  }
}
@media (max-width: 1025px) {
  .schedule-contents {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .schedule-contents {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 640px) {
  .schedule-contents {
    margin: 30px auto 0;
  }
}
.schedule-contents-info {
  color: #432;
}
.schedule-contents-info:hover {
  opacity: 0.5;
}
.schedule-contents-info-inner {
  overflow: hidden;
  position: relative;
  transition: all 0.6s ease;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.schedule-contents-info-inner img {
  width: 100%;
  transition: all 0.6s ease;
  overflow: hidden;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.schedule-contents-info-inner:has(.advance-btn:hover) img {
  transform: scale(1.2);
}
.schedule-contents-info-inner .date-location {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  border: 0.5px solid #a27a81;
  z-index: 1;
}
.schedule-contents-info-inner .date-location .date {
  font-family: "Sirivennela", sans-serif;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  padding: 10px;
  background: #e3cdd1;
  line-height: 0.8;
}
.schedule-contents-info-inner .date-location .date span {
  font-size: 1.25rem;
}
@media (max-width: 640px) {
  .schedule-contents-info-inner .date-location .date {
    font-size: 1.25rem;
  }
}
.schedule-contents-info-inner .date-location .location {
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .schedule-contents-info-inner .date-location .location {
    font-size: 0.75rem;
  }
}
.schedule-contents-info-inner .advance-btn {
  margin: 10px auto 0;
  max-width: 100%;
  width: 100%;
}
.schedule-contents-info-inner-reserve {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  color: #fff;
  background: #432;
  padding: 5px;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 640px) {
  .schedule-contents-info-inner-reserve {
    font-size: 0.75rem;
  }
}
.schedule-contents-info-description {
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 640px) {
  .schedule-contents-info-description {
    font-size: 0.75rem;
  }
}
.schedule > .advance-btn {
  display: block;
  margin: 100px auto 50px;
}

.schedule-container {
  max-width: 900px;
  margin: 75px auto 0;
}
@media (max-width: 820px) {
  .schedule-container {
    margin: 100px auto 0;
  }
}
@media (max-width: 640px) {
  .schedule-container {
    margin: 50px auto 0;
  }
}
.schedule-container__section-title {
  color: #a27a81;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
@media (max-width: 640px) {
  .schedule-container__section-title {
    font-size: 1rem;
  }
}
.schedule-container__info {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 50px;
  margin-bottom: 100px;
}
@media (max-width: 640px) {
  .schedule-container__info {
    padding: 20px;
    margin-bottom: 50px;
  }
}
.schedule-container__info .advance-btn {
  margin: 0;
}
.schedule-container__inner {
  margin-bottom: 20px;
}
.schedule-container__inner:last-child {
  margin-top: 50px;
}
.schedule-container__head {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #a27a81;
}
.schedule-container__head::before {
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: #a27a81;
  margin-right: 10px;
  font-size: 1rem;
}
.schedule-container__head.day::before {
  content: "\f073";
}
.schedule-container__head.loca::before {
  content: "\f030";
}
.schedule-container__head.reserve::before {
  content: "\f3cf";
}
.schedule-container__head.time::before {
  content: "\f017";
}
.schedule-container__head.locainfo::before {
  content: "\f05a";
}
.schedule-container__head.meetpoint::before {
  content: "\f3c5";
}
.schedule-container__head.map::before {
  content: "\f57d";
}
.schedule-container__head.address::before {
  content: "\f015";
}
.schedule-container__head.access::before {
  content: "\f238";
}
.schedule-container__head.careful::before {
  content: "\f0f3";
}
.schedule-container__head.reservation::before {
  content: "\f11e";
}
.schedule-container .title-category {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.schedule-container__data {
  margin-left: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
  list-style: circle;
}
.schedule-container__data.time-price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
}
.schedule-container__data.place {
  border: 1px solid #432;
  padding: 2px 5px;
  display: inline-block;
  transition: all 0.6s ease;
  font-size: 0.625rem;
}
.schedule-container__data.place:hover {
  transform: scale(0.9);
  transition: all 0.6s ease;
}
.schedule-container__data iframe {
  width: 75%;
}
@media (max-width: 820px) {
  .schedule-container__data iframe {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 640px) {
  .schedule-container__data iframe {
    height: 200px;
  }
}
.schedule-container__data a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.schedule-container__data a:hover {
  opacity: 0.7;
}
.schedule-container__data .advance-btn {
  text-decoration: none;
  margin: 0;
  display: block;
  transition: all 0.6s ease;
}
.schedule-container__location-image {
  margin-bottom: 30px;
  cursor: pointer;
}
.schedule-container__location-image .schedule-container__main-image {
  max-width: 100%;
  margin-bottom: 20px;
}
.schedule-container__location-image .schedule-container__sub-image {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.schedule-container__location-image .schedule-container__sub-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.schedule-container__entry {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 50px;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media (max-width: 640px) {
  .schedule-container__entry {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }
}
.schedule-container__models {
  display: grid;
  gap: 10px;
  justify-items: center;
  transition: all 0.6s ease;
}
.schedule-container__models .name {
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .schedule-container__models .name {
    font-size: 0.75rem;
  }
}
.schedule-container__models:hover {
  transition: all 0.6s ease;
  transform: scale(1.2);
  opacity: 0.7;
}

.meeting-map-image {
  display: block;
  margin-bottom: 20px;
}

.is-highlight {
  color: #cf3d32;
}

.floating-reserve-wrap {
  position: fixed;
  z-index: 9999;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 641px) {
  .floating-reserve-wrap {
    bottom: 10%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    transform: translateY(50px);
    background: #fff;
  }
  .floating-reserve-wrap.is-show {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 640px) {
  .floating-reserve-wrap {
    top: 50%;
    right: 0;
    left: auto;
    width: auto;
    transform: translate(50px, -50%);
  }
  .floating-reserve-wrap.is-show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
  }
}

@media (min-width: 641px) {
  .floating-reserve-inner {
    max-width: 400px;
  }
}/*# sourceMappingURL=schedule.css.map */