/* 
 * news-single.css
 * ニュース個別ページ専用のスタイル
 */

.page._single {
  padding-top: 80px;
}

.single-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.single-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  line-height: 1.6;
  border-top: 1px solid #920b27;
  padding-top: 38px;
  font-size: 18px;
}
.s .single-content {
  gap: 15px;
  margin-top: 30px;
  font-size: calc(14 * var(--scale-rem));
}

._single .news-title {
  font-size: 33px;
  font-weight: bold;
  display: block;
  padding-top: 15px;
}
.s ._single .news-title {
  font-size: calc(22 * var(--scale-rem));
}
._single .news-title span {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 80px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 70px 20px 30px;
  background: #fff;
  text-decoration: none;
  color: #920b27;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.top-btn::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background-image: url('../img/arrowPrev_red.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
