[v-cloak] {
  display: none;
}


.kc-none {
  text-align: center;
  margin: 50px auto;
}

.kc-spinner {
  padding: 50px 0;
}

.kc-l-c {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* API以外のcss */

/* hover */
.kc-link:hover .kc-image img {
  opacity: 1;
  transform: scale(1.1);
}

.kc-link:hover {
  text-decoration: none;
}

/* hover */

/* 終了イベント */
.kc-card.endDateTime .kc-image::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "終了しました";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  z-index: 1;
}


@media screen and (max-width: 768px) {
  .kc-card.endDateTime .kc-image::before {
    font-size: 16px;
  }
}

/* 終了イベント */

/* swiper */

#kcapp {
  flex-wrap: nowrap;
}

#kcapp .kc-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#kcapp .swiper-wrapper {
  flex-wrap: nowrap;
  height: auto;
  margin: 0;
  padding: 0;
}

#kcapp .swiper-wrapper .swiper-slide {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {}




/* 前へ次へボタン */
#kcapp .swiper-button-prev,
#kcapp .swiper-button-next {
  position: absolute;
  top: 10.5vw;  
  width: 3.125vw;
  height: 3.125vw;
  z-index: 2;
}

#kcapp .swiper-button-prev {
  left: -1.563vw;
}

#kcapp .swiper-button-next {
  right: -1.563vw;
}

#kcapp .swiper-button-prev::after,
#kcapp .swiper-button-next::after {
  content: "";
  background-image: url(../img/kc/kc-arrow.png);
  background-size: cover;
  background-position: center;
  width: 3.125vw;
  height: 3.125vw;
}

#kcapp .swiper-button-prev::after {
  transform: rotate(180deg);
}

@media(min-width:768px) and (max-width: 999px) {
	
#kcapp .swiper-button-prev, #kcapp .swiper-button-next{top:16vw}	
}


@media screen and (max-width: 767px) {

  #kcapp .swiper-button-prev,
  #kcapp .swiper-button-next {
    width: 8vw;
    height: 8vw;
	top: 32vw;
  }

  #kcapp .swiper-button-prev {
    left: -4vw;
  }

  #kcapp .swiper-button-next {
    right: -4vw;
  }

  #kcapp .swiper-button-prev::after,
  #kcapp .swiper-button-next::after {
    width: 8vw;
    height: 8vw;
	
  }
}




/* ページネーション */
#kcapp .swiper-pagination {
  position: relative;
  bottom: 0;
  text-align: left;
  margin-top: 3rem;
}

#kcapp .swiper-pagination-bullet {
  width: 4.5vw;
  height: .3vw;
  border-radius: 0;
  background-color: #eeeeee;
  opacity: 1;
}

#kcapp .swiper-pagination-bullet-active {
  background-color: #20cbc9;
}

@media screen and (max-width: 767px) {
  #kcapp .swiper-pagination {
    text-align: center;
    margin: 2rem 0;
  }

  #kcapp .swiper-pagination-bullet {
    width: 9vw;
    height: .6vw;
  }
}






/* topページ */

.kc-content {
  width: 87.5%;
  margin: 0 auto;
  position: relative;
  
}

@media(max-width:767px)
{
	.kc-content{width:100%; padding: 0px 7.692vw}
}
.kc-cards {
  display: flex;
  flex-wrap: wrap;
}

.kc-card {
  list-style: none;
}

.kc-link {
  color: #000;
}

.kc-image {
  position: relative;
  overflow: hidden;
}

.kc-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.kc-info {
  display: flex;
  flex-direction: column;
  padding-top: 4%;
}



.kc-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4em;
}

.kc-type,
.kc-format {
  font-size: 12px;
  line-height: 1;
  padding: .4em .8em;
  color: #fff;
  border: 1px solid #20cbc9;
  background-color: #fff;
}

.kc-type {
  background-color: #20cbc9;
}

.kc-format {
  color: #20cbc9;
}


.kc-name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin: .6em 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #000;
  text-align: left;
}

.kc-date-box,
.kc-address-box {
  text-align: left;
  display: flex;
  line-height: 2;
  gap: .6em;
}

.kc-address-box {
  margin-top: 2%;
}

.kc-date-text,
.kc-address-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: fit-content;
}

.kc-date-text::before,
.kc-address-text::before {
  content: "";
  display: inline-block;
  background-size: cover;
  background-position: center;
  width: 10px;
  margin-right: .4rem;
}

.kc-date-text::before {
  background-image: url(../img/kc/kc-calendar.png);
  height: 11px;
}

.kc-address-text::before {
  background-image: url(../img/kc/kc-marker.png);
  height: 15px;
}

.kc-date,
.kc-address {
  color: #666;
}

.kc-date,
.kc-address,
.kc-date-text,
.kc-address-text {
  font-size: 14px;
  line-height: 1.6;
}

.kc-date br {
  display: none;
}


@media screen and (max-width: 767px) {
  .kc-content {
    
  }

  .kc-card {
    width: 100%;
  }
}


/* allページ */
.kc-content.-all {
  max-width: 1300px;
  margin: 3rem auto 6rem;
}

.kc-cards.-all {
  width: 100%;
  gap: 3em 3.5%;
  padding: 0;
}

.kc-card.-all {
  width: 31%;
}

@media screen and (max-width: 1100px) {
  .kc-cards.-all {
    gap: 4em 6%;
  }

  .kc-card.-all {
    width: 47%;
  }

}

@media screen and (max-width: 600px) {
  .kc-card.-all {
    width: 100%;
  }
}