.archive {
  position: relative;
  background: linear-gradient(90deg, #fff 0%, #dce6eb 100%);
  z-index: 2;
  color: #004381;
}
.archive:after {
  content: "";
  position: absolute;
  display: none;
  background-image: url(../img/toppage/back_image01.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 120%;
  height: 130%;
  left: -23%;
  top: -100px;
  z-index: 1;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .archive:after {
    display: block;
    width: 100%;
    height: 120%;
    left: -20%;
    top: -50px;
  }
}

.info {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .info {
    padding-top: 60px;
  }
}

.about__topics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about__topics {
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
  }
}
.about__topics-list {
  width: 100%;
  background: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__topics-list {
    flex-grow: 1;
    padding: 40px;
  }
}
.about__topics-item {
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 2.5;
  border-bottom: #024b82 solid 1px;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .about__topics-item {
    flex-wrap: nowrap;
  }
}
.about__topics-category {
  border: #024b82 solid 1px;
  padding: 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .about__topics-title {
    padding-left: 15px;
  }
}

.more-btn {
  display: inline-block;
  position: relative;
  padding: 3px 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #004381;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: #fff;
  width: 80%;
  max-width: 240px;
  margin: 0 auto;
}

.more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 15px;
  height: 9px;
  background-image: url(../img/common/icon-arrow-b_bottom.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.more-btn:hover {
  background-color: #004381;
  color: #fff;
}

.more-btn:hover::after {
  background-image: url(../img/common/icon-arrow-w_bottom.svg);
}

.more-btn__area {
  display: block;
  text-align: center;
  margin-top: 40px;
}/*# sourceMappingURL=archive.css.map */