/* ============================================
   p-report-archive（スタッフブログ 2026）
   ============================================ */
/* page-system.css が main に固定幅 1100px を設定しているため、上書きする */
main {
  width: auto;
  max-width: none;
}

.p-report-archive {
  background-color: #fff;
  margin-inline: auto;
  max-width: 600px;
  padding: 27px 0 49px;
}
/* padding は l-inner に委譲 */

/* ---- 記事リスト ---- */
.p-report-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-report-card__link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-report-card__link:hover {
  opacity: 0.8;
}
/* カテゴリー（右上バッジ・複数可） */
.p-report-card__badge-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 8px;
}
.p-report-card__badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: #b12c26;
  color: #fff;
  font-size: 14px;
  line-height: calc(20 / 14);
  letter-spacing: 0.02em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 875px) {
  .p-report-card_badge-wrap {
    font-size: 16px;
  }
}
.p-report-card__content {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
/* サムネイル */
.p-report-card__image {
  overflow: hidden;
  background: #f0f0f0;
  width: 100%;
}
.p-report-card__image img {
  aspect-ratio: 335 / 172;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト */
.p-report-card__body {
  font-size: 16px;
  line-height: calc(24 / 16);
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #fff;
  overflow-wrap: break-word;
  background-color: #B12C26;
  padding: 10px 10px 8px;
}
@media screen and (min-width: 875px) {
  .p-report-card__body {
    font-size: 18px;
  }
}
.p-report-card__date {
  font-size: 14px;
  line-height: calc(20 / 14);
  text-align: right;
  margin-top: 27px;
  padding-left: 7px;
}
@media screen and (min-width: 875px) {
  .p-report-card__date {
    font-size: 16px;
  }
}

/* ============================================
   p-report-filter（ブログ絞り込みフィルター）
   ============================================ */
.p-report-filter {
  margin-bottom: 44px;
}

/* トグルボタン */
.p-report-filter__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px 10px 15px;
  background: #b12c26;
  border: none;
  color: #fff;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-report-filter__toggle:hover {
    opacity: 0.7;
  }
}
.p-report-filter__toggle-text {
  font-size: 18px;
  line-height: calc(25 / 18);
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (min-width: 875px) {
  .p-report-filter__toggle-text {
    font-size: 20px;
  }
}
.p-report-filter__toggle-icon {
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
  transition: transform 0.35s ease, margin-top 0.35s ease;
}
.p-report-filter__toggle[aria-expanded="true"] .p-report-filter__toggle-icon {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* フィルター本体（アコーディオン） */
.p-report-filter__body {
  background: #fff;
  display: grid;
  grid-template-rows: 0fr;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: grid-template-rows 0.35s ease, box-shadow 0.35s ease;
}
.p-report-filter__body.is-open {
  grid-template-rows: 1fr;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.p-report-filter__body > .p-report-filter__form {
  min-height: 0;
  overflow: hidden;
  padding: 0 27px;
  transition: padding 0.35s ease;
}
.p-report-filter__body.is-open > .p-report-filter__form {
  padding: 31px 27px 13px;
}

/* タグ一覧（2列グリッド） */
.p-report-filter__tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 11px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-report-filter__tag label {
  display: inline-block;
  padding-block: 3px;
  text-align: center;
  border: 1px solid #0A1D3B;
  font-size: 14px;
  line-height: calc(28 / 14);
  letter-spacing: 0.03em;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  color: #0A1D3B;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  user-select: none;
  width: 100%;
}
@media screen and (min-width: 875px) {
  .p-report-filter__tag label {
    font-size: 16px;
  }
}
.p-report-filter__tag label.is-checked {
  background: #b12c26;
  border-color: #b12c26;
  color: #fff;
}

/* 検索ボタン */
.p-report-filter__submit {
  margin-top: 30px;
  text-align: center;
}
.p-report-filter__btn {
  display: inline-block;
  padding: 5px 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: transparent;
  color: #b12c26;
  font-size: 14px;
  line-height: calc(28 / 14);
  letter-spacing: 0.03em;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
@media screen and (min-width: 875px) {
  .p-report-filter__btn {
    font-size: 16px;
  }
}
.p-report-filter__btn:hover {
  background: #b12c26;
  color: #fff;
}

/* 閉じるボタン（下部） */
.p-report-filter__close {
  display: block;
  width: 100%;
  margin-top: 21px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  padding: 8px 0 4px;
}
.p-report-filter__close-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-right: 1px solid #0A1D3B;
  border-bottom: 1px solid #0A1D3B;
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* 結果なしのスタイル */
.p-report-empty {
  text-align: center;
  color: #000000;
  font-size: 16px;
  padding-block: 30px 40px;
}
@media screen and (min-width: 875px) {
  .p-report-empty {
    font-size: 18px;
  }
}

/* ============================================
   p-report-single（スタッフブログ詳細 2026）
   ============================================ */
.p-report-single {
  background-color: #fff;
  margin-inline: auto;
  max-width: 600px;
  padding-bottom: 80px;
}

/* カテゴリー（複数可） */
.p-report-single__badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding-top: 34px;
}
.p-report-single__badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: #b12c26;
  color: #fff;
  font-size: 14px;
  line-height: calc(20 / 14);
  letter-spacing: 0.02em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 875px) {
  .p-report-single__badge {
    font-size: 16px;
  }
}

/* ヘッダー */
.p-report-single__head {
  background-color: #B12C26;
  padding: 3px 8px 10px;
  margin-top: 7px;
}
.p-report-single__title {
  font-size: 20px;
  line-height: calc(43 / 20);
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
}
@media screen and (min-width: 875px) {
  .p-report-single__title {
    font-size: 22px;
  }
}
.p-report-single__date {
  font-size: 14px;
  line-height: calc(20 / 14);
  letter-spacing: 0.089em;
  font-weight: 500;
  color: #fff;
  text-align: right;
}
@media screen and (min-width: 875px) {
  .p-report-single__date {
    font-size: 16px;
  }
}

/* サムネイル */
.p-report-single__thumb {
  width: 100%;
  margin-top: 54px;
}
.p-report-single__thumb img {
  aspect-ratio: 335 / 194;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #f0f0f0;
}

/* SNSボタン */
.addtoany_content {
  margin: 50px auto 0;
}

/* 本文 */
.p-report-single__content {
  margin-block: 37px 72px;
}
.p-report-single__content strong {
  font-weight: 700;
}
.p-report-single__content p,
.p-report-single__content ul,
.p-report-single__content ol,
.p-report-single__content a {
  font-size: 16px;
  line-height: calc(28 / 16);
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #000000;
}
@media screen and (min-width: 875px) {
  .p-report-single__content p,
  .p-report-single__content li,
  .p-report-single__content ol,
  .p-report-single__content a {
    font-size: 18px;
  }
}
.p-report-single__content a {
  color: #1A0DAB;
  text-decoration: underline;
}
.p-report-single__content li {
  list-style: disc;
}
.p-report-single__content ol li {
  list-style: decimal;
}
.p-report-single__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
  background-color: #f0f0f0;
}
.p-report-single__content h1 {
  font-size: 24px;
  color: #fff;
  background-color: #B12C26 !important;
  margin-block: 45px 35px;
}
.p-report-single__content h2 {
  font-size: 20px;
  line-height: calc(43 / 20);
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
  color: #000000;
  border-top: 3px solid #B12C26;
  border-bottom: 3px solid #B12C26;
  padding: 5px;
  text-align: center;
  margin-block: 45px 35px;
}
@media screen and (min-width: 875px) {
  .p-report-single__content h2 {
    font-size: 22px;
  }
}
.p-report-single__content h3 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
  color: #000000;
  border-left: 3px solid #B12C26 !important;
  margin-block: 35px 25px;
  padding: 5px 0 5px 6px;
}
@media screen and (min-width: 875px) {
  .p-report-single__content h3 {
    font-size: 20px;
  }
}
.p-report-single__content h4 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
  color: #000000;
  margin-block: 25px 10px;
  padding-left: 10px;
  border-bottom: none;
}
@media screen and (min-width: 875px) {
  .p-report-single__content h4 {
    font-size: 18px;
  }
}
/* 画像の余白調整 */
.p-report-single__content img.aligncenter {
  padding: 0;
}
/* SNSボタン */
.addtoany_content {
  text-align: center;
}

