@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic&display=swap");
body {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

main.section {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover, .active {
  text-decoration: underline;
}

a:active, a:focus, input:active, input:focus {
  outline: 0;
}

.arrow a::before {
  margin-right: 13px;
}

.custom-bgcolor {
  background-color: rgb(97, 196, 219);
}

.event-detail .tag {
  background-color: rgb(97, 196, 219);
}

.is-vertical-center {
  display: flex;
  align-items: center;
}

.arrow a::before {
  margin-right: 13px;
  content: "";
  display: inline-block;
  top: 10%;
  left: -50px;
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #333;
}

/* ロゴ
------------------------------------------------------------*/
div a span#logo {
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

/* アニメーション
------------------------------------------------------------*/
/* アニメーション前 */
.u-fade-type-up {
  transform: translateY(10px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* スライダー
------------------------------------------------------------*/
.splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.my-carousel-progress {
  background: #ccc;
  margin-top: 1.6rem;
}

.my-carousel-progress-bar {
  background: rgba(0, 197, 219, 0.8980392157);
  height: 2px;
  transition: width 400ms ease;
  width: 0;
}

#image-carousel01 .splide__pagination__page.is-active,
#image-carousel02 .splide__pagination__page.is-active,
#image-carousel03 .splide__pagination__page.is-active,
#image-carousel04 .splide__pagination__page.is-active,
#image-carousel05 .splide__pagination__page.is-active,
#image-carousel06 .splide__pagination__page.is-active,
#image-carousel07 .splide__pagination__page.is-active,
#image-carousel08 .splide__pagination__page.is-active {
  background: rgb(83, 169, 189);
}/*# sourceMappingURL=base.css.map */