@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700&family=Zen+Old+Mincho:wght@400;600;700&display=swap');

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'EB Garamond', 'Zen Old Mincho', serif;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  background-color: #000;
}

img {
  width: 100%;
  height: auto;
}

.mv {
  height: 100vw;
  height: 100dvh;
  width: 100%;
  position: relative;
}

.mv__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  animation: fadein 1s linear 0.3s 1 forwards;
}

.mv__bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

.mv__front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.mv__wrapper {
  position: absolute;
  top: 55%;
  left: 50px;
  transform: translateY(-50%);
  max-width: 50%;
}

.mv__ttl {
  color: #fff;
  font-size: clamp(1.3em, 4.1vw, 2em);
  line-height: 1.5;
}

.mv__ttl .--ja {
  font-size: 1.5em;
  display: inline-block;
  padding-right: 0.4em;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: fadein 1s linear 1.3s 1 forwards;
}

.mv__ttl .--en {
  display: inline-block;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  opacity: 0;
  animation: fadein 1s linear 1.8s 1 forwards;
}

.mv__msg {
  color: #fff;
  margin-top: 3em;
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0;
  animation: fadein 1s linear 3s 1 forwards;
}

.mv__msg .--en {
  font-size: 0.8em;
}

.mv__links {
  position: fixed;
  bottom: 50px;
  left: 50px;
  font-size: 1em;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  animation: fadein 1s linear 4.5s 1 forwards;
}
.icon-instagram {
  color: #ff0069;
  background: -webkit-linear-gradient(45deg, #ff0069, #ffd600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv__line {
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: block;
  width: 40px;
  opacity: 0;
  animation: fadein 1s linear 4.5s 1 forwards;
}
.mv__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.mv__links ul a {
  color: #fff;
}
.mv__links a i {
  display: inline-block;
  font-size: 0.9em;
  padding-right: 0.4em;
}

@media screen and (max-width: 599px) {
  .mv__wrapper {
    top: 5%;
    left: 30px;
    transform: translateY(0%);
    max-width: unset;
    height: calc(100vh - 160px);
    height: calc(100dvh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mv__ttl {
    font-size: clamp(1.4em, 5vw, 2em);
  }
  .mv__msg {
    margin-top: 2em;
  }
  .mv__links {
    left: 30px;
    bottom: 30px;
  }
  .mv__line {
    right: 30px;
    bottom: 30px;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mv__msg.mv__info a {
  color: #000;
}

.event-card {
  position: relative;
  padding-left: 40px;
  margin-top: 50px;
  width: fit-content;
}

.event-card__thumb {
  width: 130px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 20;
  transform: translateY(-50%);
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.16));
}

.event-card__thumb a {
  transition: filter 0.6s;
}
.event-card__thumb a:hover {
  filter: brightness(1.1);
}

.event-card__main {
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
  padding: 20px 40px;
  padding-left: 110px;
  transition: background-color 0.5s;
}

.event-card__main:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.event-card__ttl {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.event-card__dsc {
  font-size: 0.9em;
  line-height: 1.7;
}

.event-card__date {
  font-size: 1.2em;
  line-height: 1;
  margin-top: 0.6em;
  display: block;
}
.event-card__date .--large {
  font-size: 1.7em;
  padding-right: 0.1em;
}
.event-card__date .--large:not(:first-child) {
  padding-left: 0.2em;
}
.event-card__date .--large:not(:first-child).--day {
  padding-left: 0.1em;
  font-size: 1.5em;
}
.event-card__datime {
  font-size: 0.9em;
}
.event-card__lead {
  color: #23444e;
  font-weight: 700;
  text-align: right;
  position: relative;
  top: 0.6em;
  left: 20px;
}
.modaal-container {
  background-color: transparent !important;
}
.modaal-gallery-item img {
  object-fit: contain;
  height: 80vh;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-only {
    display: inherit;
  }
  .event-card {
    font-size: 0.8em;
    padding-left: 0;
  }
  .event-card__main {
    padding-left: 20px;
  }

  .event-card__thumb {
    width: 17vh;
    top: 0;
    left: 0;
    transform: translateY(-110%);
  }
}
