@charset "UTF-8";
/* topics
============================================================ */
.topics-list {
  width: 1160px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 900px) {
  .topics-list {
    width: 100%;
  }
  .topics-list__item {
    width: 100%;
  }
}
@media only screen and (min-width: 901px) {
  .topics-list::after {
    content: "";
    display: block;
    width: 26%;
    height: 0;
  }
}
.topics-list__item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #eee;
  width: 360px;
}
.topics-list__item-img {
  width: 100%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .topics-list__item-img {
    width: 100%;
  }
}
.topics-list__item-img img {
  width: 100%;
  height: 230px !important;
  object-fit: cover !important; /* 中央でトリミング */
}
.topics-list__item-date {
  font-size: 16px;
  margin-right: 30px;
}
@media only screen and (max-width: 900px) {
  .topics-list__item-date {
    font-size: 1.2rem;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.topics-list__item-title {
  font-size: 20px;
  margin-bottom: 15px;
  word-wrap: break-word;
}
@media only screen and (max-width: 900px) {
  .topics-list__item-title {
    font-size: 1rem;
  }
}
.topics-list__item-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background: #464f7b;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 16px;
}
.topics-list__item-btn::after {
  content: "";
  background: url("/_common/img/common/btn-arrow.png") no-repeat;
  width: 44px;
  height: 12px;
  margin-left: 10px;
  background-size: contain;
}
@media only screen and (max-width: 900px) {
  .topics-list__item-btn::after {
    margin-left: 5px;
  }
}
.topics-contents-img {
  max-width: 600px;
  text-align: center;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 900px) {
  .topics-contents-img {
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .topics-contents-img img {
    width: 100%;
  }
}
.topics h3 {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .topics h3 {
    line-height: 1.2;
  }
  .topics h3 span {
    position: absolute;
    top: -35px;
  }
}
.topics h3 span {
  position: absolute;
  right: 0;
  color: #f08300;
  font-size: 20px;
}
.topics-contents p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}
/* pagenation
============================================================ */
.pagenation {
  background: #eeeeee;
  margin-bottom: 60px;
}
.pagenation ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}
.pagenation ul li {
  font-size: 22px;
  font-weight: 300;
  margin: 0 20px;
}
.pagenation-current {
  color: #fff;
  background: #f08300;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 3px;
}
.pagenation-arrow {
  color: #fff;
  background: #f08300;
  font-size: 6px;
  padding: 5px 6px;
  border-radius: 3px;
}
.pagenation-02 {
  margin-top: 60px;
}
.pagenation-detail ul li .pagenation-arrow {
  color: #fff;
  font-size: 14px;
}
.pagenation-back {
  font-size: 20px;
  font-weight: bold;
  color: #f08300;
}
@media only screen and (max-width: 900px) {
  /* pagenation
============================================================ */
  .pagenation ul {
    padding: 10px 0;
  }
  .pagenation ul li {
    font-size: 0.8rem;
    margin: 0 10px;
  }
  .pagenation-detail ul li .pagenation-arrow {
    font-size: .7rem;
  }
  .pagenation-back {
    font-size: 0.8rem;
  }
}