@charset "UTF-8";
/* common */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  line-height: 1.5em;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* NEWS & WORKS */
#news .title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 62px;
}

/* チェックバック: 見出しをPHILOSOPHY / OUR BUSINESS と完全に統一する（PCのみ。SPは基準未確定のため現状維持）。
   このファイルは記事詳細(single.php)でも読み込まれるが、#news .title を持つのは
   archive.php / category.php だけなので詳細ページには影響しない。
   - font-family/weight/size: 他ページと同じ Kumbh Sans 600 / em(65)（旧: Jost 600 / 32px）
   - line-height: 基準ページは未指定で body{line-height:1.5em} の計算値24pxを継承している。
     このファイルは h1〜h5 に line-height:1.5em を当てているため、inherit で継承値に戻す
   - margin-top: 他ページの見出し上端は「ラッパーの padding-top: em(208)」。
     こちらは style.scss の main{padding-top:160px} が起点なので差分48pxを足して揃える
   - margin-bottom: line-height を外すと要素高さが 48px→24px に縮むため、
     +24px して下のCATEGORYナビの位置を従来どおりに保つ */
@media screen and (min-width: 769px) {
  #news .title {
    font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 600;
    font-size: 4.0625em;
    line-height: inherit;
    letter-spacing: 0.05em;
    /* ※marginのemは「自身のfont-size」基準になるため、必ず第2引数(65)で補正する。
       em(48) と書くと 3em × 65px = 195px になってしまう（_mixins.scss の注意書き参照） */
    margin-top: 0.7384615385em;
    margin-bottom: 1.3230769231em;
  }
}
/* チェックバック: タブレット幅で領域が画面いっぱいに見える件。
   共通の .wrap01 は width:96% / max-width:980px。980pxを下回るタブレット帯では
   max-width が効かず 96%（左右の余白が各20px弱）になり、ほぼ全幅に見えていた。
   company / access / contact で揃えた「左右に余白を残す」92% に寄せる。
   ・max-width:980px の上限はそのまま（PC幅の見え方は不変）
   ・SP(≤768px)は style.scss の .wrap01{width:84%} を従来どおり使うので @include pc 内に閉じる
   ・#news は archive.php / category.php にしか無いため記事詳細(single.php)には影響しない */
@media screen and (min-width: 769px) {
  #news .wrap01 {
    width: 92%;
  }
}
#news .nav {
  display: flex;
  /*justify-content: space-between;*/
  font-size: 14px;
}

#news .nav .text {
  position: relative;
  width: 18%;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}

#news .nav .text::after {
  position: absolute;
  content: "|";
  font-size: 14px;
  height: 100%;
  top: 0;
  right: 0;
}

#news .nav .list {
  width: auto;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-left: 5%;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}

#news .nav .list::before {
  content: "●";
  font-size: 10px;
  color: #ffa42c;
  margin-right: 0.5em;
  position: relative;
  top: -0.16em;
}

#news .nav .list.all::before {
  color: #626262;
}

#news .nav .list.news::before {
  color: #ab0113;
}

#news .nav .list.works::before {
  color: #0180a3;
}

#news .nav .list.info::before {
  color: #7ba051;
}

#news .nav .list.trend::before {
  color: #876187;
}

/* チェックバック: 3カラム側も画面いっぱいになっていた件。
   .news_box は .wrap01 でもあるが、ここの width:100% が
   #news .wrap01{width:92%} と同詳細度で後勝ちしていたため上書きされていた。
   幅指定を落として .wrap01 側（92% / max-width:980px）に一本化する。
   ※SPは下の @media 内で #news .news_box{width:84%} を持っているので影響なし */
#news .news_box {
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
}

#news .news_box .news_block {
  width: 30.6%;
  margin-left: 4.1%;
}

#news .news_box .news_block:nth-child(3n+1) {
  margin-left: 0;
}

#news .news_box .news_block:nth-child(n+4) {
  margin-top: 100px;
}

