@charset "UTF-8";
/* CSS Document */
/* articleに関するcss */
.article__top-area {
}
.article__top-area .article__category {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.article__top-area .article__category li {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  background: var(--blue);
  display: inline-block;
  padding: 3px 5px;
}
.article__top-area h2 {
  width: 100%;
  font-size: 5rem;
  font-weight: 600;
  margin: 20px 0 10px;
}
.article__top-area p {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  margin-left: 30px;
  opacity: 0.9;
  display: inline-block;
}
.article__top-area p::before {
  position: absolute;
  content: '';
  background: url(..//images/clock.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  top: 25%;
  left: -20px;
}
.article__catch-img {
  margin: 20px 0;
  width: 100%;
}
.article__catch-img img {
  margin-left: 0;
}
.article__main {
  font-size: 1.6rem;
}
.post-link {
  margin: 60px auto 30px;
  display: flex;
  justify-content: center;
  gap: 70px;
}
.post-link li {
  font-size: 1.8rem;
  font-weight: 600;
  height: 30px;
  width: 200px;
}
.post-link li:first-child {
  background: url(..//images/aside_icon_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 40% 50%;
  text-align: right;
}
.post-link li:last-child {
  background: url(..//images/aside_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 60% 50%;
  text-align: left;
}
/* articleに関するcssここまで */
@media (max-width: 798px) {
  .article__top-area h2 {
    font-size: 3.2rem;
  }
  .article__main p {
    font-size: 1.5rem;
  }
  .post-link {
    margin: 60px auto 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
  }
  .post-link li {
    font-size: 1.6rem;
    font-weight: 600;
    height: 30px;
    width: 180px;
  }
  .post-link li:first-child {
    background: url(..//images/aside_icon_2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 25% 50%;
    text-align: right;
  }
  .post-link li:last-child {
    background: url(..//images/aside_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 75% 50%;
    text-align: left;
  }
}
