[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 */
.contentContainer.eventContainer{
  max-width: 900px;
}

/* hover */
.kc-link:hover {
  opacity: 1;
}

.kc-link:hover .kc-image::after {
  transform: scale(1.2);
}

/* 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-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}

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

.kc-link {}

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

.kc-type {
  background-color: #175288;
}

.kc-format {
  color: #00225b;
}


.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;
}

.kc-btn {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.kc-btn_link {
  display: block;
  max-width: 260px;
  width: 100%;
  padding: 12px 28px 13px;
  background-color: #0080CB;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  border-radius: 25px;
  position: relative;
}

.kc-btn_link:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 13.45px;
  height: 13.45px;
  background-image: url(https://fudosan.betsudai.jp/wp-content/themes/_original/images/icon_arrowRightTop02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

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


/* allページ */
.kc-cards.-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;

}

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

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