@charset "UTF-8";
/* src/assets/scss/foundation/_index.scss */
/* 記述の仕方 */
/* src/assets/scss/foundation/_index.scss */
/* ===== 使用例（このファイルを直接ビルドしない） ==================
@use "../foundation" as f;

.title {
  font-size: f.rem(20px);           // → 1.25rem（$base-font-size:16px）
  line-height: f.lh(30px, 20px);    // → 1.5
  letter-spacing: f.spacing(40);    // → 0.04em
}

.lead {
  // スマホ幅に応じて可変（14px〜18pxを rem で制限）
  font-size: f.clamp-vw(14, 18);
}

.hero-copy {
  // 375px カンプ換算：24px 相当を vw で出す
  font-size: f.get_vw(24px, 375);
}
=================================================================== */
/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_index.scss */
/* ===============================================
foundation/_reset.scss  （プロジェクト用 最小リセット）
目的：ブラウザ差をならしつつ、UIのデフォルトを必要以上に壊さない
方針：
  - レイアウト起点だけを調整（box-sizing, margin/padding など）
  - 文字やフォームの見た目は「継承＋最低限」に留める
  - フォーカス可視性は残す（視認性・アクセシビリティ優先）
※ overflow や font-size は reset では触らない（base.scss で管理）
=============================================== */
/* 1) ボックスモデルの一貫性 */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0; /* border-color 指定時に崩れないための初期化 */
  border-style: solid;
}

/* 2) 余白の初期化（必要最低限） */
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
dl, dd {
  margin: 0;
  padding: 0;
}

/* 3) タイポ周り（最小限）
   - 行間は base.scss で最終的に上書きするのでここでは緩く */
html {
  -webkit-text-size-adjust: 100%; /* iOSの自動拡大を抑制 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  line-height: 1.5;
}

/* 4) 画像 / メディアの収まり */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

img, video {
  height: auto;
}

svg {
  vertical-align: middle;
}

/* 5) リストの初期化
   - コンポーネントで独自の丸/番号を付けやすいように */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 6) アンカー（色と装飾はコンポーネントで制御） */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent; /* iOSのタップハイライト対策 */
}

/* 7) フォーム要素：見た目は壊しすぎず、フォントだけ継承 */
button,
input,
select,
textarea {
  font: inherit; /* フォント/サイズ/行間を継承 */
  color: inherit;
  margin: 0;
}

button {
  cursor: pointer; /* ボタンらしさは維持 */
  background: transparent; /* デフォ背景を消す（枠は保持） */
}

textarea {
  resize: vertical; /* 横リサイズはレイアウト崩れの元になりやすい */
}

/* 8) テーブル：基本は素朴に（罫線はコンポーネントで） */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 0;
}

