@charset "utf-8";

.card {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -60px;
}

.card__over {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card li {
}

.card__date {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 25px;
}

.card--col2 {
  justify-content: space-between;
}

.card--event {
}

.card--col2 li {
  width: 45%;
  border-radius: 10px;
  margin-bottom: 60px;
}

.card--col3 li {
  width: 30%;
  border-radius: 10px;
  margin-bottom: 60px;
}

.card--col3 li:not(:nth-child(3n)) {
  margin-right: 5%;
}

.card__thum {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card--col3 .card__thum {
  height: 245px;
}

.card--col2 .card__thum {
  height: 19vw;
}

.card__thum img {
  transition-duration: 0.3s;
  /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.card__thum:hover .card__over {
  opacity: 0.5;
}

.card__thum img {
  width: 120%;
  height: auto;
}

.card--blog .card__thum {
}

.card__period {
  font-family: "FOT-筑紫A丸ゴシック Std D";
  line-height: 1.75;
  margin-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.card--event .card__title {
  font-family: "FOT-筑紫A丸ゴシック Std M";
  line-height: 1.75;
  margin-bottom: 10px;
}

.card--blog .card__title {
  font-family: "FOT-筑紫A丸ゴシック Std M";
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.card__arrow a {
  font-family: "FOT-筑紫A丸ゴシック Std D";
  display: inline-block;
  padding-right: 42px;
  color: #28b472;
  position: relative;
}

.card__tag {
  margin-bottom: 20px;
}

.card__tag span {
  font-family: "FOT-筑紫A丸ゴシック Std D";
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 84px;
  height: 20px;
  border-radius: 10px;
}

.card__tag--monami span {
  background-color: #f1b66f;
}

.card__tag--ishiyama span {
  background-color: #5fc9c1;
}

.card__tag--tokiwa span {
  background-color: #e0dc1b;
}

.card__arrow a::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  content: "";
  width: 30px;
  height: 14px;
  background-image: url(../imgs/common/icon_arrow_smal.svg);
  background-size: 100% 100%;
}

.card__arrow a:hover {
  text-decoration: underline;
}

.card__title a:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.pagination li {
  width: 38px;
  height: 38px;
}

.pagination li:not(:last-child) {
  margin-right: 15px;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  color: #28b472;
  transition: all 0.3s;
}

.pagination li:hover a {
  color: #fff;
  background: #28b472;
}

.pagination li.current a {
  color: #fff;
  background: #28b472;
}

@media screen and (max-width: 1260px) {
  .card--col3 .card__thum {
    height: 19.8vw;
  }
}

@media screen and (max-width: 1024px) {
  .card--col3 {
    justify-content: space-between;
  }

  .card--col3 li {
    width: 47.5%;
  }

  .card--col3 .card__thum {
    height: 30vw;
  }

  .card--col3 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 760px) {
  .card--col2 li {
    width: 100%;
  }

  .card--col2 .card__thum {
    height: 58vw;
  }
}

@media screen and (max-width: 420px) {
  .card--col3 li {
    width: 100%;
  }

  .card--col3 .card__thum {
    height: 59.5vw;
  }

  .card--blog .card__title {
    font-size: 2.4rem;
  }

  .blog__en {
    font-size: 1.5rem;
  }
}