#news .news_box .news_block a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 46px;
}

/* チェックバック: 3カラムの横が切れる件。
   カラムは .news_block{width:30.6%} の可変なのに、サムネだけ 300px 固定だったため必ず溢れていた。
   コンテナ .wrap01 は width:96% / max-width:980px なので 1カラム＝299.9px、
   つまり300pxが収まるのは最大幅のときだけで、それ未満のブラウザ幅では常にはみ出していた。
   カラム幅に追従させ、比率(300:168)は aspect-ratio で維持する。
   ※SPは既に 40vw × 22.4vw（同じ比率）で可変なので、そちらは従来どおり */
#news .news_box .news_block .thum {
  width: 100%;
  aspect-ratio: 300/168;
  margin-bottom: 16px;
}

#news .news_box .news_block .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#news .news_box .news_block .category {
  font-size: 15px;
  font-weight: 500;
  width: 50%;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}

#news .news_box .news_block .category::before {
  content: "●";
  font-size: 10px;
  color: #ffa42c;
  margin-right: 0.5em;
  position: relative;
  top: -0.16em;
}

#news .news_box .news_block .category.news::before {
  color: #ab0113;
}

#news .news_box .news_block .category.works::before {
  color: #0180a3;
}

#news .news_box .news_block .category.info::before {
  color: #7ba051;
}

#news .news_box .news_block .category.trend::before {
  color: #876187;
}

#news .news_box .news_block .date {
  width: 50%;
  font-size: 12px;
  text-align: right;
  padding-top: 2px;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}

#news .news_box .news_block h3 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  font-size: 15px;
  font-weight: bold;
  min-height: 3em;
}

/* MORE（旧 news_more_pc.svg の画像をテキスト化。archive.php / category.php）
   本番 https://www.doman-ic.com/news/ の見せ方＝「MORE」＋右へ伸びる細い罫線。
   旧SVG実測（viewBox 95.58×11.25 を width:96px で表示）から寸法を起こす:
     文字部 x=0〜41.49（字高11.03）→ Jost 500 15px 相当 / 余白 13px / 罫線 41px（stroke 1px）
     合計 ≒ 96px（旧 width:96px と同値）のため、右下の見え位置は従来どおり。
   罫線は ::after。幅は内容なりにして right:0 で右端を揃える */
#news .news_box .news_block .more {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

#news .news_box .news_block .more::after {
  content: "";
  width: 41px;
  height: 1px;
  margin-left: 13px;
  background-color: currentColor; /* 親aの color（common.scss の a{color:$black}）に追従 */
}