/* ============================================
   その他のブログ（related）
   ============================================ */
.p-report-related {
  padding-top: 37px;
  position: relative;
}
.p-report-related__inner {
  max-width: 680px;
}
.p-report-related__bg-text {
  font-size: 75px;
  line-height: calc(88 / 75);
  letter-spacing: 0;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  color: rgba(177, 44, 38, 0.16);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 10px;
}
@media screen and (min-width: 875px) {
  .p-report-related__bg-text {
    font-size: 85px;
  }
}
.p-report-related__title {
  text-align: center;
  margin-bottom: 18px;
}
.p-report-related__title-ja {
  color: #000000;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  display: block;
}
@media screen and (min-width: 875px) {
  .p-report-related__title-ja {
    font-size: 28px;
  }
}
.p-report-related__title-ja::first-letter {
  color: #B12C26;
}
.p-report-related__title-en {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 875px) {
  .p-report-related__title-en {
    font-size: 12px;
  }
}
.p-report-related__title-en::before,
.p-report-related__title-en::after {
  background-color: #000000;
  content: "";
  height: 0.5px;
  position: absolute;
  top: 9px;
  width: 2.5px;
}
.p-report-related__title-en::before {
  left: -6px;
}
.p-report-related__title-en::after {
  right: -6px;
}

