/* ===============
    ボタン
==================*/
.btn__link {
  display: flex;
  align-items: center;
  column-gap: 32px;
  padding: 14px 14px 14px 32px;
  border: 1px solid #fff;
  background-color: #4a6ffe; /* ボタン全体の色 */
  border-radius: 100vmax;
  width: fit-content;
  transition: background 0.3s ease;
  overflow: hidden;

  /* hover時 */
  @media (any-hover: hover) {
    &:hover {
      .btn__link-arrow-wrap {
        translate: 90% 0;
      }
      .btn__link-arrow {
        &.--navy path {
          fill: #4a6ffe;
          opacity: 0;
        }
        &.--white path {
          fill: #fff;
          opacity: 1;
        }
      }
    }
  }
}
.--white path {
  opacity: 0;
}
.btn__link-arrow-inner {
  padding: 13px 7px 12px 12px;
  border-radius: 999px;
  background: #6d8bff; /* ボタンの丸いところの色 */
}
.btn__link-text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1.5;
  color: #fff; /* 文字の色 */
  transition: color 0.3s ease;
  font-weight: bold;
}

.btn__link-arrow-wrap {
  position: relative;
  transition: translate 0.3s ease;
}

.btn__link-arrow {
  margin-top: 0; /* ← まず余計なmarginを外す */
  display: flex;
  align-items: center; /* 矢印アイコンを縦中央に */
  justify-content: center;
  width: 21px;
  height: 14px;
  path {
    transition: fill 0.1s ease, opacity 0.1s ease-in-out;
    font-weight: bold;
  }

  &.--white {
    position: absolute;
    top: 0%;
    left: -85%;
  }
}

@media (max-width: 425px) {
  .btn__link {
    padding: 12px 14px 12px 32px;
  }
  .btn__link-text {
    font-size: 15px;
  }
  .btn__link-arrow-inner {
    padding: 6px 4px 4px 9px;
  }
}

/* ==================
    タイトル
=====================*/
.content-section {
}

.content-section__header {
  display: flex;
  flex-direction: column;
  gap: 24px; /* タイトル上下の幅 */
}

.content-section__label-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.content-section__icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4a6ffe;
}

.content-section__label {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #101010;
  letter-spacing: 0;
}

.content-section__title {
  font-family: "Noto Sans JP";
  font-size: 32px; /* 下タイトルサイズ */
  font-weight: 500;
  color: #101010;
  line-height: 1.25;
  letter-spacing: 0;
}
@media (max-width: 425px) {
  .content-section__header {
    gap: 16px; /* 上下タイトルのgap */
  }
  .content-section__label-wrapper {
    gap: 8px; /* 青丸と上タイトルのgap */
  }
  .content-section__label {
    font-size: 12px;
  }
  .content-section__icon {
    width: 5px;
    height: 5px; /* 青丸サイズ */
  }

  .content-section__title {
    font-size: 18px; /* 下タイトルサイズ */
  }
}
/* ==============
    カテゴリー 
=================*/

.tag__link {
  background-color: #d9e6ff;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  color: #4a6ffe;
  font-family: "Noto Sans JP";
  font-weight: 500;
  display: inline-block;
  /* height: 12px; */
  display: block;
  width: fit-content; /* 横幅をテキスト＋padding分に制御 */
  margin-bottom: 8px;
}
.tag__link:hover {
  background-color: #4a6ffe;
  color: #fff;
  opacity: 1;
}
.is-active {
  background-color: #4a6ffe;
  color: #fff;
}
.tag-list {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  /* gap: 8px; 各リンクの間に余白を追加（任意） */
  align-items: flex-start;
}
@media (max-width: 375px) {
  .tag__link {
    font-size: 3.2vw !important;
  }
}
/* ====================
    ページネーション
=======================*/

.pagination {
}
.c-pagination__list {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: center;
  padding-bottom: 71px;
  border-bottom: 1px solid #d9e6ff;
}
.c-pagination .page-numbers {
  display: inline-block; /* a も span も統一 */
  padding: 9px 12px;
  line-height: 1;
}

.page-numbers {
  color: #101010;
  font-size: 12px;
  font-family: "Noto Sans JP";
  line-height: 1;
  font-weight: 400;
  padding: 10px 12.5px;
  letter-spacing: 0;
  line-height: 1;
}

.page-numbers:hover {
  background: #4a6ffe;
  color: #fff;
  border-radius: 50%;
  padding: 9px 12px;
  opacity: 1;
}
.page-numbers.current {
  background: #4a6ffe;
  color: #fff;
  border-radius: 50%;
  padding: 9px 12px;
}
.c-pagination__prev {
  margin-right: 8px;
}
.c-pagination__next {
  margin-left: 8px;
}
.c-pagination__prev a,
.c-pagination__next a {
  color: #101010;
}
.c-pagination__prev:hover,
.c-pagination__next:hover {
  color: #d9d9d9;
  background: none;
  border-radius: none;
  padding: 0;
}
.c-pagination__link.is-disabled {
  color: #d9d9d9;
  pointer-events: none;
  cursor: default;
}
/* ====================
    パンくずリスト
=======================*/
.breadcrumb {
  margin: 9px 32px 13px 32px;
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
}
.breadcrumb span {
  font-size: 12px;
}
/* 現在地以外をグレーに */
.breadcrumb span[property="name"],
.breadcrumb-separator {
  color: #d9d9d9;
}
.breadcrumb a span[property="name"]:hover {
  color: #4a6ffe;
}

.breadcrumb-separator {
  margin: 0 27px;
  white-space: nowrap;
}
/* 現在地だけ強調 */
.breadcrumb .current-item {
  color: #101010 !important;
}
@media (max-width: 425px) {
  .breadcrumb-separator {
    margin: 0 14px;
  }
}