/* 9) その他の素朴な初期化 */
hr {
  height: 0;
  border: 0;
  border-top: 1px solid currentColor; /* 必要なら見た目定義 */
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

/* 10) フォーカス可視性の確保（アクセシビリティ） */
:focus {
  outline: 2px solid #382620;
  outline-offset: 2px;
}

/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_base.scss
   基礎スタイル（resetの後に読み込まれる前提）
   ※ ここでは “フォルダのまとめ役” を参照せず、
      必要なモジュールだけ個別に @use するのが安全
*/
html {
  /* 横はみ出し対策。最新ブラウザなら clip が推奨（hiddenでもOK） */
  overflow-x: clip;
  /* デフォルトはSP帯（320〜767px想定） */
  font-size: clamp(0.875rem, 0.249rem + 3.132vw, 1.75rem);
  /* PC帯：1280pxを基準に 16px を上限、14pxを下限に可変
     - f.vw(16) は 1280px 基準で 1.25vw（= 1280px時に16px）
     - clamp(min, preferred, max) で読みやすく
  */
}

body {
  position: relative;
  color: #222222;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
  background-color: #f3efeb;
  margin: 0;
  padding: 0;
  /* 100vw はスクロールバー幅ぶんはみ出しやすいので 100% 推奨 */
  width: 100%;
  overflow-x: clip;
}
body.is-footer-sns-fixed {
  padding-bottom: 4.6875rem;
}

img {
  display: block;
  /* レイアウト衝突を避けるなら max-width の方が無難 */
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-news-page-archive-content-wrapper {
  padding-top: 15.7333333333vw;
  padding-bottom: 42.6666666667vw;
}

.p-news-page-archive-item-main__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 5.0666666667vw;
       column-gap: 5.0666666667vw;
  row-gap: 6.1333333333vw;
}

.p-news-page-item-main__pagenation {
  padding-top: 36px;
}
.p-news-page-item-main__pagenation nav div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.p-news-page-item-main__pagenation nav .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #382620;
  background: #fff;
  color: #382620;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
}
.p-news-page-item-main__pagenation nav .page-numbers.current {
  background: #382620;
  color: #fff;
}
.p-news-page-item-main__pagenation nav .page-numbers:hover {
  background: #382620;
  color: #fff;
  transition: all 0.3s ease;
}
.p-news-page-item-main__pagenation nav .page-numbers.dots {
  border: none;
  background: none;
  pointer-events: none;
}
.p-news-page-item-main__pagenation nav .page-numbers:focus {
  outline: #382620;
  outline-offset: 4px;
}

.p-news-page-archive-item-sidebar__current-article {
  padding: 20px 20px 15px 20px;
  margin-top: 16.2666666667vw;
  background: #f8f8f8;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-single-page__head--news {
  background: url("../img/news/news-img_p-firstview_news-sp.webp") no-repeat center center/cover;
}

.p-news-page-content-wrapper {
  padding-top: 15.7333333333vw;
  padding-bottom: 42.6666666667vw;
}

.p-news-page-content {
  display: flex;
  flex-direction: column;
}

.p-news-page-item-main__category-title {
  color: #382620;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 150%;
}

.p-news-page-item-main__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 5.0666666667vw;
       column-gap: 5.0666666667vw;
  row-gap: 5.8666666667vw;
  margin-top: 6.4vw;
}

.p-news-page-item__sidebar {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16vw;
}

.p-news-page-item-sidebar__current-article {
  padding: 5.3333333333vw 5.3333333333vw 3.4666666667vw 5.3333333333vw;
  margin-top: 15.2vw;
  background: #f8f8f8;
}

.p-news-page-item-sub__current-article-title {
  padding-bottom: 11.2vw;
  position: relative;
  color: #222222;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 150%;
}
.p-news-page-item-sub__current-article-title::after {
  content: "";
  position: absolute;
  width: 8.5333333333vw;
  height: 0.2666666667vw;
  background-color: #222222;
  left: 0;
  bottom: 0;
  transform: translate(0px, -5.3333333333vw);
}

.p-news-page-item-sub-cards {
  display: flex;
  flex-direction: column;
  gap: 3.7333333333vw;
}

.p-news-page-side-card__content {
  display: flex;
  flex-direction: row;
  gap: 14px;
}

.p-news-page-side-card__img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 26.6666666667vw;
  height: 26.6666666667vw;
}

.p-news-page-side-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-top: 0px !important;
}