/* 1件のみ：スライダーなし */
.p-report-related__single {
  max-width: 335px;
  margin-inline: auto;
}

/* スライダーラッパー */
.p-report-related__slider-wrapper {
  max-width: 478px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-report-related__slider-wrapper {
    max-width: 450px;
  }
}

/* スライド背景 */
.p-report-related__splide {
  max-width: 478px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-report-related__splide {
    max-width: 450px;
  }
}
.p-report-related__slide {
  background: #f8f8f8;
}

/* カード共通 */
.p-report-related__card {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 450px;
  margin-inline: auto;
}
@media screen and (min-width: 875px) {
  .p-report-related__card {
    max-width: 100%;
  }
}
.p-report-related__card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  background-color: #f8f8f8;
  padding: 25px 27px;
}
.p-report-related__card-media {
  position: relative;
  flex-shrink: 0;
}
.p-report-related__card-image {
  background-color: #f0f0f0;
  width: 100%;
  aspect-ratio: 280 / 194;
  overflow: hidden;
  position: relative;
}
.p-report-related__card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #f0f0f0;
}
.p-report-related__card-body {
  padding: 10px 5px 8px;
  background-color: #B12C26;
}
.p-report-related__card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(20 / 14);
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
  flex: 1;
  color: #fff;
}
@media screen and (min-width: 875px) {
  .p-report-related__card-title {
    font-size: 16px;
  }
}
.p-report-related__card-date {
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: right;
  color: #fff;
  margin-top: 23px;
}
@media screen and (min-width: 875px) {
  .p-report-related__card-date {
    font-size: 14px;
  }
}

/* Splide トラック */
.p-report-related__splide .splide__track {
  max-width: 450px;
  margin-inline: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* Splide 矢印（voice-archive.css と同一仕様） */
.p-report-related__splide .splide__arrow {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  height: 48px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 40%;
  transition: none;
  width: 48px;
  z-index: 3;
}
.p-report-related__splide .splide__arrow svg {
  display: none;
}
.p-report-related__splide .splide__arrow::before,
.p-report-related__splide .splide__arrow::after {
  display: none;
}
.p-report-related__splide .splide__arrow:hover:not(:disabled) {
  opacity: 1;
}
.p-report-related__splide .splide__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}
.p-report-related__splide .splide__arrow--prev {
  background-image: url("../../images/2026/overview/arrow-left.png");
  left: -12px;
}
.p-report-related__splide .splide__arrow--next {
  background-image: url("../../images/2026/overview/arrow-right.png");
  right: -12px;
}
@media screen and (min-width: 875px) {
  .p-report-related__splide .splide__arrow--prev {
    left: -24px;
  }
  .p-report-related__splide .splide__arrow--next {
    right: -24px;
  }
}

/* Splide ページネーション（voice-archive.css と同一仕様） */
.p-report-related__splide.splide .splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  font-size: 0;
  gap: 4px;
  justify-content: center;
  list-style: none;
  margin: 20px 0 0;
  max-width: 100%;
  padding: 0;
  position: static;
  transform: none;
  width: 100%;
}
.p-report-related__splide.splide .splide__pagination li {
  display: flex;
  flex: 0 0 auto;
  line-height: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-report-related__splide.splide .splide__pagination__page {
  background-color: #b12c26;
  border: 0;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  font-size: 0;
  height: 12px;
  margin: 0;
  max-height: 12px;
  max-width: 12px;
  min-height: 12px;
  min-width: 12px;
  opacity: 0.49;
  padding: 0;
  transform: scale(1);
  transition: opacity 0.2s;
  width: 12px;
}
.p-report-related__splide.splide .splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1);
}
