[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-hope {
  color: #fff;
}



/* 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: 2;
}

/* 終了イベント */

/* topページ */
.kc-content {
  padding: 0 15px;
}

.kc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}

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

.kc-link {
  transition: opacity 0.3s ease-in-out;
}

.kc-card a:hover{
  text-decoration:none;
}

.kc-image {
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 4px;
}

.kc-hope {
  font-size: 14px !important;
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 1;
  background-color: #78B0C3;
  color: #fff;
  border-radius: 4px;
  line-height: 1 !important;
  padding: .6em;
}

.kc-image::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 5%;
  background-color: #fff;
  background-image: url(../img/kc-arrow.png);
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  z-index: 1;
  transition: transform 0.3s;
}

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

.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 #78B0C3;
  border-radius: 4px;
}

.kc-type {
  background-color: #78B0C3;
}

.kc-format {
  color: #78B0C3;
}


.kc-name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin: .6em 0;
}

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


@media screen and (max-width: 768px) {
  .kc-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* .kc-date br {
  display: none;
} */