@media screen and (max-width: 768px) {
  /* チェックバック: SPも他ページ（基準 = PHILOSOPHY）と揃える。
     ※このファイルは他ページと違い body に $sp-base-font-size を当てていないため、
       em() の基準がSPで14px（common.scss の body{font-size:1.4rem}）になってしまう。
       そのため他ページの em(46)=46px@440 などは vw に直値換算して指定する。
     - font-size 10.45vw = 46px@440（他ページの em(46) と同値。旧 7.3vw ≒ 32px）
     - line-height: このファイルの h1〜h5{line-height:1.5em} を打ち消し、他ページ同様bodyの継承値へ
     - margin-top: main{padding-top:26.7vw} が起点なので、基準の em(104)=23.6vw まで詰める
     - margin-bottom: 行ボックスが縮むぶんを足して下のCATEGORYナビ位置を維持 */
  #news .title {
    font-size: 10.45vw;
    line-height: inherit;
    margin-top: -3.07vw;
    margin-bottom: 19.6vw;
  }
  #news .nav {
    justify-content: left;
    flex-wrap: wrap;
    font-size: 3.46vw;
  }
  #news .nav .text {
    width: 100%;
    padding-bottom: 2.66vw;
    margin-bottom: 4.8vw;
    border-bottom: 1px #000 solid;
  }
  #news .nav .text::after {
    position: absolute;
    content: "";
  }
  #news .nav .list {
    width: 32%;
    font-size: 3.46vw;
    text-align: left;
    margin-left: 0;
  }
  #news .nav .list::before {
    content: "●";
    font-size: 10px;
    color: #ffa42c;
    margin-right: 0.5em;
    position: relative;
    top: -0.16em;
  }
  #news .news_box {
    width: 84%;
    margin-top: 7vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #news .news_box .news_block {
    width: 47.6%;
  }
  #news .news_box .news_block,
  #news .news_box .news_block:nth-child(3n+1) {
    margin-left: 0;
  }
  #news .news_box .news_block:nth-child(n+3) {
    margin-top: 10.1vw;
  }
  #news .news_box .news_block a {
    display: block;
    padding-bottom: 6.7vw;
  }
  #news .news_box .news_block .thum {
    width: 40vw;
    height: 22.4vw;
    margin-bottom: 2.4vw;
  }
  #news .news_box .news_block .category {
    font-size: 3.5vw;
    width: 100%;
  }
  #news .news_box .news_block .category::before {
    font-size: 2.8vw;
    top: -0.16em;
  }
  #news .news_box .news_block .date {
    width: 100%;
    font-size: 2.9vw;
    text-align: left;
    padding-top: 0;
  }
  #news .news_box .news_block h3 {
    width: 100%;
    margin-top: 1em;
    font-size: 3vw;
    min-height: 6em;
  }
  /* 旧SVG（viewBox 115.96×16.5 を width:15.5vw で表示）からの換算。
     文字高 2.16vw → font-size 3vw（h3と同値）/ 余白 1.9vw / 罫線 5.5vw ＝ 合計 ≒15.5vw。
     position / right / bottom はPC側と同値のため再指定しない */
  #news .news_box .news_block .more {
    font-size: 3vw;
  }
  #news .news_box .news_block .more::after {
    width: 5.5vw;
    margin-left: 1.9vw;
  }
}
/* topic */
#topic .nav {
  display: flex;
  justify-content: space-between;
}

#topic .nav .category {
  font-size: 15px;
  font-weight: 500;
  min-width: 150px;
  max-width: 100%;
}

#topic .nav .category::before {
  content: "●";
  font-size: 10px;
  color: #ffa42c;
  margin-right: 0.5em;
  position: relative;
  top: -0.16em;
}

#topic .nav .category.news::before {
  color: #ab0113;
}

#topic .nav .category.works::before {
  color: #0180a3;
}

#topic .nav .category.info::before {
  color: #7ba051;
}

#topic .nav .category.trend::before {
  color: #876187;
}

#topic .nav .kuzu {
  color: #595757;
}

#topic .head {
  margin-top: 35px;
  padding-top: 53px;
  padding-bottom: 90px;
  background-color: #FFF226;
}

#topic .head .date {
  font-size: 12px;
  margin-bottom: 1rem;
}

#topic .head .title {
  font-size: 25px;
  font-weight: 700;
}

#topic .wrap {
  margin-top: -52px;
  margin-bottom: 132px;
}

#topic .wrap .name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1.2rem;
}

#topic .wrap .name.ptn2 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 1.2rem;
}

#topic .conte h1, #topic .conte h2 {
  display: inline-block;
  padding: 0 0.4rem;
  font-size: 25px;
  font-weight: 700;
  border-bottom: 4px #FFF226 solid;
  margin-bottom: 30px;
}

#topic .conte h3, #topic .conte h4, #topic .conte h5 {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
}

#topic .conte .text {
  font-size: 16px;
  padding-top: 38px;
}

#topic .conte .boby:nth-child(n+2) {
  margin-top: 72px;
}

#topic .conte .photo {
  width: 400px;
  margin-top: 62px;
  margin-left: auto;
  margin-right: auto;
}

#topic .conte p {
  margin-bottom: 15px;
}

#topic .conte a, #topic .name a {
  text-decoration: underline;
  color: #0028F5;
}

