[v-cloak] {
  display: none;
}

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


/* API以外のcss */

@media screen and (max-width: 768px) {}

/* API以外のcss */

/* hover */

/* hover */




/* swiper */
#kcapp .kc-swiper {
  overflow: hidden;
  padding: 10px;
}

#kcapp .swiper-wrapper {
  height: auto !important;
}

@media screen and (max-width: 768px) {
  #kcapp .kc-swiper {
    height: auto !important;
  }
}

/* swiper */





/* topページ */

.kc-section {
  max-width: 1200px;
  width: 100%;
  margin: 60px auto 0;
  padding: 0 20px;

}

.kc-ttl {
  width: 20%;
  font-size: 22px;
  text-align: center;
  display: block;
  position: relative;
  color: #5d8352;
  font-weight: bold;
  padding: 20px 0;
  margin: 40px auto 40px auto;
}

.kc-ttl::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  width: 50px;
  height: 1px;
  background-color: #60431d;
}

.kc-ttl::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: '';
  width: 50px;
  height: 1px;
  background-color: #60431d;
}

.kc-cards {
  display: flex;
  align-items: stretch;
}

.kc-card {
  position: relative;
  outline: 1px solid #333;
  outline-offset: -1px;
  color: #232323;
  display: flex;
}

.kc-card::after {
  position: absolute;
  content: '';
  right: 40px;
  bottom: 20px;
  margin: auto;
  width: 30px;
  height: 20px;
  background: url(../images/kc-arrow.svg) no-repeat;
  background-size: auto;
  background-size: 30px auto;
  animation-name: faderight;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  z-index: 10;
}

.kc-link {
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 2px rgba(109, 109, 109, 0.45);
}

.kc-image {
  overflow: hidden;
}

.kc-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}



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

.kc-type,
.kc-format {
  padding: 0 6px;
  margin-top: 5px;
  font-size: 12px;
  height: 19px;
}

.kc-type {
  border: 1px solid #654213;
  background-color: #654213;
  margin-right: 4px;
  color: #fff;
}

.kc-format {
  border: 1px solid #232323;

}

.kc-name {
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 18px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 40px;
}

.kc-date {
  font-size: 12px;
}

.kc-date br {
  display: none;
}

.kc-address {
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.kc-btn {
  width: 200px;
  margin: 50px auto 0;
}

.kc-btn__link {
  background-color: #344801;
  margin-right: auto;

  height: auto;
  display: block;
  color: #414040;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  text-align: center;
}

.kc-btn__link:hover {
  background-color: #97A167;
  color: #fff;
}


@media screen and (max-width: 1240px) {
  .kc-section {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }

  .kc-card::after {
    bottom: 5px;
  }
}


@media screen and (max-width: 1180px) {

  .kc-ttl {
    width: 25%;
  }

  .kc-tags {
    height: 60px;
  }

  .kc-date {
    height: 40px;
  }

  .kc-date br {
    display: block;
  }
}

@media screen and (max-width: 834px) {
  .kc-ttl {
    width: 30%;
  }
}



@media screen and (max-width: 768px) {
  .kc-ttl {
    width: 60%;
  }

  .kc-type,
  .kc-format {
    padding-left: 4px;
    padding-right: 4px;
    margin-top: 5px;
  }

  .kc-name {
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.5;
    height: 40px;
  }

  .kc-date {
    margin-top: 8px;
    height: auto;
  }

  .kc-date br {
    display: none;
  }

}


/* topページ */