/* ======================================= お知らせ記事詳細（リニューアル） ======================================= */
/* single-mystory.css ベース、プロフィール・タグセクションは除外 */
/* Design tokens: MOSS BLACK #42220F, CLEAR MOSS #B2A581 */
/* BACKGROUND WHITE #FEFDFB, SUBTLE MOSS #E9E9E2, 関連記事背景 #FFFBF3 */

/* ======================================= コンテナ ======================================= */
/* PC: コンテンツ幅 800px + 左右パディング 160px = max-width 1120px */
.news-single .news-single__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 172px 160px 100px;
  box-sizing: border-box;
}

/* ======================================= 記事ヘッダー ======================================= */
.news-single__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}

.news-single__title-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-single__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 2.56px;
  line-height: 1.5;
  color: #42220f;
  margin: 0;
}

.news-single__date {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #b2a581;
}

.news-single__eyecatch-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-single__eyecatch {
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background-color: #e9e9e2;
}

.news-single__eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================================= 記事本文 ======================================= */
.news-single__body {
  margin-bottom: 80px;
}

.news-single__body p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 2;
  color: #42220f;
  margin: 0 0 24px;
}

.news-single__body p:last-child {
  margin-bottom: 0;
}

/* Figma準拠: h2は左ボーダー+ダークブラウン、左寄せ */
.news-single__body .styled_h2 {
  text-align: left !important;
  border-color: #42220f !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #42220f;
  margin: 48px 0 24px;
}

.news-single__body .styled_h3 {
  text-align: left !important;
  border-color: #b2a581 !important;
  font-size: 20px !important;
  color: #42220f;
  margin: 40px 0 20px;
}

.news-single__body .styled_h4 {
  text-align: left !important;
  font-size: 18px !important;
  color: #42220f;
  margin: 32px 0 16px;
}

/* Figma: 区切り線のスタイル */
.news-single__body hr {
  border: none;
  border-top: 1px solid #e9e9e2;
  margin: 40px 0;
}

/* 引用ブロック */
.news-single__body blockquote {
  border-left: 3px solid #b2a581;
  padding: 16px 24px;
  margin: 24px 0;
  font-style: normal;
  color: #42220f;
  background-color: #fefdfb;
}

/* ======================================= 一覧へ戻るリンク ======================================= */
.news-single__back {
  display: flex;
  justify-content: center;
  padding: 56px 0;
}

.news-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #42220f;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.news-single__back-link:hover {
  opacity: 0.7;
}

.news-single__back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #b2a581;
  border-radius: 50%;
  flex-shrink: 0;
}

.news-single__back-arrow img {
  display: block;
  width: 10px;
  height: 6px;
  object-fit: contain;
  transform: rotate(-90deg);
}

/* ======================================= タブレット（1250px以下） ======================================= */
@media (max-width: 1024px) {
  .news-single .news-single__container {
    max-width: 960px;
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* ======================================= SP（767px以下） ======================================= */
@media (max-width: 1024px) {
  .news-single .news-single__container {
    max-width: none;
    width: 100%;
    padding: 168px 24px 48px;
    box-sizing: border-box;
  }

  .news-single__header {
    gap: 28px;
    margin-bottom: 56px;
  }

  .news-single__title {
    font-size: 24px;
    letter-spacing: 1.92px;
  }

  .news-single__date {
    font-size: 14px;
    letter-spacing: 0.56px;
  }

  .news-single__eyecatch-wrap {
    gap: 24px;
  }

  .news-single__body {
    margin-bottom: 56px;
  }

  .news-single__body p {
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 1.9;
    margin: 0 0 20px;
  }

  .news-single__body .styled_h2 {
    font-size: 20px !important;
    margin: 36px 0 20px;
  }

  .news-single__body .styled_h3 {
    font-size: 18px !important;
    margin: 32px 0 16px;
  }

  .news-single__body .styled_h4 {
    font-size: 16px !important;
    margin: 24px 0 12px;
  }
}
