.articleWrap {
  overflow-x: clip;
}

.article {
  margin: 0 0 50px;
}

.articleHead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
}

.articleHeadCat {
  border: 1px solid #0065bb;
  border-radius: 5px;
  text-align: center;
  padding: 5px;
  color: #0065bb;
  font-size: 1.3rem;
  line-height: 1.2;
  min-width: 86px;
}

.articleHeadDate {
  color: #707070;
}

.articleTitle {
  font-size: 1.6rem;
  line-height: 1.25;
  padding: 0 0 15px;
  margin: 0 0 25px;
  position: relative;
}
.articleTitle::before {
  content: "";
  height: 2px;
  background-color: #0065bb;
  position: absolute;
  left: -25px;
  bottom: 0;
  width: 100svw;
}
.articleTitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  background-color: #0065bb;
  right: -25px;
  bottom: 0;
  transform-origin: right top;
  rotate: 15deg;
}

.articleBody {
  margin: 0 0 50px;
}
.articleBody:has(.articlePicWrap) {
  display: grid;
  gap: 25px;
}

.articleText {
  white-space: pre-wrap;
}

.articlePic:not(:last-of-type) {
  margin: 0 0 15px;
}

.articleData {
  background-color: #f3f3f3;
  padding: 20px;
}

.articleDataItem:not(:last-of-type) {
  margin: 0 0 5px;
}

.articleDataLink {
  display: flex;
  align-items: center;
  width: fit-content;
  color: inherit;
}

.articleDataIcon {
  flex-shrink: 0;
  width: 22px;
  margin: 0 13px 0 0;
}

.articleMore {
  text-align: center;
  text-decoration: none;
  border: 1px solid #0065bb;
  border-radius: 10px;
  padding: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
}
.articleMore::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  mask-image: url(../../images/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../../images/icon-arrow.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #0065bb;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .article {
    margin: 0 0 90px;
  }
  .articleTitle {
    font-size: 2.4rem;
  }
  .articleTitle::before {
    left: calc((100svw - 1032px) / 2 * -1);
  }
  .articleTitle::after {
    right: calc((100svw - 1032px) / 2 * -1);
  }
  .articleBody {
    margin: 0 0 80px;
  }
  .articleBody:has(.articlePicWrap) {
    grid-template-columns: 1fr 328px;
    gap: 70px;
  }
  .articlePic:not(:last-of-type) {
    margin: 0 0 34px;
  }
  .articleData {
    padding: 46px 64px;
    width: fit-content;
  }
  .articleMore {
    padding: 15px;
    max-width: 252px;
  }
}

/*# sourceMappingURL=article.css.map*/