#topic .btn {
  width: 600px;
  display: flex;
  justify-content: space-between;
  margin-top: 140px;
  margin-left: auto;
  margin-right: auto;
}

#topic .btn .list {
  position: relative;
  font-size: 16px;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}

#topic .btn .list a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

#topic .btn .list:nth-child(1) a::before {
  position: absolute;
  top: 0.23rem;
  left: -0.8rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  background: url(../images/news/arrow_prev.png);
  background-size: cover;
  width: 16px;
  height: 16px;
}

#topic .btn .list:nth-child(2) a::before {
  position: absolute;
  top: 0.23rem;
  left: -0.8rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  background: url(../images/news/arrow_back.png);
  background-size: cover;
  width: 16px;
  height: 16px;
}

#topic .btn .list:nth-child(3) a::before {
  position: absolute;
  top: 0.23rem;
  right: -1.8rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  background: url(../images/news/arrow_next.png);
  background-size: cover;
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 768px) {
  #topic .nav {
    display: block;
  }
  #topic .nav .category {
    font-size: 4.26vw;
  }
  #topic .nav .category::before {
    font-size: 4.26vw;
  }
  #topic .nav .kuzu {
    width: 100%;
    margin-top: 4.93vw;
  }
  #topic .head {
    margin-top: 2.13vw;
    padding-top: 6.13vw;
    padding-bottom: 11.2vw;
  }
  #topic .head .date {
    font-size: 3.2vw;
  }
  #topic .head .title {
    font-size: 4.8vw;
  }
  #topic .wrap {
    margin-top: -6.66vw;
    margin-bottom: 12vw;
  }
  #topic .wrap .name {
    font-size: 4vw;
    margin-top: 1.2rem;
  }
  #topic .wrap .name.ptn2 {
    font-size: 3.3vw;
  }
  #topic .conte h1, #topic .conte h2 {
    font-size: 4.8vw;
    margin-bottom: 6vw;
  }
  #topic .conte h3, #topic .conte h4, #topic .conte h5 {
    /*padding-top: 5.86vw;*/
    font-size: 4vw;
    margin-bottom: 6vw;
  }
  #topic .conte .text {
    font-size: 3.46vw;
    padding-top: 3.73vw;
  }
  #topic .conte .boby:nth-child(n+2) {
    margin-top: 12vw;
  }
  #topic .conte .photo {
    width: 53.06vw;
    margin-top: 13.33vw;
  }
  #topic .btn {
    width: 80vw;
    margin-top: 18.13vw;
  }
  #topic .btn .list {
    font-size: 3.46vw;
  }
  #topic .btn .list:nth-child(1) {
    padding-left: 1.5rem;
  }
  #topic .btn .list:nth-child(1) a::before {
    width: 3.66vw;
    height: 3.66vw;
    top: 0.4rem;
    left: -1.2rem;
  }
  #topic .btn .list:nth-child(2) {
    padding-left: 1.4rem;
  }
  #topic .btn .list:nth-child(2) a::before {
    width: 3.66vw;
    height: 3.66vw;
    top: 0.4rem;
    left: -1rem;
  }
  #topic .btn .list:nth-child(3) {
    padding-right: 1.5rem;
  }
  #topic .btn .list:nth-child(3) a::before {
    width: 3.66vw;
    height: 3.66vw;
    top: 0.4rem;
    right: -2.6rem;
  }
  #topic .conte p {
    margin-bottom: 3vw;
    font-size: 3.3vw;
  }
}
/*ページャー*/
.page-box, .pagenation {
  margin-bottom: 140px;
  margin-top: 130px;
  text-align: center;
  font-size: 16px;
}

.pagenation span.current {
  border-radius: 100px;
  border: 1px solid #FFF226;
}

.pagenation .next {
  position: relative;
  font-size: 16px;
  font-family: Jost, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding-right: 0 !important;
}

.pagenation .next::before {
  position: absolute;
  top: 0.9rem;
  right: -1.8rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  background: url(../images/news/arrow_next.png);
  background-size: cover;
  width: 16px;
  height: 16px;
}