.p-news-page-side-card__title {
  font-size: 3.7333333333vw !important;
  margin-bottom: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-news-page-item-sub__category {
  padding: 5.3333333333vw;
  background: #f8f8f8;
}

.p-news-page-item-sidebar-category__list {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}

.p-news-page-item-sidebar-category__link::before {
  content: "";
  display: inline-block;
  margin-right: 0.5333333333vw;
  width: 1.6vw;
  height: 3.2vw;
  background: url("../img/common/news-icon-category-arrow.svg") no-repeat center center/contain;
}

.p-news-page-item-sidebar-category-link__text {
  color: #222222;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 150%;
}
.p-news-page-item-sidebar-category-link__text:hover {
  opacity: 0.7;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-news-card {
  position: relative;
  width: 100%;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.p-news-card:hover .p-news-page-card__body {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.p-news-card:hover .p-news-page-card__img img, .p-news-card:hover .p-news-page-side-card__img img {
  transform: scale(1.1); /* 画像を10%拡大 */
  transition: transform 0.3s ease; /* スムーズな拡大アニメーション */
}

.p-news-page-card__img, .p-news-page-side-card__img {
  text-align: center;
  overflow: hidden;
}
.p-news-page-card__img img, .p-news-page-side-card__img img {
  transition: transform 0.3s ease; /* ホバー時のアニメーションを設定 */
}

.p-news-page-card__img img {
  aspect-ratio: 340/213; /* 画像のアスペクト比を維持 */
}

.p-news-page-card__tag {
  position: relative;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  top: 0px;
  left: 0px;
  transform: translate(-2.1333333333vw, 2.6666666667vw);
  z-index: 1;
}
.p-news-page-card__tag::after {
  content: "";
  position: absolute;
  fill: #aaa;
  bottom: 0;
  left: 0;
  width: 2.1333333333vw;
  height: 1.3333333333vw;
  background: url("../img/common/common-icon_category-background-triangle.svg") no-repeat center center/contain;
  transform: translate(0vw, 1.3333333333vw);
  z-index: 2;
}
.p-news-page-card__tag-text {
  color: #fff;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 150%;
  padding: 0.5333333333vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  background: #382620;
}

.p-news-page-card__body {
  padding-top: 8px;
}

.p-news-page-card__title {
  color: #222222;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-news-page-card__date {
  color: #222222;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 150%;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-news-single-page-content-wrapper {
  padding-top: 15.7333333333vw;
  padding-bottom: 42.6666666667vw;
}

.p-news-single-page-content {
  max-width: 688px;
  margin: 0 auto;
}

.p-news-single-h1-block__img {
  width: 89.3333333333vw;
  height: 46.9333333333vw;
  aspect-ratio: 335/176;
}
.p-news-single-h1-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-single-h1-block__title {
  font-size: 5.3333333333vw;
  color: #382620;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
  margin-top: 5.3333333333vw;
}

.p-news-single-h1-block__caption {
  color: #382620;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5.3333333333vw;
  margin-top: 5.3333333333vw;
}
.p-news-single-h1-block__caption .p-news-single-h1-block__date {
  font-size: 3.7333333333vw;
  line-height: 150%;
}
.p-news-single-h1-block__caption .p-news-single-h1-block__line {
  display: inline-block;
  width: 1px;
  height: 4.8vw;
  background: #382620;
}
.p-news-single-h1-block__caption .p-news-single-h1-block__category-name {
  font-size: 3.7333333333vw;
  line-height: 150%;
}

.p-news-single__body {
  /* 共通スタイル */
  /* 引用 */
  /* リスト */
}
.p-news-single__body p,
.p-news-single__body img,
.p-news-single__body iframe,
.p-news-single__body blockquote,
.p-news-single__body ul,
.p-news-single__body ol,
.p-news-single__body table {
  margin-top: 3.7333333333vw;
}
.p-news-single__body h2,
.p-news-single__body h3,
.p-news-single__body h4 {
  margin-top: 10.6666666667vw;
  color: #382620;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.p-news-single__body h2 {
  position: relative;
  font-size: 4.8vw;
  padding-left: 4.2666666667vw;
}
.p-news-single__body h2::before {
  position: absolute;
  content: "";
  width: 6px;
  top: 0;
  left: 0;
  bottom: 0;
  background: #382620;
}
.p-news-single__body h3 {
  position: relative;
  padding-bottom: 3.2vw;
  font-size: 4.2666666667vw;
}
.p-news-single__body h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #382620;
}
.p-news-single__body h4 {
  font-size: 3.7333333333vw;
}
.p-news-single__body p {
  color: #222222;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 200%; /* 200% */
}
.p-news-single__body blockquote {
  background: #f8f8f8;
  padding: 5.3333333333vw;
  color: #222222;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 200%;
}
.p-news-single__body blockquote p {
  margin-top: 0;
}
.p-news-single__body blockquote cite {
  text-align: right;
  line-height: 200%;
  font-size: 3.7333333333vw;
  font-style: normal;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 3.7333333333vw;
}
.p-news-single__body blockquote cite:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
}
.p-news-single__body blockquote cite a {
  font-size: 3.7333333333vw;
  line-height: 200%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-news-single__body ul li,
.p-news-single__body ol li {
  color: #222222;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 200%;
}
.p-news-single__body ul li {
  position: relative;
  padding-left: 3.4666666667vw;
  margin-left: 2.1333333333vw;
}
.p-news-single__body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #222222;
  font-size: 3.7333333333vw;
  line-height: 200%;
}
.p-news-single__body ol {
  margin-left: 5.3333333333vw;
  list-style-type: decimal;
}
.p-news-single__body ol li {
  padding-left: 1px;
}

/* ページネーション */
.p-news-single__pagenation {
  margin-top: 10.6666666667vw;
}
.p-news-single__pagenation-list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.p-news-single__pagenation-item {
  color: #382620;
  text-align: center;
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 150%;
  transition: all 0.3s ease;
}
.p-news-single__pagenation-item:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.p-news-single__pagenation-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.p-news-single__pagenation-item--prev {
  grid-column: 1;
  justify-self: start;
}
.p-news-single__pagenation-item--prev a:before {
  content: "";
  display: inline-block;
  margin-right: 2.6666666667vw;
  width: 1.6vw;
  height: 3.2vw;
  background: url("../img/news/news-icon_p-news-page-main-cards-pagenation-pre.svg") no-repeat center center/contain;
}
.p-news-single__pagenation-item--all {
  grid-column: 2;
  justify-self: center;
}
.p-news-single__pagenation-item--all a {
  min-width: 34.1333333333vw;
  height: 12.5333333333vw;
  border: 1px solid #382620;
}
.p-news-single__pagenation-item--next {
  grid-column: 3;
  justify-self: end;
}
.p-news-single__pagenation-item--next a::after {
  content: "";
  margin-left: 2.6666666667vw;
  display: inline-block;
  width: 1.6vw;
  height: 3.2vw;
  background: url("../img/news/news-icon_p-news-page-main-cards-pagenation-next.svg") no-repeat center center/contain;
}

.p-news-single-page-item__sub {
  margin-top: 26.9333333333vw;
}

.p-news-single-page-item__relation-article-title {
  color: #382620;
  text-align: center;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 150%;
}

.p-news-single-page__relation-article-cards {
  margin-top: 10.6666666667vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.3333333333vw;
  row-gap: 4.5333333333vw;
}

@media screen and (min-width: 768px){
  html {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .p-news-page-archive-content-wrapper {
    padding-top: 6.25vw;
    padding-bottom: 12.578125vw;
  }
  .p-news-page-archive-item-main__cards-wrapper {
    max-width: 56.25vw;
  }
  .p-news-page-archive-item-main__cards {
    -moz-column-gap: 3.125vw;
         column-gap: 3.125vw;
    flex-grow: 1;
    row-gap: 3.125vw;
  }
  .p-news-page-item-main__pagenation {
    padding-top: 59px;
  }
  .p-news-page-archive-item-sidebar__current-article {
    margin-top: 0;
    padding: 1.5625vw 1.5625vw 1.171875vw 1.5625vw;
  }
  .p-single-page__head--news {
    background: url("../img/news/news-img_p-firstview_news.webp") no-repeat center center/cover;
  }
  .p-news-page-content-wrapper {
    padding-top: 6.25vw;
    padding-bottom: 12.578125vw;
  }
  .p-news-page-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 4.6875vw;
  }
  .p-news-page-item-main__category-title {
    font-size: 24px;
  }
  .p-news-page-item-main__cards-wrapper {
    max-width: 50.78125vw;
  }
  .p-news-page-item-main__cards {
    -moz-column-gap: 3.125vw;
         column-gap: 3.125vw;
    flex-grow: 1;
    row-gap: 3.125vw;
    margin-top: 3.125vw;
  }
  .p-news-page-item__sidebar {
    gap: 4.6875vw;
    max-width: 320px;
  }
  .p-news-page-item-sidebar__current-article {
    margin-top: 0;
    padding: 1.5625vw 1.5625vw 0.9375vw 1.5625vw;
  }
  .p-news-page-item-sub__current-article-title {
    padding-bottom: 41px;
    font-size: 1.25rem;
  }
  .p-news-page-item-sub__current-article-title::after {
    width: 32px;
    height: 1px;
    transform: translate(0px, -20px);
  }
  .p-news-page-item-sub-cards {
    gap: 14px;
  }
  .p-news-page-side-card__content {
    gap: 1.09375vw;
  }
  .p-news-page-side-card__img {
    width: 7.8125vw;
    height: 7.8125vw;
  }
  .p-news-page-side-card__body {
    gap: 0.625rem;
  }
  .p-news-page-side-card__title {
    font-size: 0.75rem !important;
  }
  .p-news-page-item-sub__category {
    padding: 1.5625vw 1.5625vw 1.5625vw 1.5625vw;
  }
  .p-news-sub-card__date {
    font-size: 0.75rem !important;
  }
  .p-news-page-item-sidebar-category__list {
    gap: 10px;
  }
  .p-news-page-item-sidebar-category__link::before {
    margin-right: 2px;
    width: 6px;
    height: 12px;
  }
  .p-news-page-item-sidebar-category-link__text {
    font-size: 1rem;
  }
  .p-news-page-card__tag {
    font-size: 1.09375vw;
    transform: translate(-0.625vw, 0.78125vw);
  }
  .p-news-page-card__tag::after {
    width: 0.625vw;
    height: 0.390625vw;
    transform: translate(0.078125vw, 0.390625vw);
  }
  .p-news-page-card__tag-text {
    font-size: 12px;
    padding: 0.5333333333vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  }
  .p-news-page-card__tag-text {
    font-size: 12px;
    padding: 2px 10px;
  }
  .p-news-page-card__body {
    padding-top: 0.9375vw;
    padding-bottom: 0;
  }
  .p-news-page-card__title {
    font-size: 1rem;
    margin-bottom: 9px;
  }
  .p-news-page-card__date {
    font-size: 0.875rem;
  }
  .p-news-single-page-content-wrapper {
    padding-top: 80px;
    padding-bottom: 160px;
  }
  .p-news-single-h1-block__img {
    width: 688px;
    height: 361px;
    aspect-ratio: 688/361;
  }
  .p-news-single-h1-block__title {
    margin-top: 20px;
    font-size: 28px;
  }
  .p-news-single-h1-block__caption {
    gap: 20px;
    margin-top: 20px;
  }
  .p-news-single-h1-block__caption .p-news-single-h1-block__date {
    font-size: 14px;
  }
  .p-news-single-h1-block__caption .p-news-single-h1-block__line {
    height: 18px;
  }
  .p-news-single-h1-block__caption .p-news-single-h1-block__category-name {
    font-size: 14px;
  }
  .p-news-single__body p,
  .p-news-single__body img,
  .p-news-single__body iframe,
  .p-news-single__body blockquote,
  .p-news-single__body ul,
  .p-news-single__body ol,
  .p-news-single__body table {
    margin-top: 16px;
  }
  .p-news-single__body h2,
  .p-news-single__body h3,
  .p-news-single__body h4 {
    margin-top: 40px;
  }
  .p-news-single__body h2 {
    padding-left: 16px;
    font-size: 24px;
  }
  .p-news-single__body h3 {
    padding-bottom: 12px;
    font-size: 20px;
  }
  .p-news-single__body h3::after {
    width: 100%;
  }
  .p-news-single__body h4 {
    font-size: 16px;
  }
  .p-news-single__body p {
    font-size: 16px;
  }
  .p-news-single__body blockquote {
    padding: 40px 40px;
    font-size: 16px;
  }
  .p-news-single__body blockquote cite {
    font-size: 14px;
    margin-top: 16px;
  }
  .p-news-single__body blockquote cite a {
    font-size: 14px;
  }
  .p-news-single__body ul li,
  .p-news-single__body ol li {
    font-size: 16px;
  }
  .p-news-single__body ul li {
    margin-left: 10px;
    padding-left: 14px;
  }
  .p-news-single__body ul li::before {
    font-size: 16px;
  }
  .p-news-single__body ol {
    margin-left: 23px;
  }
  .p-news-single__pagenation {
    margin-top: 40px;
  }
  .p-news-single__pagenation-item {
    font-size: 16px;
  }
  .p-news-single__pagenation-item--prev a:before {
    margin-right: 10px;
    width: 6px;
    height: 12px;
  }
  .p-news-single__pagenation-item--all a {
    min-width: 136px;
    height: 47px;
  }
  .p-news-single__pagenation-item--next a::after {
    margin-left: 10px;
    width: 6px;
    height: 12px;
  }
  .p-news-single-page-item__sub {
    margin-top: 119px;
  }
  .p-news-single-page-item__relation-article-title {
    font-size: 28px;
  }
  .p-news-single-page__relation-article-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 61px;
    row-gap: 2.25rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1280px){
  .p-news-page-content {
    gap: 60px;
  }
}

@media screen and (min-width: 1024px){
  .p-news-page-archive-item-main__cards-wrapper {
    max-width: 56.25vw;
  }
  .p-news-page-item-main__cards-wrapper {
    max-width: 56.25vw;
  }
  .p-news-page-item__sidebar {
    max-width: 320px;
  }
}

@media screen and (min-width: 1280px){
  .p-news-page-archive-content-wrapper {
    padding-top: 80px;
    padding-bottom: 162px;
  }
  .p-news-page-archive-item-main__cards-wrapper {
    max-width: 720px;
  }
  .p-news-page-archive-item-main__cards {
    -moz-column-gap: 40px;
         column-gap: 40px;
    flex-grow: 1;
    row-gap: 40px;
  }
  .p-news-page-archive-item-sidebar__current-article {
    padding: 20px 20px 15px 20px;
  }
  .p-news-page-content-wrapper {
    padding-top: 80px;
    padding-bottom: 161px;
  }
  .p-news-page-item-main__cards-wrapper {
    max-width: 720px;
  }
  .p-news-page-item-main__cards {
    -moz-column-gap: 40px;
         column-gap: 40px;
    flex-grow: 1;
    row-gap: 40px;
    margin-top: 40px;
  }
  .p-news-page-item__sidebar {
    gap: 60px;
  }
  .p-news-page-item-sidebar__current-article {
    padding: 20px 20px 12px 20px;
  }
  .p-news-page-side-card__content {
    gap: 14px;
  }
  .p-news-page-side-card__img {
    width: 100px;
    height: 100px;
  }
  .p-news-page-side-card__title {
    font-size: 14px !important;
  }
  .p-news-page-item-sub__category {
    padding: 20px 20px 20px 20px;
  }
  .p-news-sub-card__date {
    font-size: 12px !important;
  }
  .p-news-page-card__tag {
    font-size: 14px;
    transform: translate(-8px, 10px);
  }
  .p-news-page-card__tag::after {
    width: 8px;
    height: 5px;
    transform: translate(1px, 5px);
  }
  .p-news-page-card__body {
    padding-top: 12px;
  }
  .p-news-page-card__title {
    font-size: 16px;
  }
  .p-news-page-card__date {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px){
  body.is-footer-sns-fixed {
    padding-bottom: 4.1875rem;
  }
}
/*# sourceMappingURL=news.css.map */