section#kv .swiper-slide {
  background-color: #FFF;
}
section#kv .swiper-slide img {
  margin: 0 auto;
  width: 100%;
}
section#kv .swiper-slide .popup-youtube:after {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background-image: url("../images/ico_video_play.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
section#kv .swiper-slide .popup-youtube img {
  aspect-ratio: 1920/708;
  object-fit: cover;
  width: 100%;
}
section#kv .swiper-pagination {
  bottom: 80px !important;
}
section#kv .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFF;
  border: solid 1px #004D48;
}

section#shortcuts {
  background-color: #ACD4C7;
  padding: 60px 0;
}
section#shortcuts nav {
  background-color: #FFF;
  display: flex;
  justify-content: space-around;
  padding: 32px;
  border-radius: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin: -20px 0;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  z-index: 1;
}
section#shortcuts nav .break {
  width: 1px;
  background-color: #DDD;
}
section#shortcuts nav a {
  width: 20%;
}
section#shortcuts nav a .ico {
  margin-bottom: 16px;
}
section#shortcuts nav a .ico img {
  margin: 0 auto;
  max-height: 110px;
}
section#shortcuts nav a .label {
  font-weight: 700;
  font-size: 1.2em;
}

section#events {
  margin-top: 50px;
  padding: 100px 0;
}
section#events h2 {
  font-size: 2.5em;
  margin-bottom: 32px;
}
section#events .event-list {
  display: flex;
  margin: 0 -12px;
  flex-wrap: wrap;
}
section#events .event-item {
  width: 25%;
  padding: 0 12px;
  margin-bottom: 50px;
}
section#events .event-item .pic img {
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
}
section#events .event-item .content {
  padding: 4px;
  font-size: 1.1em;
}
section#events .event-item .content .date {
  margin: 20px 0;
  font-weight: 700;
}

@media (max-width: 575px) {
  section#kv .swiper-slide {
    background-color: #FFF;
  }
  section#kv .swiper-slide img {
    margin: 0 auto;
    width: 100%;
  }
  section#kv .swiper-slide .popup-youtube:after {
    display: block;
    content: "";
    width: 60px;
    height: 60px;
    background-image: url("../images/ico_video_play.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  section#kv .swiper-slide .popup-youtube img {
    aspect-ratio: 1920/708;
    object-fit: cover;
    width: 100%;
  }
  section#kv .swiper-pagination {
    bottom: 16px !important;
  }

  section#shortcuts {
    background-color: #ACD4C7;
    padding: 20px 0;
  }
  section#shortcuts nav {
    margin: 0;
    padding: 20px;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }
  section#shortcuts nav .break {
    display: none;
  }
  section#shortcuts nav a {
    width: 50%;
    padding: 16px;
  }
  section#shortcuts nav a .ico {
    margin-bottom: 12px;
  }
  section#shortcuts nav a .ico img {
    margin: 0 auto;
    max-height: 40px;
  }
  section#shortcuts nav a .label {
    font-size: 1em;
  }

  section#events {
    margin-top: 0;
    padding: 50px 0;
  }
  section#events h2 {
    font-size: 2em;
    margin-bottom: 0;
  }
  section#events .list {
    margin: 0;
    flex-wrap: wrap;
  }
  section#events .list .item {
    width: 100%;
    padding: 36px 0;
  }
  section#events .list .item:not(:last-child) {
    border-bottom: solid 1px #DDD;
  }
  section#events .list .item .content {
    font-size: 1em;
  }
  section#events .list .item .content .date {
    margin: 16px 0;
  }
  section#events .event-list {
    margin: 0;
    flex-wrap: wrap;
  }
  section#events .event-item {
    width: 100%;
    padding: 36px 0;
  }
  section#events .event-item:not(:last-child) {
    border-bottom: solid 1px #DDD;
  }
  section#events .event-item .content {
    font-size: 1em;
  }
  section#events .event-item .content .date {
    margin: 16px 0;
  }
}