@charset "UTF-8";

/* =============================================================
  event.css
 =============================================================== */

/* archive-event
---------------------------------------------------------------- */
#archive-event .page-title,
#single-event .page-title {
  width: 25.6%;
  max-width: 493px;
}

#event {
  padding: 35px 0 50px;
  background: #d4f9ff;
  width: 100%;
}

/* archive-event__block__top */
.archive-event__block__top {
  display: block;
  text-align: center;
  margin: 0 auto 20px;
  color: var(--navy);
}

.archive-event__block__top .year {
  font-size: 2.2rem;
  font-weight: 600;
  font-family: var(--font-montserrat);
  line-height: 1;
  margin-bottom: 10px;
}

.archive-event__block__top .space {
  display: block;
  width: 50px;
}

.week__wrap {
  width: 100%;
  position: relative;
}

.week__block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-family: var(--font-montserrat);
}

.week__block li {
  font-size: 3.6rem;
  font-weight: 600;
  padding: 15px;
  color: var(--navy);
  position: relative;
  line-height: 1.2;
  transition: all 0.5s;
}

.week__block li.separator {
  padding: 2px;
}

.week__block li:hover {
  transform: scale(1.1, 1.1);
}

.week__block li a {
  color: var(--navy);
}

.week__block li:hover a {
  opacity: 1;
}

.week__block li.active {
  position: relative;
  background: var(--navy);
  border-radius: 50%;
  text-align: center;
  width: 2.56em;
  height: 2.56em;
  padding: 10px;
}

.week__block li.active a {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.week__block li span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 auto;
}

#event .prev-arrow {
  height: 16px;
  width: 16px;
  display: block;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(135deg);
}

#event .next-arrow {
  height: 16px;
  width: 16px;
  display: block;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

/* event__block */
.event__block ul {
  display: block;
  width: 100%;
  margin: 0 0 25px;
}

.event-list {
  width: 100%;
  display: flex;
  background: var(--white);
  padding: 20px 60px;
  margin: 0 0 20px;
  border-radius: 100vmax;
}

.event-list:hover {
  transform: scale(1.1, 1.1);
  opacity: 1;
}

.event-list__date {
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.5;
  text-align: center;
  padding: 0;
  width: 15%;
}

.event-list__date span {
  font-size: 2.2rem;
  font-weight: 500;
}

.sunday,
.nationalHoliday {
  color: #e23d57;
}

.saturday {
  color: #5d8aff;
}

.event-list__photo {
  width: 250px;
  height: 150px;
  margin-left: 3%;
  overflow: hidden;
  position: relative;
}

.event-list__photo:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.event-list__photo .event-list__photo__bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: blur(1.5px);
}

.event-list__photo .event-list__photo__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.event-list__detail {
  flex: 1;
  margin-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-list__detail h3 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.event-list__detail p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 1px;
}

@media only screen and (max-width: 1024px) {
  .week__block li {
    font-size: 2.8rem;
    padding: 10px;
  }

  .week__block li.active {
    width: 2.2em;
    height: 2.2em;
  }

  .week__block li.separator {
    padding: 6px;
  }

  .event-list__date {
    font-size: 2.8rem;
    width: 18%;
  }

  .event-list__detail h3 {
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 768px) {
  #archive-event .page-title,
  #single-event .page-title {
    width: 53.3%;
    max-width: 400px;
  }

  #event {
    padding: 40px 0 10px;
  }

  .archive-event__block__top {
    margin-bottom: 20px;
  }

  .archive-event__block__top .year {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .week__block li {
    font-size: 3.2rem;
    line-height: 1.15;
    padding: 10px;
  }

  .week__block li.active {
    width: 2.05em;
    height: 2.05em;
    padding: 8px;
  }

  .event__block ul {
    margin: 0 0 20px;
  }

  .event-list {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
    padding: 15px 20px;
    margin: 0 0 15px;
    border-radius: 15px;
  }

  .event-list__date {
    font-size: 1.854rem;
    line-height: 1.5;
    max-width: 70px;
    width: 27%;
  }

  .event-list__date span {
    font-size: 1.296rem;
  }

  .event-list__photo {
    width: 69%;
    max-width: 250px;
    height: 135px;
    margin-left: 0;
  }

  .event-list__detail {
    flex-basis: 100%;
    margin-left: 0;
  }

  .event-list__detail h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }

  .event-list__detail p {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
}

@media only screen and (max-width: 374px) {
  .event-list__date {
    width: 35%;
  }

  .event-list__photo {
    width: 62%;
    max-width: 250px;
    height: 100px;
  }
}

/* single-event
---------------------------------------------------------------- */
#single-event .event__block {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 130px 70px;
  margin-bottom: 40px;
}