.pagenation .prev {
  position: relative;
  font-size: 16px;
  font-family: Jost, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding-left: 0 !important;
}

.pagenation .prev::before {
  position: absolute;
  top: 0.9rem;
  left: -0.8rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  background: url(../images/news/arrow_prev.png);
  background-size: cover;
  width: 16px;
  height: 16px;
}

.pagenation span, .pagenation a {
  margin-left: 1px;
  margin-right: 2px;
  vertical-align: middle;
  display: inline-block !important;
  /*border-bottom: none!important;*/
  font-weight: bold;
  padding: 15px 18px !important;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .page-box, .pagenation {
    margin-bottom: 15vw;
    margin-top: 13vw;
    text-align: center;
    font-size: 3.46vw;
  }
  .pagenation span.current {
    border-radius: 100px;
    border: 1px solid #FFF226;
  }
  .pagenation .next {
    font-size: 3.46vw;
  }
  .pagenation .next::before {
    width: 3.66vw;
    height: 3.66vw;
    top: 1.1rem;
    right: -2.6rem;
  }
  .pagenation .prev {
    font-size: 3.46vw;
  }
  .pagenation .prev::before {
    width: 3.66vw;
    height: 3.66vw;
    top: 1.1rem;
    left: -1rem;
  }
  .pagenation span, .pagenation a {
    margin-left: 1px;
    margin-right: 2px;
    vertical-align: middle;
    display: inline-block !important;
    /*border-bottom: none!important;*/
    font-weight: bold;
    padding: 3vw 4vw !important;
    line-height: 1;
  }
}
/* =============================================
   記事詳細（single.php / .article）2026リニューアル
   Figma: 記事ページ_PC（node 253:1838 / 1200pxフレーム）。SPは未支給のためPCから展開
   - 単位は em()（_mixins.scss）。基準は .article 自身の font-size
     （PC=16px固定 / SP=440pxフレームのvw追従。archive側の旧デザインに影響させないため body ではなく .article に持たせる）
   - ヘッダー白/フッター黄の反転は body.is-white-page（header.php付与・common.scss）
============================================= */
main:has(.article) {
  padding-top: 0; /* style.scss の main{padding-top:160px} を打ち消し、.article 側で管理 */
}

.article {
  font-size: 16px; /* em()の基準（このブロック配下だけ有効） */
  padding-top: 10.75em; /* fixedヘッダー(90px)込みのFigma実測（上部バー y172） */
  padding-bottom: 3.3125em; /* footer側のmargin-top(100px)と合わせてFigma実測153px */
  color: #2c2c2c;
}
@media screen and (max-width: 768px) {
  .article {
    font-size: 3.6363636364vw;
    padding-top: 5.625em;
  }
}

