[v-cloak] {
  display: none;
}

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

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

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

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

/* API以外のcss */

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

/* hover */

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

.kc-card.endDateTime .kc-image::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "終了いたしました";
  width: 100%;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
  z-index: 2;
}

.kc-card.endDateTime .kc-image::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "多数のご来場ありがとうございました";
  width: 100%;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #fff;
  z-index: 2;
}


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

/* 終了イベント */




/* topページ */

.kc-content {
  margin: 40px 0;

}

.kc-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 2%;
}

.kc-card {
  width: 23.5%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  transition: opacity 0.3s;
  background-color: #fff;
  color: #444;
}

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

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


.kc-info {
  display: flex;
  flex-direction: column;
  padding: 1em;
}



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

.kc-type,
.kc-format {
  font-size: 10px;
  line-height: 1;
  padding: .4em .6em;
  color: #fff;
}

.kc-type {
  border: 1px solid #c59880;
  background-color: #c59880;
}

.kc-format {
  border: 1px solid #c59880;
  color: #c59880;
}

.kc-name {
  font-size: 14px;
  color: #8f7758;
  margin: .6em 0;
  font-weight: bold;
  line-height: 1.6;
  /* 高さ調整 */
  min-height: calc(1em * 2 * 1.6);
}

.kc-date-box,
.kc-address-box {
  display: flex;
  margin-bottom: .8em;
}

.kc-date,
.kc-address {
  font-size: 11px;
}

.kc-date-txt,
.kc-address-txt {
  font-size: 10px;
  white-space: nowrap;
  padding: .1em .4em;
  margin-right: .4rem;
  border: 1px solid #c59880;
  color: #c59880;
  height: fit-content;
}


.kc-date,
.kc-address,
.kc-date-txt,
.kc-address-txt {
  line-height: 1.4;
}


@media screen and (max-width: 960px) {
  .kc-cards {
    gap: 1em 2%;
  }

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

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


/* allページ */
.kc-cards.-all {
  display: flex;
  flex-wrap: wrap;
  gap: 3em 3.5%;
}

.kc-card.-all {
  background-color: #FBF9F4;
  width: 31%;
}

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

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

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