.single-event__date {
  border: 1px solid var(--navy);
  border-radius: 100vmax;
  display: flex;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 1.8rem;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 5px 0;
  width: 260px;
}

.single-event__date .date {
  font-weight: 700;
  font-size: 2.4rem;
}

.single-event__title h3 {
  font-size: 3.8rem;
  line-height: 1.4;
  margin-bottom: 25px;
}

.single-event__title h3 a {
  text-decoration: underline;
}

.single-event__title h4 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 35px;
}

.single-event__slider {
  margin-bottom: 40px;
}

.swiper-slide {
  aspect-ratio: 840 / 495;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-slide .swiper-slide__photo__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.swiper-slide .swiper-slide__photo__bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: blur(1.5px);
}

.swiper-slide:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.swiper-pagination01 {
  position: relative;
  margin-top: 25px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  height: 10px;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #bebebe;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.5s;
}

.swiper-pagination-bullet-active {
  background: var(--purple);
}

.single-news__box {
  margin-bottom: 35px;
}

.single-event__list {
  border-top: 1px solid var(--gray);
  padding: 30px 10px;
  gap: 20px;
  display: flex;
}

.single-event__list:last-of-type {
  border-bottom: 1px solid var(--gray);
}

.single-event__list dt {
  width: 20%;
  font-weight: 700;
  line-height: 1.8;
}

.single-event__list dd {
  line-height: 1.8;
  flex: 1;
  min-width: 0;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.single-event__list dd ul {
  margin: 0;
}

.single-event__list dd li {
  text-indent: -1em;
  padding-left: 1em;
}

.single-event__collaboration a {
  display: block;
  max-width: 303px;
  margin: 0 auto 40px;
}

.single-event__photolist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 60px;
}

.single-event__photolist::after {
  content: "";
  display: block;
  width: 165px;
}

.single_event__photo {
  background: #dfdfdf;
  aspect-ratio: 1 / 1;
  width: 165px;
  overflow: hidden;
  position: relative;
}

.single_event__photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.single-event__link {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.single-event__link .link-button {
  border: 1px solid var(--navy);
  border-radius: 100vmax;
  color: var(--navy);
  align-items: center;
  font-size: 1.8rem;
  font-family: var(--font-zenmaru);
  font-weight: 700;
  display: flex;
  gap: 25px;
  max-width: 320px;
  margin-bottom: 20px;
  padding: 11px 30px;
  position: relative;
  text-align: center;
  transition: all 0.5s;
  width: 100%;
}

.link-button .icon {
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--white);
  width: 60px;
  height: 47px;
}

.link-button.button--food {
  background: #ff8bb0;
}

.link-button.button--food .icon {
  mask-image: url(../images/icon_food.svg);
}

.link-button.button--access {
  background: #ff9b50;
}

.link-button.button--access .icon {
  margin-right: 20px;
  mask-image: url(../images/icon_access.svg);
}

@media only screen and (max-width: 1024px) {
  #single-event .event__block {
    padding: 60px 60px 70px;
  }

  .single-event__link .link-button {
    gap: 20px;
  }

  .link-button .icon {
    width: 55px;
    height: 42px;
  }
}

@media only screen and (max-width: 768px) {
  #single-event .event__block {
    padding: 20px;
    border-radius: 10px;
  }

  .single-event__date {
    font-size: 1.4rem;
    gap: 10px;
    margin-bottom: 25px;
    padding: 2px 0;
    width: 205px;
  }

  .single-event__date .date {
    font-size: 2.2rem;
  }

  .single-event__title h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .single-event__title h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .single-event__slider {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    margin-bottom: 25px;
  }

  .swiper-pagination01 {
    margin-top: 15px;
  }

  .single-news__box {
    margin-bottom: 25px;
  }

  .single-event__list {
    padding: 22px 0;
    gap: 5px;
    flex-direction: column;
  }

  .single-event__list dt {
    width: 100%;
    line-height: 1.6;
  }

  .single-event__list dd {
    line-height: 1.6;
    width: 100%;
  }

  .single-event__collaboration a {
    margin: 0 auto 30px;
  }

  .single-event__photolist {
    gap: 15px;
    margin-bottom: 5px;
  }

  .single-event__photolist::after {
    width: 130px;
  }

  .single_event__photo {
    aspect-ratio: 130 / 90;
    width: 130px;
  }

  .single-event__link {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .single-event__link .link-button {
    font-size: 1.6rem;
    gap: 10px;
    max-width: 270px;
    margin-bottom: 10px;
    padding: 11px 30px;
  }

  .link-button .icon {
    width: 50px;
    height: 37px;
  }
}

@media only screen and (max-width: 374px) {
  .single-event__photolist::after {
    content: none;
  }

  .single_event__photo {
    width: 106px;
  }
}
