[v-cloak] {
  display: none;
}

/* 共通 */

.kc-events,
.kc-e-events {
  font-family: "Noto Serif JP", sans-serif;
  color: #333333;
}

#kcapp a {
  line-height: normal;
  color: #333333;
}

/*
 * ------------------------ *
 * ----- トップページ ----- *
 * ------------------------ *
 */

/* ----- TOP Width Control ----- */

.kc-events {
  margin-top: 30px;
}
@media screen and (min-width: 1440px) {
  .kc-events {
    width: 1140px;
  }
}
@media screen and (max-width: 1439px) {
  .kc-events {
    width: 89%;
  }
}
@media screen and (max-width: 1024px) {
  .kc-events {
    width: 100%;
  }
}

/* ----- TOP PC ----- */

/* spinner */
.kc-spinner {
  margin: 32px auto 64px;
  text-align: center;
}

.kc-spinner .vue-simple-spinner{
  border-color: #333333 rgb(238, 238, 238) rgb(238, 238, 238)!important;
}

.kc-content {
  width: 100%;
  overflow: hidden;
}

.kc-cards {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  justify-content: flex-start;
  padding-inline: 0;
  gap: 1rem;
  overflow: hidden;
}

.kc-card {
  /* width: 26rem; */
  padding-block: 15px;
  list-style: none;
}

.kc-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 38rem; */
  transition: 0.3s;
}

/* .kc-link:hover {
  opacity: 0.7;
} */

/* テキスト情報部 */

.kc-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  /* gap: 1rem; */
  /* line-height: 1.5rem; */
  line-height: 1.75rem;
}

/* 開催タグ コンテナ */

.kc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  width: calc((5em + 1.2em * 2) + (9em + 1.2em * 2) + 1em);
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

/* イベントタイプ & 開催形式*/

.kc-type,
.kc-format {
  padding: 0 1.2em;
}
.kc-type {
  color: #ffffff;
  background: #333333;
}
.kc-format {
  line-height: calc(1.75rem - 2px);
  border: 1px solid #333333;
}

.kc-details {
  flex: 1;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

/* イベント名 */
.kc-name {
  /* order: 2; */
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333333;
}

/* 開催日 */

/* .kc-date__box { */
.kc-date {
  /* order: 1; */
  font-weight: 600;
  width: 13.5em;
  font-size: 1rem;
  font-weight: 500;
}

.kc-date_1 {
  display: block;
  margin-bottom: 0.5rem;
}
.kc-date_2 {
  display: none;
}

.kc-breakpoint {
  display: none;
  flex-basis: 100%;
}

/* .kc-date br {
  display: block;
} */

.kc-address {
  /* order: 3; */
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 10em;
  text-align: right;
  font-size: 1rem;
}

/* ----- TOP middle ----- */
/* イベント名と住所の折り返しポイント */
@media screen and (max-width: 1280px) {
  .kc-cards {
    gap: 0;
  }

  .kc-info {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 0;
  }

  .kc-tags {
    width: fit-content;
    margin-right: 1.5em;
    font-size: 0.7rem;
  }

  .kc-breakpoint {
    display: block;
  }

  .kc-details {
    margin-top: 0.5rem;
  }

  .kc-name {
    font-size: 1.1rem;
    flex-basis: 100%;
  }

  .kc-address {
    width: 12em;
    font-size: 0.9rem;
  }
}

/* ----- TOP SP ----- */

@media screen and (max-width: 744px) {
  .kc-events {
    margin-top: 12px;
  }

  .kc-cards {
    gap: 0;
  }

  .kc-card {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .kc-tags {
    line-height: 1.5rem;
    font-size: 10px;
  }

  .kc-format {
    line-height: calc(1.5rem - 2px);
  }

  .kc-details {
    /* display: block; */
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    /* flex-wrap: wrap; */
    margin-top: 0;
  }

  .kc-name {
    /* order: 0; */
    width: 100%;
    line-height: 2.5rem;
    font-size: 1rem;
  }

  .kc-name {
    line-height: 1.75rem;
    font-size: 15px;
    padding-top: .2em;
    padding-bottom: .2em;
  }

  .kc-date {
    /* order: 1; */
    width: 100%;
    line-height: 1.25rem;
    font-size: 12px;
  }

  .kc-date_1 {
    display: none;
  }
  .kc-date_2 {
    display: block;
  }

  .kc-address {
    /* order: 2; */
    /* margin-top: 1.5em; */
    width: 100%;
    text-align: left;
    line-height: 1.25rem;
    font-size: 12px;
  }
}

/*
 * ------------------------
 * ----- イベント一覧 -----
 * ------------------------
 */

/* ----- EVENT wide ----- */
@media screen and (min-width: 1440px) {
  .kc-e-events {
    margin-inline: auto;
    padding-inline: 0;
    width: 1140px;
  }
}

/* ----- EVENT PC ----- */

@media screen and (min-width: 375px) and (max-width: 1439px) {
  .kc-e-cards {
    margin-inline: auto;
    padding-inline: 5.8vw;
  }
}

/* ----- EVENT PC ----- */

/* spinner */
.kc-e-spinner {
  margin: 32px auto 64px;
  text-align: center;
}

.kc-e-spinner .vue-simple-spinner{
  border-color: #333333 rgb(238, 238, 238) rgb(238, 238, 238)!important;
}

.kc-e-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  justify-content: flex-start;
}

.kc-e-card {
  width: 30.66%;
  margin-bottom: 4rem;
}

.kc-e-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.kc-e-image.--finished::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "このイベントは\A終了しました";
  white-space: pre;
  text-align: center;
  position: absolute;
  font-size: 1.7rem;
  line-height: 1.8;
  z-index: 10;
  color: #fff;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.kc-e-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  aspect-ratio: 4 / 3;
}

.kc-e-link:hover .kc-e-image img {
  transition: 0.3s;
  transform: scale(1.1);
  opacity: 0.7;
}

/* テキスト情報部 */

/* 開催タグ コンテナ */
.kc-e-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 1rem;
  line-height: 1.4rem;
  font-size: 0.6rem;
}

/* イベントタイプ & 開催形式*/
.kc-e-type,
.kc-e-format {
  padding: 0 1.2em;
  font-weight: 600;
}
.kc-e-type {
  color: #ffffff;
  background: #333333;
}
.kc-e-format {
  border: 1px solid #333333;
  line-height: calc(1.4rem - 2px);
}

/* イベント名 */
.kc-e-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: .8rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
}

.kc-e-date {
  margin-top: .8rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: bold;
}

.kc-e-address {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.25rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: bold;
}

/* .kc-e-date br {
  display: none;
} */

/* ----- EVENT 2列 ----- */
@media screen and (max-width: 1024px) {
  .kc-e-cards {
    gap: 4%;
  }

  .kc-e-card {
    width: 48%;
  }
}

/* ----- EVENT SP ----- */

@media screen and (max-width: 755px) {
  .kc-e-cards {
    flex-direction: column;
    padding-left: 5.8vw;
    padding-right: 5.8vw;
  }

  .kc-e-card {
    width: 100%;
  }

  .kc-e-tags {
    margin-top: 1rem;
    font-size: .6rem;
  }

  .kc-e-name {
    margin-top: .9rem;
    line-height: 1.8;
    font-size: .95rem;
  }

  .kc-e-date {
    margin-top: .9rem;
    font-size: .7rem;
  }

  .kc-e-address {
    font-size: .7rem;
  }
}
