[v-cloak] {
  display: none;
}



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

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

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

.kc-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .kc-l-c2 {
    -webkit-line-clamp: 3;
  }

  .kc-pc {
    display: none;
  }

  .kc-sp {
    display: block;
  }
}

/* API以外のcss */

.btn_type1.-kc {
  width: 18rem;
}

/* hover */
.kc-card:hover {}

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

/* 終了イベント */







/* topページ */

.kc-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

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

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

.kc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.kc-type,
.kc-pick-up {
  width: fit-content;
  display: inline-block;
  text-align: center;
  background: #1a1a1a;
  color: #ffffff;
  line-height: 1;
  padding: 0.4em 1.4em;
  border-radius: 1em;
}

.kc-pick-up {
  background: #f09400;
}


.kc-name {
  margin: 1em 0;
  line-height: 1.6;
  /* 高さ調整 */
  min-height: calc(1em * 2 * 1.6);
}

.kc-date,
.kc-address {
  position: relative;
  display: flex;
  line-height: 1.4;
  margin-bottom: .8em;
  padding-left: 1.7vw;
}

.kc-date::before,
.kc-address::before {
  position: absolute;
  top: 8%;
  left: 0;
  content: "";
  background-size: cover;
  background-position: center;
  width: 1vw;
}

.kc-date::before {
  background-image: url(https://nicolax.jp/wp-content/themes/nicorax-jp/images/kc/kc-calendar.svg);
  height: 1vw;
}

.kc-address::before {
  background-image: url(https://nicolax.jp/wp-content/themes/nicorax-jp/images/kc/kc-marker.svg);
  height: 1.4vw;
}



@media screen and (max-width: 768px) {
  .kc-content {
    width: 90%;
    margin: 20vw auto 0;
  }

  .kc-link {
    display: flex;
    justify-content: space-between;
    padding: 6vw 0;
    border-bottom: 1px solid #969696;
  }

  .kc-image {
    width: 45%;
    height: fit-content;
  }

  .kc-info {
    width: 50%;
    padding: 0;
  }

  .kc-type,
  .kc-pick-up {
    font-size: 11px;
    padding: 0.4em 1.4em 0.6em;
  }


  .kc-name {
    font-size: 13px;
    margin: .6em 0;
  }

  .kc-date,
  .kc-address {
    font-size: 11px !important;
    padding-left: 16px;
  }

  .kc-date::before,
  .kc-address::before {
    top: 12%;
    width: 10px;
  }

  .kc-date::before {
    height: 11px;
  }

  .kc-address::before {
    height: 14px;
  }
}


/* allページ */
.kc-content.-all {
  width: 100%;
  margin: 0 auto 8rem;
}

.kc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
}

.kc-tab {
  text-align: center;
  background-color: #dcdcd2;
  color: #1a1a1a;
  border: none;
  padding: .8em 1em;
  line-height: 1;
  font-size: 1.2vw;
  font-weight: bold;
  transition: all 0.3s;
}

.kc-tab.is-active,
.kc-tab:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.kc-cards.-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 3vw;
}

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

  .kc-tab {
    font-size: 2vw;
  }
}

@media screen and (max-width: 500px) {
  .kc-tabs {
    justify-content: flex-start;
    gap: 3vw;
  }

  .kc-tab {
    width: 48%;
    font-size: 4vw;
  }
}