/*--- 上部バー（カテゴリラベル / パンくず） ---*/
.article__top {
  max-width: 61.25em; /* Figma実測: x110〜1089 */
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .article__top {
    width: calc(100% - 3.125em);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
}

.article__category {
  display: inline-flex;
  align-items: center;
  gap: 0.5714285714em;
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 0.875em;
  letter-spacing: 0.05em;
}

.article__category::before {
  content: "";
  width: 0.7142857143em;
  height: 0.7142857143em;
  border-radius: 50%;
  background-color: #ffa42c;
}

/* カテゴリ別ドット色（TOPの .news-list__category と同じ色分け） */
.article__category--news::before {
  background-color: #ab0113;
}

.article__category--works::before {
  background-color: #0180a3;
}

.article__category--info::before {
  background-color: #7ba051;
}

.article__category--trend::before {
  background-color: #876187;
}

.article__breadcrumb {
  font-size: 0.75em;
  letter-spacing: 0.05em;
  text-align: right;
}

/*--- 黄色帯（日付＋タイトル） ---*/
.article__head {
  margin-top: 1.125em; /* Figma実測: バー下端(192)→帯(210) */
  background-color: #FFF226;
  padding: 3.4375em 0 6.0625em; /* 帯高249のうち下97pxにメイン画像が重なる */
}
@media screen and (max-width: 768px) {
  .article__head {
    margin-top: 0.875em;
    padding: 1.875em 0 3.75em;
  }
}

.article__head-inner {
  max-width: 51em; /* Figma実測: x193〜1009 */
  width: 91%;
  margin: 0 auto;
}

.article__date {
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 0.75em;
  letter-spacing: 0.1em;
}

.article__title {
  margin-top: 0.6538461538em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif; /* style_news共通のJost h1-h5指定を上書き */
  font-weight: 700;
  font-size: 1.625em;
  line-height: 1.3; /* Figma実測 タイトル2行67.8px */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .article__title {
    font-size: 1.25em;
    line-height: 1.5;
  }
}

/*--- 本文カラム ---*/
.article__inner {
  max-width: 51em;
  width: 91%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .article__inner {
    width: calc(100% - 3.125em);
  }
}

.article__image {
  margin: -3.3125em 0 0; /* 黄色帯の下端に重ねる（Figma実測: 画像y406 / 帯下端459） */
}
@media screen and (max-width: 768px) {
  .article__image {
    margin-top: -1.875em;
  }
}

.article__image img {
  display: block;
  width: 100%;
  height: auto;
}

.article__client {
  margin-top: 1.75em;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .article__client {
    margin-top: 1.4285714286em;
    font-size: 0.875em;
  }
}

.article__client--url {
  margin-top: 0.375em;
}
@media screen and (max-width: 768px) {
  .article__client--url {
    margin-top: 0.4285714286em;
  }
}

.article__client--url a {
  font-weight: 500;
  text-decoration: underline;
}

/*--- 記事本文（the_content。CMS入力のh2/h3/p想定） ---*/
.article__content {
  margin-top: 3.75em;
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 1.67; /* Figma実測 25px/15px */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .article__content {
    margin-top: 2.5em;
    font-size: 0.875em;
  }
}

.article__content h2 {
  display: inline-block; /* 黄下線をテキスト幅に */
  margin-top: 3em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.3333333333em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #FFF226; /* Figma実測: 見出し下の黄ライン */
  padding-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  .article__content h2 {
    margin-top: 2.25em;
  }
}

.article__content h2:first-child {
  margin-top: 0;
}

.article__content h3 {
  margin-top: 2.8125em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.0666666667em;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .article__content h3 {
    margin-top: 2.1875em;
  }
}

.article__content p {
  margin-top: 1.3333333333em;
  line-height: 1.67;
}

.article__content img {
  max-width: 100%;
  height: auto;
  margin-top: 1.875em;
}

.article__content a {
  text-decoration: underline;
}

/*--- ページャー（PREV / BACK TO LIST / NEXT） ---*/
.article__pager {
  max-width: 37.375em; /* Figma実測: x301〜899 */
  width: 91%;
  margin: 6.25em auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .article__pager {
    margin-top: 3.75em;
  }
}

.article__pager-item {
  min-width: 5em; /* PREV/NEXTが無い場合もレイアウトを保つ */
  font-family: "Kumbh Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 0.9375em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .article__pager-item {
    min-width: 3.75em;
    font-size: 0.8125em;
  }
}

.article__pager-item--next {
  text-align: right;
}

.article__pager-item--back {
  text-align: center;
}

.article__pager-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.6666666667em;
  color: #2c2c2c;
  transition-property: opacity;
  transition-duration: 0.4s;
}

.article__pager-item a:hover {
  opacity: 0.7;
}

/* PREV: 黄ドットを左 / NEXT: 黄ドットを右 / BACK TO LIST: グリッドアイコンを左 */
.article__pager-item--prev a::before,
.article__pager-item--next a::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: #FFF226;
}

.article__pager-item--back a::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background-image: url("../images/news/back-to-list.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
