@charset "UTF-8";
/* 記事詳細全体のコンテナ */
.secNewsDetail {
  width: 100%;
  padding-top: 145px;
  /* ヘッダーエリア（水色の背景部分） */
}
.secNewsDetail .postHeader {
  display: grid;
  grid-template-columns: 1fr 1080px 1fr;
}
.secNewsDetail .postHeader .bl {
  background-color: #E4F6F7;
}
.secNewsDetail .postHeader .centerWrap {
  padding: 60px 0;
  background-color: #E4F6F7;
}
.secNewsDetail .postHeader .headerInner {
  /* カテゴリと日付の横並び */
}
.secNewsDetail .postHeader .headerInner .metaInfo {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  flex-direction: column;
  /* カテゴリラベル（「重要」などのボタン状） */
}
.secNewsDetail .postHeader .headerInner .metaInfo .categoryLabel {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background-color: #002841;
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}
.secNewsDetail .postHeader .headerInner .metaInfo {
  /* 日付 */
}
.secNewsDetail .postHeader .headerInner .metaInfo .postDate {
  padding-top: 10px;
  font-size: 15px;
  font-weight: bold;
}
.secNewsDetail .postHeader .headerInner {
  /* メインタイトル */
}
.secNewsDetail .postHeader .headerInner .postTitle {
  font-size: clamp(28px, 2.5vw, 30px);
  line-height: 1.4;
  font-weight: bold;
  margin: 0;
}
.secNewsDetail {
  /* 本文セクション */
}
.secNewsDetail .secPostContent {
  padding: 60px 0;
}
.secNewsDetail .comBtnArea {
  padding-bottom: 100px;
}

@media screen and (max-width: 1200px) {
  .secNewsDetail .postHeader {
    grid-template-columns: 5% 1fr 5%;
  }
}
/* モバイル対応（メディアクエリ） */
@media (max-width: 767px) {
  .secNewsDetail {
    padding-top: 80px;
    min-height: calc(100vh - 197px);
  }
  .secNewsDetail .postHeader {
    padding: 20px 0;
  }
  .secNewsDetail .postHeader .centerWrap {
    padding: 40px 0;
  }
  .secNewsDetail .postHeader .headerInner .postTitle {
    font-size: clamp(14px, 6.15vw, 24px);
  }
  .secNewsDetail .secPostContent {
    padding: 0 0 30px;
  }
  .secNewsDetail .comBtnArea {
    padding-bottom: 100px;
  }
}/*# sourceMappingURL=style.css.map */