@charset "UTF-8";
.p-article {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 2.5rem 2rem;
  background-color: white;
  border: solid 1px #8ad58a;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .p-article {
    padding: 2rem 1rem;
  }
}
.p-article__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #d9d9d9;
}
.p-article__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.p-article__date {
  font-size: 0.8rem;
}
.p-article__title {
  color: #E4A110;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
@media (max-width: 575px) {
  .p-article__title {
    font-size: 1.3rem;
  }
}
.p-article__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background-color: #8AD58A;
  z-index: 10;
}
.p-article__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #D9D9D9;
  z-index: 9;
}
.p-article__text {
  font-size: 1rem;
}
@media (max-width: 575px) {
  .p-article__text {
    font-size: 0.9rem;
  }
}
.p-article__text--red {
  color: red;
  display: contents;
}
.p-article__text-link {
  color: #59a959;
  transition: color 0.3s ease;
}
.p-article__text-link:hover {
  color: #DEC01A;
}
.p-article__button-area {
  justify-items: right;
  display: grid;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 575px) {
  .p-article__button-area {
    justify-items: center;
  }
}
.p-article__arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-article__arrow-new, .p-article__arrow-old {
  width: 100%;
}
.p-article__arrow-new {
  text-align: left;
}
.p-article__arrow-old {
  text-align: right;
}
.p-article__image-area {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* サムネイルの幅が最小150px */
  gap: 1rem;
  justify-items: center; /* セル内の横方向センター */
  align-items: start; /* 縦は上揃えで整列を安定 */
}

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