@charset "UTF-8";
/*
---------------------------------------------
Color
---------------------------------------------
*/
/*
---------------------------------------------
Font
---------------------------------------------
*/
/*
---------------------------------------------
Flex
---------------------------------------------
*/
/*
---------------------------------------------
Media Query
---------------------------------------------
*/
/*
---------------------------------------------
Line Break (display control)
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
.main {
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: 120px !important;
  }
}

/*
---------------------------------------------
section--news-detail：お知らせ詳細セクション
薄緑背景、上下余白は SP:40px / PC:80px
---------------------------------------------
*/
.news {
  display: flex;
  flex-direction: column;
  gap: 2rem !important;
}
@media screen and (min-width: 768px) {
  .news {
    gap: 5rem !important;
  }
}

.section--news-detail {
  background: #E9F0EB;
}

.news__item-link-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.section {
  padding: 1.5rem 1rem 2.5rem 1rem !important;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 56px 1rem !important;
  }
}

.section__inner {
  max-width: 1100px !important;
  padding: 0 !important;
  gap: 2rem !important;
}
@media screen and (min-width: 768px) {
  .section__inner {
    gap: 3rem !important;
  }
}

/*
---------------------------------------------
section__inner--news-detail
Figma PC のコンテンツ幅 1100px に対応
---------------------------------------------
*/
/*
---------------------------------------------
breadcrumb：パンくずリスト
TOP > 記事タイトル の2階層
---------------------------------------------
*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.125rem; /* 150% */
  letter-spacing: 0.075rem;
}

.breadcrumb__link {
  color: #0E8140;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    opacity: 0.6;
  }
}

.breadcrumb__arrow::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.875rem;
  margin-top: 0.3rem;
  background-image: url("../icon/icon-news-pankuzu-slash.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.breadcrumb__current {
  color: #231815;
}

/*
---------------------------------------------
news-card：白カード
SP: padding 16px / PC: padding 56px 120px
---------------------------------------------
*/
.news-card {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .news-card {
    padding: 56px 120px;
    gap: 40px;
  }
}

/*
---------------------------------------------
news-card__date：日付
---------------------------------------------
*/
.news-card__date {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.8px;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .news-card__date {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

/*
---------------------------------------------
news-card__title：記事タイトル（h1）
---------------------------------------------
*/
.news-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .news-card__title {
    font-size: 32px;
    letter-spacing: 3.2px;
    line-height: 1.25;
  }
}

/*
---------------------------------------------
news-card__body：本文エリア
set:html で挿入される HTML 内の各要素をスタイル
---------------------------------------------
*/
.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /*
  ------------------------------
  h2：小見出し
  ------------------------------
  */
}
.news-card__body h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.7;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .news-card__body h2 {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.8;
  }
}
.news-card__body {
  /*
  ------------------------------
  p：本文段落
  ------------------------------
  */
}
.news-card__body p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.7;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .news-card__body p {
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 1.75;
  }
}
.news-card__body {
  /*
  ------------------------------
  a：リンク
  target="_blank" の外部リンクには ↗ を追加
  ------------------------------
  */
}
.news-card__body a {
  color: #0E8140;
  font-weight: 700;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .news-card__body a:hover {
    opacity: 0.6;
  }
}
.news-card__body a[target=_blank]::after {
  content: " ↗";
}
.news-card__body {
  /*
  ------------------------------
  img：記事内画像
  ------------------------------
  */
}
.news-card__body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/*
---------------------------------------------
news-actions：ボタンエリア
TOPへ戻るボタンを中央配置
---------------------------------------------
*/
.news-actions {
  display: flex;
  justify-content: center;
}

/*
---------------------------------------------
news-actions__back：TOPへ戻るボタン
緑枠・白背景の角丸ボタン
---------------------------------------------
*/
.news-actions__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: 2px solid #0E8140;
  border-radius: 32px;
  background: #ffffff;
  color: #0E8140;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .news-actions__back:hover {
    opacity: 0.6;
  }
}
.news-actions__back {
  position: relative;
  width: 19.375rem;
  height: 3.5rem;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
}
.news-actions__back svg {
  position: absolute;
  right: 1.5rem;
}

/*
---------------------------------------------
news-actions__back-icon：戻るボタンの矢印
---------------------------------------------
*/
.news-actions__back-icon {
  flex-shrink: 0;
}