@charset "UTF-8";

.card:hover::before {
  transform: none;
}
.card {
  padding: 4rem 2rem;
}
.card dt {
  display: block;
}
.card-date {
  margin-left: 2rem;
}
.news-detail-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.card:hover .news-detail-img {
  transform: none;
}
.news-detail-img {
  margin-bottom: 2rem;
  border-radius: 20px;
  width: 100%;
}
.card img {
  transition: none;
}
.news-detail-text {
  line-height: 2rem;
}
.news-detail-notes {
  display: flex;
  margin-top: 2rem;
}
.card .news-detail-remarks {
  min-width: 4rem;
}
.back {
  text-align: center;
  margin-top: 4rem;
}
.back a {
  position: relative;
  display: inline-block;
}
.back a::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--text-color);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: top right;
  transition: transform 0.2s ease;
}
.back a:hover::after {
  transform: scaleX(1);
  transform-origin: top left;
}
@media (max-width: 1024px) {
  .card {
    width: 90%;
    margin: 0 auto;
  }
}
