@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap");
.topics {
  background: #F4F5F7;
}
@media only screen and (min-width: 769px) {
  .topics {
    padding: 60px 0 150px;
  }
}
@media only screen and (max-width: 768px) {
  .topics {
    padding: 35px 0 110px;
  }
}
.topics__inner {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .topics__inner {
    max-width: 1150px;
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 768px) {
  .topics__inner {
    padding: 0 10px;
  }
}
.topics__ttl {
  text-align: center;
  font-family: "Noto Sans JP";
}
@media only screen and (min-width: 769px) {
  .topics__ttl {
    margin: 0 0 50px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__ttl {
    margin: 0 0 30px;
  }
}
.topics__ttl-text {
  color: #043464;
  text-align: center;
  font-weight: 700;
  padding: 0;
  margin: 10px 0 8px;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 769px) {
  .topics__ttl-text {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .topics__ttl-text {
    font-size: 1.9rem;
  }
}
.topics__ttl span {
  color: #043464;
}
@media only screen and (min-width: 769px) {
  .topics__ttl span {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 768px) {
  .topics__ttl span {
    font-size: 0.85rem;
  }
}
.topics__nav {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .topics__nav {
    margin: 0 0 45px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__nav {
    margin: 0 0 30px;
  }
}
.topics__nav .tab {
  text-align: center;
  font-size: 0.95rem;
  border-radius: 5px;
  font-weight: 600;
  background: #fff;
  color: #043464;
  border: #043464 solid 3px;
  box-sizing: border-box;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .topics__nav .tab {
    margin: 0 6px 17px;
    padding: 14px 0 13px;
    width: 145px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__nav .tab {
    margin: 0 3px 10px;
    padding: 14px 0 12px;
    width: 110px;
  }
}
.topics__nav .tab:hover {
  background: #043464;
  color: #fff;
  transition: 0.4s;
}
@media only screen and (min-width: 769px) {
  .topics__nav .tab .text_s {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__nav .tab .text_s {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 769px) {
  .topics__nav .tab .text_ss {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__nav .tab .text_ss {
    font-size: 0.7rem;
  }
}
.topics__nav .tab .narrow-active {
  background: #043464;
  color: #fff;
}
.topics__nav .tab .narrow-active:hover {
  opacity: 1;
}
.topics__nav .tab .narrow-hide {
  display: none !important;
}
@media only screen and (min-width: 769px) {
  .topics__area {
    margin: 30px 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area {
    margin: 0 0 30px;
  }
}
.topics__area ul {
  list-style: none;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .topics__area ul {
    margin: 0 0 7px;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul {
    margin: 0;
    justify-content: space-between;
  }
}
.topics__area ul .topic {
  background: #fff;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic {
    width: calc((100% - 64px) / 4);
    display: flex;
    flex-direction: column;
    margin: 0 8px 35px;
    padding: 15px 13px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic {
    width: 48%;
    margin: 0 0 20px;
    padding: 15px 10px;
  }
}
.topics__area ul .topic:first-child {
  margin-top: 0;
}
.topics__area ul .topic:hover {
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
.topics__area ul .topic figure {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic figure {
    height: 190px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic figure {
    height: 350px;
  }
}
.topics__area ul .topic figure a {
  display: block;
}
.topics__area ul .topic figure a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.topics__area ul .topic figure .noimg {
  color: #97a5b7;
  font-size: 1.3rem;
  font-weight: 600;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic figure .noimg {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic figure .noimg {
    font-size: 1.1rem;
  }
}
.topics__area ul .topic__caption {
  box-sizing: border-box;
  width: 100%;
  margin: 0 15px;
}
.topics__area ul .topic__category {
  display: inline-block;
  margin: 0;
  color: #043464;
  background: #EBEDF1;
  border-radius: 4px;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic__category {
    font-size: 12px;
    padding: 6px 14px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic__category {
    font-size: 11px;
    padding: 6px 12px;
  }
}
.topics__area ul .topic__text {
  background: #fff;
  color: #333;
  font-weight: bold;
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic__text {
    padding: 10px;
    font-size: 16px;
    height: 80px;
    line-height: 27px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic__text {
    font-size: 14px;
    height: 66px;
    line-height: 23px;
  }
}
.topics__area ul .topic__text:hover {
  text-decoration: none !important;
}
.topics__area ul .topic__text a {
  color: #111;
  text-decoration: none;
}
.topics__area ul .topic__text a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  background-color: transparent;
}
.topics__area ul .topic__text a:hover {
  text-decoration: none !important;
}
.topics__area ul .topic__date {
  text-align: right;
  color: #666;
  letter-spacing: 0.07em;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic__date {
    font-size: 0.85rem;
    margin: 50px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic__date {
    font-size: 14px;
  }
}
.topics__soon {
  text-align: center;
  font-family: "Noto Sans JP";
}
@media only screen and (min-width: 769px) {
  .topics__soon {
    margin: 50px 0 80px;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .topics__soon {
    margin: 30px 0 60px;
  }
}/*# sourceMappingURL=topics.css.map */