[v-cloak] {
  display: none;
}

.kc-br {
  margin-top: 5px;
}

@media screen and (max-width: 750px) {
  #kcapp .u-mobile {
    display: block;
  }

  #kcapp .u-desktop {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  #kcapp .u-mobile {
    display: none !important;
  }

  #kcapp .u-desktop {
    display: block;
  }
}

#kcapp a {
  text-decoration: none;
}

/* topページ */

.kc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-left: 0;
}

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

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

}

.kc-finish {
  position: absolute;
  content: "";
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 18px;
  background-color: rgba(0, 0, 0, .6);
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: none;
  font-family: "Zen Antique Soft", serif;
  font-weight: 400;
  letter-spacing: .04em;
}

.kc-finish.endDateTime {
  display: block;
}

.kc-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

.kc-type,
.kc-format {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 5px;
  font-size: 12px;
  height: 22px;
  line-height: 21px;
  color: #fff;
  display: block;
  width: fit-content;
  margin-top: 5px;
  font-weight: 600;
}

.kc-type {
  background-color: #b01421;
  margin-right: 7px;
  color: #fff;
  margin-right: 8px;
}

.kc-format {
  background-color: #474747;
}

.kc-name {
  margin-bottom: 5px;
  margin-top: 5px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #474747;
  font-size: 16px;
  transition: all .3s;
}

.kc-date,
.kc-address {
  margin-bottom: 0 !important;
  font-size: 14px;
}

.kc-date,
.kc-date span {
  color: #474747;
}

.kc-address {
  color: #474747;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}



@media screen and (max-width: 750px) {
  .kc-cards {
    display: block;
    padding-left: 40px;
    padding-right: 40px;
  }

  .kc-card:nth-child(n + 2) {
    margin-top: 40px;
  }

  .kc-type,
  .kc-format {
    font-size: 11px;
    height: 19px;
    line-height: 18px;
  }

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

@media screen and (min-width: 751px) {

  /* マウスオーバー */
  .kc-link:hover .kc-image img {
    scale: 1.05;
    transition: all .3s;
  }

  .kc-link:hover .kc-name-i {
    color: #b01421;
    transition: all .3s;
  }
}


/* イベントページ */

.kc-cards-e {
  gap: 30px 16px;
}

.kc-card-e {

  height: 100%;
}

.kc-link-e {
  height: inherit;
  transition: all .3s;
  display: block;
}

.kc-block-e {
  padding: 10px 10px 20px;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  height: inherit;
  display: flex;
  flex-direction: column;
}

.kc-name-e {
  font-family: "Zen Antique Soft", serif;
  font-weight: 500;
  flex-grow: 1;
  height: 48px;
}

.kc-date-e {
  display: flex;
}

.kc-line-e {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 1px;
  /* 線の高さを指定 */
  width: 100%;
  /* 線の幅を100%に設定 */
  position: relative;
  overflow: hidden;
  /* 点線のスタイルを設定 */
  background: repeating-linear-gradient(to right, #a7a7a7, #a7a7a7 6px, transparent 6px, transparent 7px);
}


@media screen and (max-width: 750px) {
  .kc-cards-e {
    padding: 0;
  }

  .kc-card-e:nth-child(n + 2) {
    margin-top: 20px;
  }


  .kc-name-e {
    height: initial;
  }

  .kc-address-e {
    margin-top: 3px;
  }

}

@media screen and (min-width: 751px) {

  /* マウスオーバー */
  .kc-link-e:hover .kc-image img {
    scale: 1.05;
    transition: all .3s;
  }

  .kc-link-e:hover {
    opacity: .8;
    transition: all .3s;
  }
}