.page-head-area {
    position: relative;
}
.page-head-area img {
    width: 100%;
}
.page-head-text-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.page-head-area h2 {
    font-size: 3vw;
    color: #fff;
}
.page-head-area h1 {
    margin-top: 0.5vw;
    font-size: 1vw;
    color: #fff;
}
@media screen and (max-width: 768px) {
  .page-head-area h2 {
    font-size: 7vw;
    letter-spacing: 0.02em;
  }
  .page-head-area h1 {
    margin-top: 1.5vw;
    font-size: 4vw;
  }
}
/* -----------------------------------------------
news
----------------------------------------------- */
.pagination {
    margin-top: 2vw;
    text-align: center;
    font-size: 0;
}
.pagination .page-numbers {
    display: inline-block;
    font-size: 1rem;
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
.pagination .page-numbers:hover {
  background-color: #f5f5f5;
  color: #15803d;
}
.pagination .page-numbers.current {
    background-color: #15803d;
    border-color: #15803d;
    color: #fff;
    cursor: default;
}
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    font-weight: bold;
}
.pagination .page-numbers.dots {
    border: none;
    background: none;
    cursor: default;
    padding: 8px;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 24px;
  }
  .pagination .page-numbers {
    font-size: 14px;
    margin: 0 4px;
    padding: 10px 12px;
    min-width: 40px;
    text-align: center;
    box-sizing: border-box;
  }

  .pagination .prev.page-numbers,
  .pagination .next.page-numbers {
    display: inline-block;
    margin-top: 10px;
  }
}

/* -----------------------------------------------
blog-detail
（app/(public)/blog/[id]/page.tsx）
----------------------------------------------- */
.blog-detail {
  margin-top: 6vw;
  padding: 0 1vw;
}
.blog-detail__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #dedede;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 3vw 3vw;
  box-sizing: border-box;
}
.blog-detail__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.blog-detail__back {
  display: inline-block;
  padding: 0.6vw 1.2vw;
  border-radius: 100vw;
  color: #fff;
  background-color: #15803d;
  font-size: 0.95vw;
}
.blog-detail__back:hover {
  opacity: 0.9;
}
.blog-detail__title {
  margin-top: 1.8vw;
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #15803d;
  padding-left: 1vw;
}
.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw 2vw;
  margin-top: 1.5vw;
  font-size: 0.95vw;
  color: #333;
}
.blog-detail__metaItem {
  display: inline-flex;
  align-items: center;
  gap: 0.7vw;
}
.blog-detail__metaLabel {
  padding: 0.25vw 0.8vw;
  border-radius: 100vw;
  background: #f97316;
  color: #000;
  font-size: 0.85vw;
}
.blog-detail__metaValue {
  color: #333;
}
.blog-detail__chip {
  display: inline-block;
  padding: 0.35vw 1vw;
  border-radius: 100vw;
  background: #f3f6fb;
  border: solid 1px #d7e2f0;
  color: #025da3;
  font-size: 0.9vw;
}
.blog-detail__chip:hover {
  background: #e9f2ff;
}
.blog-detail__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
  margin-top: 1.6vw;
  font-size: 0.95vw;
}
.blog-detail__tagsLabel {
  padding: 0.25vw 0.8vw;
  border-radius: 100vw;
  background: #15803d;
  color: #fff;
  font-size: 0.85vw;
}
.blog-detail__tagsList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6vw;
}
.blog-detail__tag {
  display: inline-block;
  padding: 0.35vw 0.9vw;
  border-radius: 100vw;
  background: #ffffff;
  border: solid 1px #dcfce7;
  color: #15803d;
  font-size: 0.9vw;
}
.blog-detail__tag:hover {
  background: #e9f2ff;
}
.blog-detail__hr {
  margin: 2vw 0;
  border: 0;
  height: 2px;
  background: #dedede;
}
.blog-detail__content {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  word-break: break-word;
}
.blog-detail__content h2 {
  margin: 2.4vw 0 1vw 0;
  font-size: 1.6vw;
  border-left: solid 0.5vw #f97316;
  padding-left: 1vw;
}
.blog-detail__content h3 {
  margin: 2vw 0 0.8vw 0;
  font-size: 1.3vw;
  border-bottom: solid 2px #dcfce7;
  padding-bottom: 0.6vw;
}
.blog-detail__content p {
  margin: 1.2vw 0;
}
.blog-detail__content ul,
.blog-detail__content ol {
  margin: 1.2vw 0 1.2vw 2vw;
}
.blog-detail__content li {
  margin: 0.6vw 0;
}
.blog-detail__content a {
  color: #15803d;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-detail__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.6vw auto;
  border-radius: 12px;
  border: solid 2px #dedede;
}
.blog-detail__content blockquote {
  margin: 1.6vw 0;
  padding: 1.2vw 1.5vw;
  border-left: solid 0.5vw #15803d;
  background: #dcfce7;
}
.blog-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6vw 0;
  font-size: 0.95vw;
}
.blog-detail__content th,
.blog-detail__content td {
  border: solid 1px #dedede;
  padding: 0.8vw;
  vertical-align: top;
}
.blog-detail__content th {
  background: #15803d;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .blog-detail {
    margin-top: 12vw;
  }
  .blog-detail__inner {
    max-width: 92vw;
    padding: 18px 16px;
    border-radius: 18px;
  }
  .blog-detail__back {
    font-size: 14px;
    padding: 10px 14px;
  }
  .blog-detail__title {
    font-size: 20px;
    margin-top: 16px;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .blog-detail__meta {
    font-size: 13px;
    gap: 10px 14px;
    margin-top: 12px;
  }
  .blog-detail__metaLabel,
  .blog-detail__tagsLabel {
    font-size: 12px;
    padding: 4px 10px;
  }
  .blog-detail__chip,
  .blog-detail__tag {
    font-size: 12px;
    padding: 6px 10px;
  }
  .blog-detail__hr {
    margin: 16px 0;
  }
  .blog-detail__content {
    font-size: 14px;
    line-height: 1.9;
  }
  .blog-detail__content h2 {
    font-size: 18px;
    margin: 22px 0 10px 0;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .blog-detail__content h3 {
    font-size: 16px;
    margin: 18px 0 8px 0;
  }
  .blog-detail__content table {
    font-size: 13px;
  }
  .blog-detail__content th,
  .blog-detail__content td {
    padding: 10px;
  }
}
/* -----------------------------------------------
association
----------------------------------------------- */
/* -----------------------------------------------
association（まとめ版）
----------------------------------------------- */

/* 共通：セクション余白 */
.page-greeting-wrap,
.page-outline-wrap,
.page-outline-wrap02,
.association-history-wrap,
.association-past-wrap,
.officer-wrap {
  margin-top: 10vw;
  padding: 0 10vw;
}

/* 共通：h3 */
.page-greeting-wrap h3,
.page-outline-wrap h3,
.association-history-wrap h3,
.association-past-title h3 {
  margin-bottom: 2vw;
  font-size: 2.5vw;
}

/* 共通：カード（白・枠・影） */
.page-greeting-card,
.association-history-card {
  background: #fff;
  border: solid 0.2vw #dedede;
  border-radius: 1.6vw;
  box-shadow: 0.6vw 0.6vw 0.8vw rgba(0, 0, 0, 0.12);
  padding: 2vw 2.2vw;
}

/* 共通：本文p */
.page-greeting-text p,
.history-text p {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.page-greeting-text p + p,
.history-text p + p {
  margin-top: 1.2vw;
}

/* -----------------------------------------------
会長挨拶
----------------------------------------------- */
.page-greeting-name {
  font-size: 1.05vw;
  font-weight: 700;
  line-height: 1.6;
  border-left: solid 0.5vw #f97316;
  padding-left: 1vw;
  margin-bottom: 1.4vw;
}
.page-greeting-name span {
  margin-left: 0.5vw;
}

/* -----------------------------------------------
基本情報
----------------------------------------------- */
.page-outline-wrap ul li {
  display: flex;
  width: 100%;
  font-size: 1vw;
}
.page-outline-wrap ul li span {
  padding: 1vw 0.5vw;
  width: 27%;
  border-bottom: solid 1px #15803d;
}
.page-outline-wrap ul li h1,
.page-outline-wrap ul li p, .association-address {
  padding: 1vw 0.5vw;
  width: 100%;
  border-bottom: solid 1px #c2c2c2;
}
.association-address p {
  padding: 0 0.5vw 1vw 0.5vw !important;
}
/* Google Map */
.association-map {
  margin-top: 1vw;
}
.association-map iframe {
  width: 100%;
  height: 22vw;
  border-radius: 1vw;
}

/* -----------------------------------------------
役員一覧ヘッダー（ボタン）
----------------------------------------------- */
.page-outline-wrap02-title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-outline-wrap02-title-area h3 {
  font-size: 2vw;
}
.page-outline-wrap02-title-area a {
  display: inline-block;
  padding: 0.8vw 0;
  width: 15vw;
  text-align: center;
  font-size: 1.2vw;
  color: #000;
  background-color: #f97316;
}
.page-outline-wrap02-title-area a:first-child {
  margin-right: 2vw;
}

/* -----------------------------------------------
役員一覧（カード軽め）
----------------------------------------------- */
.officer-wrap { margin-top: 8vw; }

.officer-groups {
  margin-top: 2vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4vw 2vw;
}

.officer-group {
  background: #fafafa;
  border-radius: 1.2vw;
  padding: 1.2vw;
  box-sizing: border-box;
  box-shadow: 0 0.15vw 0.45vw rgba(0, 0, 0, 0.06);
}

.officer-role {
  margin-bottom: 0.9vw;
  padding-bottom: 0.8vw;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
}

.officer-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28vw 0.95vw;
  border-radius: 100vw;
  font-size: 0.9vw;
  font-weight: 700;
  color: #000;
  background: #f97316;
}

.officer-people {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55vw 0.65vw;
}

.officer-person {
  font-size: 0.92vw;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.02em;
  background: #fff;
  padding: 0.55vw 0.7vw;
  border-radius: 0.9vw;
  box-shadow: 0 0.12vw 0.35vw rgba(0, 0, 0, 0.05);
}

/* -----------------------------------------------
沿革・活動
----------------------------------------------- */
.history-block + .history-block {
  margin-top: 2.2vw;
  padding-top: 2.2vw;
  border-top: solid 0.15vw rgba(0, 0, 0, 0.08);
}

.history-block h4,
.association-past-card h4 {
  font-size: 1.3vw;
  margin-bottom: 1vw;
  border-left: solid 0.5vw #f97316;
  padding-left: 1vw;
  line-height: 1.4;
}

/* 主な事業 */
.program-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8vw 1.2vw;
}
.program-list li {
  font-size: 1.05vw;
  line-height: 1.7;
  background: #dcfce7;
  border-left: solid 0.4vw #15803d;
  border-radius: 1.1vw;
  padding: 0.9vw 1.2vw;
  border: solid 0.15vw #dedede;
}

/* -----------------------------------------------
歴代役員
----------------------------------------------- */
.association-past-wrap { margin-top: 8vw; }

.association-past-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}

.association-past-card {
  background: #fafafa;
  border-radius: 1.6vw;
  padding: 1.8vw;
  box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.06);
}

.past-table {
  width: 100%;
  border-collapse: collapse;
}
.past-table tr + tr td {
  border-top: solid 0.15vw rgba(0, 0, 0, 0.08);
}
.past-table td {
  padding: 0.9vw 0.2vw;
  font-size: 1.05vw;
  line-height: 1.7;
  color: #222;
}
.past-period {
  width: 55%;
  color: #333;
  white-space: nowrap;
}
.past-name {
  width: 45%;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

/* -----------------------------------------------
SP（<=768px）
----------------------------------------------- */
@media screen and (max-width: 768px) {
  .page-greeting-wrap,
  .page-outline-wrap,
  .page-outline-wrap02,
  .association-history-wrap,
  .association-past-wrap,
  .officer-wrap {
    margin-top: 12vw;
    padding: 0 5vw;
  }

  .page-greeting-wrap h3,
  .page-outline-wrap h3,
  .association-history-wrap h3,
  .association-past-title h3 {
    margin-bottom: 5vw;
    font-size: 5.5vw;
  }

  .page-greeting-card,
  .association-history-card {
    border-radius: 18px;
    padding: 18px 16px;
  }

  .page-greeting-name {
    font-size: 14px;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 12px;
  }

  .page-greeting-text p,
  .history-text p {
    font-size: 14px;
  }
  .page-greeting-text p + p,
  .history-text p + p {
    margin-top: 12px;
  }

  .page-outline-wrap,
  .page-outline-wrap02,
  .officer-wrap {
    padding: 0 5vw;
  }
  .page-outline-wrap {
    margin-top: 12vw;
  }
  .page-outline-wrap h3 {
    margin-bottom: 5vw;
    font-size: 5.5vw;
  }
  .page-outline-wrap ul li {
    flex-direction: column;
    font-size: 14px;
  }
  .page-outline-wrap ul li span {
    width: 100%;
    border-bottom: none;
    padding: 10px 12px;
    background: #f0fdf4;
    border-left: solid 6px #15803d;
    font-weight: 700;
  }
  .page-outline-wrap ul li h1,
  .page-outline-wrap ul li p,
  .association-address {
    width: 100%;
    padding: 12px 12px;
    border-bottom: solid 1px #e2e2e2;
    box-sizing: border-box;
  }
  .page-outline-wrap ul li h1 {
    font-size: 16px;
  }
  .association-map {
    margin-top: 10px;
  }
  .association-map iframe {
    height: 60vw;
    border-radius: 14px;
  }

  /* 役員一覧 */
  .officer-groups {
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }
  .officer-group {
    border-radius: 4.2vw;
    padding: 3.6vw;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }
  .officer-role {
    margin-bottom: 3vw;
    padding-bottom: 2.6vw;
  }
  .officer-role-badge {
    font-size: 3.4vw;
    padding: 0.9vw 3vw;
  }
  .officer-people {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2vw;
  }
  .officer-person {
    font-size: 3.4vw;
    padding: 2.4vw 2.6vw;
    border-radius: 3.8vw;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  /* 主な事業 */
  .program-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .program-list li {
    font-size: 14px;
    border-left-width: 6px;
    border-radius: 14px;
    padding: 12px;
  }

  /* 歴代役員 */
  .association-past-grid {
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }
  .association-past-card {
    border-radius: 18px;
    padding: 16px 14px;
  }
  .history-block h4,
  .association-past-card h4 {
    font-size: 4.2vw;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .past-table td {
    font-size: 14px;
    padding: 10px 0;
  }
  .past-period,
  .past-name {
    white-space: normal;
  }
}

/* -----------------------------------------------
plan（年間予定） - 縦並びデザイン（刷新）
----------------------------------------------- */

.plan-container {
  margin-top: 3.2vw;
  padding: 0 1vw;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  max-width: 50vw;          /* 横幅を絞って読みやすく */
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  background: rgba(255, 255, 255, 0.92);
  border: solid 0.18vw rgba(0, 0, 0, 0.08);
  border-radius: 1.6vw;
  box-shadow: 0.6vw 0.6vw 0.9vw rgba(0, 0, 0, 0.10);
  padding: 2vw 2.2vw;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* カード左のアクセントバー（カテゴリー感） */
.plan-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.55vw;
  height: 100%;
  background: #f97316; /* デフォルト（申込系） */
}

/* 予定表（PDF） */
.plan-card:nth-of-type(1)::before {
  background: #15803d;
}

/* 年間予定（PDF） */
.plan-card:nth-of-type(2)::before {
  background: #15803d;
}

/* 申込（Apply） */
.plan-card:nth-of-type(3)::before {
  background: #f97316;
}

.plan-title {
  font-size: 1.35vw;
  line-height: 1.5;
  margin: 0 0 0.7vw;
  padding-left: 1.1vw;
  letter-spacing: 0.02em;
}

.plan-text {
  font-size: 1.02vw;
  line-height: 1.9;
  color: #333;
  margin: 0;
  padding-left: 1.1vw;
}

/* ボタン群：横並び→必要に応じて折り返し */
.plan-btn-area {
  margin-top: 1.3vw;
  display: flex;
  gap: 0.8vw;
  flex-wrap: wrap;
  padding-left: 1.1vw;
}

/* 「縦積み」指定は維持しつつ、幅の見え方を綺麗に */
.plan-btn-area--stack {
  flex-direction: column;
  gap: 0.7vw;
}

.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  padding: 0.95vw 1.4vw;
  border-radius: 100vw;
  text-decoration: none;
  font-size: 1vw;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  border: solid 0.14vw rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
  max-width: 100%;
}

/* ホバーは少しだけ上げる＆影 */
.plan-btn:hover {
  transform: translateY(-0.15vw);
  opacity: 0.94;
  box-shadow: 0.35vw 0.35vw 0.6vw rgba(0, 0, 0, 0.10);
}

/* PDFボタン */
.plan-btn--pdf {
  background: #15803d;
  color: #fff;
}

/* 年間予定のPDFボタンだけ水色寄りにしたい場合（任意）
   →2枚目のカード内のPDFだけ色を変える */
.plan-card:nth-of-type(2) .plan-btn--pdf {
  background: #15803d;
  color: #fff;
}

/* 申込ボタン */
.plan-btn--apply {
  background: #f97316;
  color: #000;
}

/* 長いファイル名対策 */
.plan-btn {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

/* SP */
@media screen and (max-width: 768px) {
  .plan-container {
    max-width: 92vw;
    padding: 0;
    gap: 3.2vw;
    margin-top: 6vw;
  }

  .plan-card {
    border-radius: 4.2vw;
    padding: 4.2vw 4vw;
  }

  .plan-card::before {
    width: 1.8vw;
  }

  .plan-title {
    font-size: 4.8vw;
    padding-left: 3.2vw;
    margin-bottom: 2.2vw;
  }

  .plan-text {
    font-size: 3.7vw;
    padding-left: 3.2vw;
  }

  .plan-btn-area {
    padding-left: 3.2vw;
    margin-top: 3vw;
    gap: 2.2vw;
  }

  .plan-btn {
    width: 100%;
    padding: 3.4vw 3.2vw;
    font-size: 3.8vw;
  }

  .plan-btn:hover {
    transform: none;
    box-shadow: none;
  }
}

/* -----------------------------------------------
Registration（令和7年度 WEB年間登録）
----------------------------------------------- */
.registration {
  margin-top: 6vw;
  padding: 0 1vw;
}

.registration__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 1.6vw;
  border: solid 0.2vw #dedede;
  box-shadow: 0.6vw 0.6vw 0.8vw rgba(0, 0, 0, 0.12);
  padding: 3vw 3vw;
  box-sizing: border-box;
}

.registration__titleArea {
  margin-bottom: 2.4vw;
}

.registration__title {
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #15803d;
  padding-left: 1vw;
}

.registration__lead {
  margin-top: 1.4vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}

.registration__cta {
  margin-top: 2.2vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2vw;
}

.registration__cta--bottom {
  margin-top: 3vw;
}

.registration__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
  padding: 1.2vw 1.4vw;
  border-radius: 100vw;
  text-decoration: none;
  font-size: 1.1vw;
  font-weight: 800;
  border: solid 0.15vw rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.registration__btn span {
  display: inline-flex;
  width: 2.2vw;
  height: 2.2vw;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #15803d;
  font-size: 1.2vw;
}

.registration__btn--team {
  background: #15803d;
  color: #fff;
}

.registration__btn--personal {
  background: #f97316;
  color: #000;
}

.registration__btn:hover {
  transform: translateY(-0.15vw);
  opacity: 0.95;
}

.registration__section {
  margin-top: 2.6vw;
  padding-top: 2.2vw;
  border-top: solid 0.2vw #dedede;
}

.registration__h3 {
  font-size: 1.35vw;
  margin-bottom: 1.2vw;
  border-left: solid 0.5vw #f97316;
  padding-left: 1vw;
  line-height: 1.4;
}

.registration__box {
  background: #fafafa;
  border: solid 0.15vw rgba(0, 0, 0, 0.10);
  border-radius: 1.2vw;
  padding: 1.6vw 1.6vw;
  box-sizing: border-box;
}

.registration__box + .registration__box {
  margin-top: 1.2vw;
}

.registration__box--note {
  background: #dcfce7;
  border-left: solid 0.5vw #15803d;
}

.registration__box--warn {
  margin-top: 1vw;
  background: #fff5f5;
  border-left: solid 0.5vw #ef4444;
}

.registration__box--fee {
  background: #ffffff;
  border: solid 0.2vw #dedede;
}

.registration__h4 {
  font-size: 1.15vw;
  margin-bottom: 0.9vw;
  color: #111;
}

.registration__p {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}

.registration__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}

.registration__list li + li {
  margin-top: 0.8vw;
}

.registration__link {
  color: #15803d;
  text-decoration: underline;
  text-underline-offset: 0.25vw;
}

.registration__feeGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2vw;
}

.registration__feeCard {
  background: #dcfce7;
  border: solid 0.15vw #dedede;
  border-radius: 1.2vw;
  padding: 1.4vw 1.4vw;
}

.registration__feeText {
  font-size: 1.1vw;
  line-height: 1.8;
  color: #222;
}

.registration__feeNote {
  margin-top: 0.8vw;
  font-size: 0.95vw;
  line-height: 1.7;
  color: #555;
}

.registration__payBox {
  margin-top: 1.2vw;
  background: #fff;
  border: solid 0.15vw #dedede;
  border-radius: 1.2vw;
  padding: 1.4vw 1.4vw;
}

.registration__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2vw;
}

.registration__linkCard {
  background: #fff;
  border: solid 0.2vw #dedede;
  border-radius: 1.6vw;
  padding: 1.6vw 1.6vw;
  box-shadow: 0.35vw 0.35vw 0.6vw rgba(0, 0, 0, 0.10);
}

.registration__linkTitle {
  font-size: 1.1vw;
  font-weight: 800;
  line-height: 1.5;
  color: #111;
}

.registration__linkDesc {
  margin-top: 0.6vw;
  font-size: 0.95vw;
  line-height: 1.7;
  color: #444;
}

/* ▼▼ ここが重要：リンクボタン（Excel/PDFで色分け・クリック有効） ▼▼ */
.registration__linkBtn {
  margin-top: 1.2vw;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
  width: 100%;
  padding: 0.9vw 1.1vw;
  border-radius: 100vw;
  text-decoration: none;
  font-size: 1vw;
  font-weight: 800;
  border: solid 0.15vw rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.2vw 0.55vw rgba(0, 0, 0, 0.10);
  transition: transform 0.15s ease, opacity 0.15s ease, filter 0.15s ease;
}

.registration__linkBtn span {
  display: inline-flex;
  width: 2vw;
  height: 2vw;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.2vw;
}

/* Excel（オレンジ） */
.registration__linkBtn--excel {
  background: #f97316;
  color: #000;
}
.registration__linkBtn--excel span {
  color: #f97316;
}

/* PDF（グリーン） */
.registration__linkBtn--pdf {
  background: #15803d;
  color: #fff;
}
.registration__linkBtn--pdf span {
  color: #15803d;
}

.registration__linkBtn:hover {
  transform: translateY(-0.15vw);
  opacity: 0.95;
  filter: brightness(1.02);
}
/* ▲▲ 重要ここまで ▲▲ */

.registration__addressGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2vw;
}

.registration__addressCard {
  background: #dcfce7;
  border-left: solid 0.5vw #15803d;
  border-radius: 1.6vw;
  border: solid 0.2vw #dedede;
  padding: 1.6vw 1.6vw;
}

/* SP */
@media screen and (max-width: 768px) {
  .registration {
    margin-top: 12vw;
  }

  .registration__inner {
    max-width: 92vw;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .registration__title {
    font-size: 5vw;
    border-left-width: 6px;
    padding-left: 10px;
  }

  .registration__lead,
  .registration__p,
  .registration__list {
    font-size: 3.6vw;
  }

  .registration__cta {
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }

  .registration__btn {
    font-size: 4vw;
    padding: 3.2vw 3.4vw;
  }

  .registration__btn span {
    width: 10vw;
    height: 10vw;
    font-size: 5vw;
  }

  .registration__h3 {
    font-size: 4.2vw;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .registration__box {
    border-radius: 18px;
    padding: 14px 12px;
  }

  .registration__h4 {
    font-size: 4vw;
    margin-bottom: 2vw;
    color: #111;
  }

  .registration__feeGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .registration__feeText {
    font-size: 3.8vw;
  }

  .registration__feeNote {
    font-size: 3.2vw;
  }

  .registration__links {
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }

  .registration__linkTitle {
    font-size: 4vw;
  }

  .registration__linkDesc {
    font-size: 3.4vw;
  }

  .registration__linkBtn {
    font-size: 3.6vw;
    padding: 3vw 3.2vw;
  }

  .registration__linkBtn span {
    width: 9vw;
    height: 9vw;
    font-size: 5vw;
  }

  .registration__addressGrid {
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }
}

/* -----------------------------------------------
tournament/kobe
----------------------------------------------- */
.tournament-year-select form {
  margin-top: 1vw;
}
#select-year {
  cursor: pointer;
  margin-left: 1vw;
  padding: .2vw .8vw;
  font-size: 1.1vw;
  border: solid 1px #000;
  border-radius: 5px;
}
.tournament-schedule-btn {
  position: absolute;
  top: 3vw;
  right: 5vw;
}
.tournament-schedule-btn a {
  display: inline-block;
  padding: 1vw 3vw;
  background-color: #f97316;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .tournament-year-select form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5vw;
    font-weight: bold;
  }
  #select-year {
    margin-left: 3vw;
    padding: 1vw 3vw;
    font-size: 4vw;
  }
  .tournament-schedule-btn {
    position: static;
    display: flex;
    justify-content: center;
  }
  .tournament-schedule-btn a {
    display: inline-block;
    margin-top: 5vw;
    margin-bottom: 10vw;
    padding: 3vw 5vw;
    background-color: #f97316;
    font-size: 4vw;
    border-radius: 5px;
  }
}
/* -----------------------------------------------
branch
----------------------------------------------- */
.region-buttons {
  display: grid;
  width: 100%;
  margin-top: 3vw;
  gap: 1vw;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
}
.region-buttons li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.region-btn {
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 0.8em;
  color: #000;
  background: #f97316;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 10px;
}
.region-btn.active {
  color: #fff;
  background: #15803d;
}
.region-table {
  width: 100%;
  margin-top: 2vw;
  border-collapse: collapse;
}
.region-table th,
.region-table td {
  padding: 2vw 0;
  text-align: center;
}
.region-table thead {
  color: #fff;
  background-color: #15803d;
}
.region-table tbody tr {
  border-bottom: solid 2px #dedede;
}
.tournament-schedule .region-table tbody tr:nth-child(even) {
  background-color: #dcfce7;
}
.pdf-logo {
  width: 2vw;
  height: auto;
}
.url-logo {
  width: 2vw;
  height: auto;
}
@media screen and (min-width: 769px) {
  .region-cards {
    display: none;
  }
  .region-table {
    display: table;
  }
}
@media screen and (max-width: 768px) {
  .region-buttons {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: 2.5vw;
    margin-top: 4vw;
  }
  .region-btn {
    min-height: 42px;
    font-size: 3.4vw;
    border-radius: 12px;
  }
  .region-table {
    display: none !important;
  }
  .region-cards {
    display: block;
  }
  .region-cards__title {
    margin: 5vw;
    text-align: center;
    font-size: 6vw;
  }
  .pdf-logo,
  .url-logo {
    width: 18px;
  }
}
/* -----------------------------------------------
other
----------------------------------------------- */
.other-tournament-table {
    width: 100%;
    margin-top: 2vw;
}
.other-tournament-table th,
.other-tournament-table td {
    padding: 2vw 0;
    text-align: center;
    vertical-align: middle;
}
.other-tournament-table thead {
    color: #fff;
    background-color: #15803d;
}
.other-tournament-table tbody tr {
    border-bottom: solid 2px #dedede;
}
.tournament-schedule .other-tournament-table tbody tr:nth-child(even) {
  background-color: #dcfce7;
}
@media screen and (min-width: 769px) {
  .other-cards {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .other-tournament-table {
    display: none;
  }
  .other-cards {
    margin-top: 10vw;
  }
}
/* -----------------------------------------------
special-event
----------------------------------------------- */
.special-event-cards {
  display: none;
}
.special-event-cards .month-cards__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.special-event-cards .special-event-sport {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
}
.special-event-cards .month-card__action--disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 999px;
  opacity: 0.45;
}
.special-event-table {
  width: 100%;
  margin-top: 2vw;
  border-collapse: collapse;
  table-layout: fixed;
}
.special-event-table thead {
  color: #fff;
  background-color: #15803d;
}
.special-event-table th,
.special-event-table td {
  padding: 1.2vw 0.8vw;
  text-align: center;
  vertical-align: middle;
}
.special-event-table tbody tr {
  border-bottom: solid 2px #dedede;
}
.tournament-schedule .special-event-table tbody tr:nth-child(even) {
  background-color: #dcfce7;
}
.special-event-table tbody td {
  color: #000;
}
.special-event-date {
  white-space: nowrap;
}
.special-event-title {
  text-align: left;
  line-height: 1.6;
}
.special-event-table .special-event-sport {
  color: #333;
  font-size: 0.9em;
}
.special-event-icon-cell {
  width: 8%;
}
.special-event-empty {
  color: #666;
}
.special-event-empty-row {
  padding: 3vw 0;
  color: #333;
}
@media (max-width: 768px) {
  .special-event-cards {
    display: block;
    margin-top: 14px;
  }
  .special-event-table {
    display: none;
  }
  .special-event-cards .pdf-logo,
  .special-event-cards .url-logo {
    width: 20px;
    height: 20px;
  }
}

/* =================================================
  records
================================================= */
.record-cards {
  display: none;
}
.record-cards .month-cards__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.record-cards .month-card__actions {
  justify-content: flex-start;
  gap: 10px;
}
.record-cards .month-card__action--disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 999px;
  opacity: 0.45;
}
.tournament-schedule .record-year-select-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  margin: 2vw auto;
  padding: 1vw 1.8vw;
  max-width: 30vw;
  background-color: #f97316;
  border-radius: 100vw;
  box-shadow: 0 0.16vw 0.5vw rgba(0, 0, 0, 0.06);
}
.tournament-schedule .record-year-select-form label {
  font-size: 1vw;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
.tournament-schedule .record-year-select-form select {
  flex: 1;
  min-width: 10vw;
  padding: 0.6vw 1.2vw;
  font-size: 1.1vw;
  border-radius: 100vw;
  border: 0.08vw solid #d0d7e2;
  background-color: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.tournament-schedule .record-year-select-form select:focus,
.tournament-schedule .record-year-select-form select:hover {
  border-color: #15803d;
  box-shadow: 0 0 0 0.3vw rgba(21, 128, 61, 0.35);
  background-color: #fff;
}
@media (max-width: 768px) {
  .record-cards {
    display: block;
    margin-top: 14px;
  }
  .record-table-wrapper {
    display: none;
  }
  .tournament-schedule .record-year-select-form {
    width: 100%;
    max-width: 520px;
    margin: 16px auto 24px;
    padding: 12px 14px;
    gap: 10px;
  }
  .tournament-schedule .record-year-select-form label {
    font-size: 14px;
  }
  .tournament-schedule .record-year-select-form select {
    font-size: 14px;
    padding: 10px 12px;
    min-width: 0;
  }
  .record-cards .pdf-logo {
    width: 20px;
    height: 20px;
  }
}
/* -----------------------------------------------
ranking
----------------------------------------------- */
.ranking {
  margin-top: 6vw;
  padding: 0 1vw;
}

.ranking__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #dedede;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 3vw 3vw;
  box-sizing: border-box;
}

.ranking__titleArea {
  margin-bottom: 2.2vw;
}

.ranking__title {
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #15803d;
  padding-left: 1vw;
}

.ranking__lead {
  margin-top: 1.4vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}

.ranking__pdfArea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
  margin-top: 2vw;
  margin-bottom: 3vw;
}

.ranking__pdfBtn {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  padding: 1vw 1.2vw;
  border-radius: 1.2vw;
  text-decoration: none;
  color: #333;
  background: #dcfce7;
  border: solid 2px #dcfce7;
  box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.06);
}

.ranking__pdfBtn:hover {
  background: #e9f2ff;
}

.ranking__pdfBtn--yellow {
  background: #fffdf2;
  border-color: #f3e3a0;
}

.ranking__pdfBtn--yellow:hover {
  background: #fff6cf;
}

.ranking__pdfBtnTitle {
  font-size: 1.05vw;
  font-weight: 800;
  white-space: nowrap;
}

.ranking__pdfBtnMeta {
  margin-left: auto;
  font-size: 0.92vw;
  line-height: 1.4;
  color: #333;
  opacity: 0.9;
  white-space: nowrap;
}

.ranking__pdfBtnArrow {
  font-size: 1.1vw;
  font-weight: 900;
  color: #15803d;
  flex: 0 0 auto;
}

/* --- TOC --- */
.ranking__toc {
  margin-top: 2vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
}

.ranking__tocItem {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  padding: 1vw 1.2vw;
  border-radius: 1.2vw;
  background: #dcfce7;
  border: solid 2px #dcfce7;
  text-decoration: none;
  color: #333;
  box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.06);
}

.ranking__tocItem:hover {
  background: #e9f2ff;
}

.ranking__tocBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25vw 0.9vw;
  border-radius: 100vw;
  background: #15803d;
  color: #fff;
  font-size: 0.85vw;
  font-weight: 700;
  white-space: nowrap;
}

.ranking__tocBadge--yellow {
  background: #f97316;
  color: #000;
}

.ranking__tocText {
  font-size: 1.05vw;
  font-weight: 700;
}

.ranking__tocArrow {
  margin-left: auto;
  font-size: 1.2vw;
  font-weight: 900;
  color: #15803d;
}

/* --- Sections --- */
.ranking__section {
  margin-top: 3vw;
  padding-top: 2.6vw;
  border-top: solid 2px #dedede;
}

.ranking__sectionHead {
  margin-bottom: 1.6vw;
}

.ranking__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25vw 0.9vw;
  border-radius: 100vw;
  background: #f97316;
  color: #000;
  font-size: 0.85vw;
  font-weight: 800;
}

.ranking__h2 {
  margin-top: 0.9vw;
  font-size: 1.6vw;
  border-left: solid 0.5vw #15803d;
  padding-left: 1vw;
  line-height: 1.4;
}

.ranking__sectionLead {
  margin-top: 1vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}

/* --- Grid / Cards --- */
.ranking__grid {
  margin-top: 1.8vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4vw;
}

.ranking__card {
  background: #ffffff;
  border: solid 2px #dedede;
  border-radius: 1.2vw;
  padding: 1.4vw 1.4vw;
  box-shadow: 0 0.18vw 0.6vw rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.ranking__card--wide {
  grid-column: 1 / -1;
}

.ranking__h3 {
  font-size: 1.2vw;
  line-height: 1.4;
  border-left: solid 0.5vw #f97316;
  padding-left: 1vw;
  margin-bottom: 1.1vw;
}

/* --- Lists --- */
.ranking__list {
  margin: 0;
  padding-left: 1.4vw;
  font-size: 1.02vw;
  line-height: 1.9;
  color: #333;
}

.ranking__list--note {
  list-style: disc;
}

.ranking__li + .ranking__li {
  margin-top: 0.6vw;
}

/* --- Chips --- */
.ranking__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6vw;
}

.ranking__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35vw 0.9vw;
  border-radius: 100vw;
  background: #f3f6fb;
  border: solid 1px #d7e2f0;
  color: #025da3;
  font-size: 0.95vw;
  line-height: 1.2;
}

/* -----------------------------------------------
ranking: score tables
----------------------------------------------- */
.ranking__score {
  margin-top: 0.6vw;
}

.ranking__scoreBlock + .ranking__scoreBlock {
  margin-top: 2vw;
  padding-top: 2vw;
  border-top: solid 2px #dedede;
}

.ranking__scoreHead {
  font-size: 1.15vw;
  line-height: 1.5;
  border-left: solid 0.5vw #15803d;
  padding-left: 1vw;
}

.ranking__scoreDesc {
  margin-top: 0.8vw;
  font-size: 1.02vw;
  line-height: 1.9;
  color: #333;
}

.ranking__tableCard {
  margin-top: 1.2vw;
  background: #dcfce7;
  border: solid 2px #dcfce7;
  border-radius: 1.2vw;
  padding: 1.2vw 1.2vw;
  box-sizing: border-box;
}

.ranking__tableTitleRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1vw;
  margin-bottom: 0.9vw;
}

.ranking__tableTitle {
  font-size: 1.05vw;
  font-weight: 800;
  color: #025da3;
}

.ranking__tableNote {
  font-size: 0.95vw;
  line-height: 1.6;
  color: #333;
  opacity: 0.9;
}

.ranking__tableWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.9vw;
}

.ranking__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 52vw;
  background: #fff;
  border-radius: 0.9vw;
  overflow: hidden;
}

.ranking__th,
.ranking__td {
  border: solid 1px #dedede;
  padding: 0.85vw 0.8vw;
  text-align: center;
  vertical-align: middle;
  font-size: 0.98vw;
}

.ranking__th {
  background: #15803d;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.ranking__th--rowLabel {
  width: 12vw;
}

.ranking__td--rowLabel {
  font-weight: 800;
  background: #fffdf2;
  white-space: nowrap;
}

/* 行の視認性 */
.ranking__table tbody tr:nth-child(even) .ranking__td {
  background: #f9fbff;
}
.ranking__table tbody tr:nth-child(even) .ranking__td--rowLabel {
  background: #fff8d6;
}

/* --- SP（vw基準で安定化） --- */
@media screen and (max-width: 768px) {
  .ranking {
    margin-top: 12vw;
    padding: 0 2vw;
    overflow-x: hidden;
  }

  .ranking__inner {
    max-width: 92vw;
    padding: 4.5vw 4vw;
    border-radius: 4.5vw;
    box-sizing: border-box;
  }

  /* ---- 横はみ出し対策（追加） ---- */
  .ranking,
  .ranking__inner,
  .ranking__grid,
  .ranking__card,
  .ranking__tableCard,
  .ranking__tableWrap {
    max-width: 100%;
    box-sizing: border-box;
  }

  .ranking__grid {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .ranking__card,
  .ranking__sectionLead,
  .ranking__lead,
  .ranking__scoreDesc,
  .ranking__tableNote {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* PDFボタンやTOCのnowrapが原因になることがあるのでSPは折り返しOKに */
  .ranking__pdfBtnTitle,
  .ranking__pdfBtnMeta,
  .ranking__tocBadge,
  .ranking__tocText {
    white-space: normal;
  }

  /* PDF buttons */
  .ranking__pdfArea {
    grid-template-columns: 1fr;
    gap: 2.6vw;
    margin-top: 5vw;
    margin-bottom: 8vw;
  }

  .ranking__pdfBtn {
    padding: 3.2vw 3.2vw;
    border-radius: 4.2vw;
    gap: 2.2vw;
    align-items: flex-start; /* ★追加：文字を上揃え */
  }

  /* ★追加：タイトル／更新日を「最大2行」にする */
  .ranking__pdfBtnTitle,
  .ranking__pdfBtnMeta {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
    line-height: 1.35;
  }

  .ranking__pdfBtnTitle {
    font-size: 3.6vw;
    font-weight: 900;
    flex: 1 1 auto;
  }

  .ranking__pdfBtnMeta {
    margin-left: 0;
    font-size: 3.1vw;
    opacity: 0.9;
    flex: 1 1 auto;
  }

  .ranking__pdfBtnArrow {
    margin-left: auto;
    font-size: 4vw;
    flex: 0 0 auto;
    align-self: center;
  }

  .ranking__title {
    font-size: 5.2vw;
    border-left-width: 1.2vw;
    padding-left: 2.6vw;
  }

  .ranking__lead {
    font-size: 3.6vw;
    line-height: 1.9;
    margin-top: 3.2vw;
  }

  .ranking__toc {
    grid-template-columns: 1fr;
    gap: 2.8vw;
    margin-top: 3.8vw;
  }

  .ranking__tocItem {
    padding: 3.2vw 3.2vw;
    border-radius: 4.2vw;
    gap: 2.4vw;
  }

  .ranking__tocBadge {
    font-size: 3.1vw;
    padding: 1.1vw 2.6vw;
  }

  .ranking__tocText {
    font-size: 3.6vw;
  }

  .ranking__tocArrow {
    font-size: 4vw;
  }

  .ranking__section {
    margin-top: 4.6vw;
    padding-top: 4.6vw;
  }

  .ranking__kicker {
    font-size: 3.1vw;
    padding: 1.1vw 2.6vw;
  }

  .ranking__h2 {
    margin-top: 2.6vw;
    font-size: 4.4vw;
    border-left-width: 1.2vw;
    padding-left: 2.6vw;
  }

  .ranking__sectionLead {
    font-size: 3.6vw;
    margin-top: 2.6vw;
    line-height: 1.9;
  }

  .ranking__grid {
    gap: 3.6vw;
    margin-top: 3.6vw;
  }

  .ranking__card {
    border-radius: 4.5vw;
    padding: 3.6vw 3.6vw;
  }

  .ranking__h3 {
    font-size: 4vw;
    border-left-width: 1.2vw;
    padding-left: 2.6vw;
    margin-bottom: 2.6vw;
  }

  .ranking__list {
    font-size: 3.6vw;
    padding-left: 4.8vw;
  }

  .ranking__li + .ranking__li {
    margin-top: 2vw;
  }

  .ranking__chips {
    gap: 1.6vw;
  }

  .ranking__chip {
    font-size: 3.2vw;
    padding: 1.5vw 2.6vw;
  }

  /* ---- tables SP ---- */
  .ranking__scoreBlock + .ranking__scoreBlock {
    margin-top: 4.6vw;
    padding-top: 4.6vw;
  }

  .ranking__scoreHead {
    font-size: 3.9vw;
    border-left-width: 1.2vw;
    padding-left: 2.6vw;
  }

  .ranking__scoreDesc {
    margin-top: 2.6vw;
    font-size: 3.6vw;
  }

  .ranking__tableCard {
    margin-top: 3.2vw;
    border-radius: 4.2vw;
    padding: 3.2vw 3.2vw;
  }

  .ranking__tableTitleRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6vw;
    margin-bottom: 2.6vw;
  }

  .ranking__tableTitle {
    font-size: 3.6vw;
  }

  .ranking__tableNote {
    font-size: 3.1vw;
  }

  /* テーブルだけ横スクロールに閉じ込める */
  .ranking__tableWrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .ranking__table {
    width: max-content;
    min-width: 160vw;
  }

  .ranking__th,
  .ranking__td {
    padding: 2.6vw 2.6vw;
    font-size: 3.3vw;
  }

  .ranking__th--rowLabel {
    width: 36vw;
  }
}



/* -----------------------------------------------
links
----------------------------------------------- */
.url-text {
  padding: 2vw;
  border-left: solid 1vw #15803d;
  background-color: #dcfce7;
  font-size: 1.2vw;
  border-radius: 2vw;
}
/* links-list を「2列 × 8行」固定にする */
.page-outline-wrap.links-page ul.links-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(8, auto);
  grid-auto-flow: row;
  gap: 1vw;
  margin-top: 5vw;
}
.links-link {
  display: flex;
  align-items: center;
  width: 29vw !important;
  padding: .5vw 1vw;
  border: solid 2px #c2c2c2 !important;
  border-radius: 100vw;
}
.links-title, .links-arrow {
  width: auto !important;
  border-bottom: none !important;
}
.links-badge {
  display: block;
  width: 4vw !important;
  padding: .1vw 0 !important;
  background-color: #15803d;
  text-align: center;
  font-size: .9vw;
  color: #fff;
  border-radius: 100vw;
  border: none !important;
}
.links-badge--yellow {
  background-color: #f97316;
}
.links-title {
  margin-left: 2vw;
  font-size: 1.1vw;
}
.links-arrow {
    margin-left: auto;
  flex: 0 0 auto;
  font-size: 1.2vw;
  font-weight: bold;
  color: #15803d;
}
@media screen and (max-width: 768px) {
  .url-text {
    padding: 3vw 5vw;
    border-left: solid 1vw #15803d;
    background-color: #dcfce7;
    font-size: 3.5vw;
    border-radius: 5vw;
  }
  /* links-list を「2列 × 8行」固定にする */
  .page-outline-wrap.links-page ul.links-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(16, auto);
    grid-auto-flow: row;
    gap: 5vw;
    margin-top: 10vw;
  }
  .links-link {
    width: 90vw !important;
    padding: 2vw 3vw;
    border: solid 2px #c2c2c2 !important;
    border-radius: 100vw;
  }
  .links-title, .links-arrow {
    width: auto !important;
    border: none !important;
  }
  .links-badge {
    display: block;
    width: 12vw !important;
    padding: 1vw 0 !important;
    background-color: #15803d !important;
    text-align: center;
    font-size: 3vw;
    color: #fff;
    border-radius: 100vw;
  }
  .links-badge--yellow {
    background-color: #f97316 !important;
  }
  .links-title {
    margin-left: 1vw;
    font-size: 3.5vw;
    background-color: #fff !important;
  }
  .links-arrow {
    margin-left: auto;
    flex: 0 0 auto;
    font-size: 4vw;
    font-weight: bold;
    color: #15803d !important;
    background-color: #fff !important;
  }
}

/* -----------------------------------------------
contact
----------------------------------------------- */
/* -----------------------------------------------
   FAQ（アコーディオン）
----------------------------------------------- */
.page-contact-faq-area {
  margin-top: 5vw;
  margin-left: 5%;
  margin-right: 5%;
  padding: 4vw 5vw;
  width: 90%;
  background-color: #fff;
  border-radius: 30px;
}

.page-contact-faq-title {
  margin-bottom: 2vw;
  text-align: center;
  font-size: 1.8vw;
}

.page-contact-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-contact-faq-item + .page-contact-faq-item {
  margin-top: 1.5vw;
  padding-top: 1.5vw;
  border-top: 1px solid #ddd;
}
.page-contact-faq-section-title {
  margin-top: 3vw;
  margin-bottom: 2vw;
  text-align: center;
  font-size: 1.2vw;
}
.page-contact-faq-q {
  cursor: pointer;
  font-size: 1.1vw;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 0.5vw;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 2vw;
}

.page-contact-faq-q::after {
  content: "＋";
  position: absolute;
  right: 0;
  font-size: 1.4vw;
  color: #15803d;
}

.page-contact-faq-a {
  font-size: 1vw;
  line-height: 1.6;
  display: none;
}

.page-contact-faq-q .faq-label,
.page-contact-faq-a .faq-label {
  display: inline-block;
  margin-right: 0.5vw;
  font-weight: 700;
  color: #15803d;
}

.page-contact-faq-item.is-open .page-contact-faq-a {
  display: block;
}

.page-contact-faq-item.is-open .page-contact-faq-q::after {
  content: "－";
}

/* -----------------------------------------------
   外枠（フォームエリア）
----------------------------------------------- */
.page-contact-area {
  margin-top: 5vw;
  margin-left: 5%;
  margin-right: 5%;
  padding: 5vw 15vw;
  width: 90%;
  background-color: #15803d;
  border-radius: 30px;
}

.page-contact-form-area {
  position: relative;
  margin-top: 0;
  padding: 5vw 5vw 4vw 5vw;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
}

#page-contact-form-title {
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  padding: 1vw 0;
  width: 30vw;
  text-align: center;
  font-size: 1.3vw;
  color: #000;
  background-color: #f97316;
  border-radius: 50px;
}

.page-contact-form-text-area {
  font-size: 1vw;
  line-height: 1.5;
}

.page-contact-form-text-area a {
  color: #15803d;
  border-bottom: solid 0.15vw #15803d;
  text-decoration: none;
}

.page-contact-form-wrap {
  margin-top: 8%;
  font-size: 1vw;
  color: #000;
}

/* -----------------------------------------------
   成功/エラー表示
----------------------------------------------- */
.contact-form-error {
  margin-top: 1.2vw;
  padding: 1vw 1.2vw;
  border-radius: 12px;
  border: solid 2px #ff6b6b;
  background: #fff5f5;
  color: #b00020;
  font-size: 1vw;
}

.contact-form-info {
  margin-top: 1.2vw;
  padding: 1vw 1.2vw;
  border-radius: 12px;
  border: solid 2px #15803d;
  background: #dcfce7;
  color: #025da3;
  font-size: 1vw;
}

/* -----------------------------------------------
   フォーム本体（CF7風DOM）
----------------------------------------------- */
.contact-form-7-like {
  margin-top: 2vw;
}
.contact-form-7-like > label {
  display: block;
  margin-top: 2vw;
}
.contact-form-7-text {
  display: flex;
  align-items: center;
  gap: 1vw;
  font-size: 1.1vw;
  margin-bottom: 0.8vw;
}
span.required {
  margin-left: 1vw;
  padding: 0.2vw 1vw;
  font-size: 0.8vw;
  color: #fff;
  background-color: #ff0000;
  border-radius: 50px;
}
.contact-form-7-like input[type="text"],
.contact-form-7-like input[type="email"],
.contact-form-7-like input[type="tel"],
.contact-form-7-like textarea,
.contact-form-7-like select {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.5vw;
  padding: 0.8vw 0.9vw;
  font-size: 1vw;
  border: solid 2px #000;
  border-radius: 10px;
  background: #fff;
}
.contact-form-7-like select {
  cursor: pointer;
}
.contact-form-7-like textarea {
  min-height: 10vw;
  resize: vertical;
}
.contact-form-7-like input[type="text"]:focus,
.contact-form-7-like input[type="email"]:focus,
.contact-form-7-like input[type="tel"]:focus,
.contact-form-7-like textarea:focus,
.contact-form-7-like select:focus {
  outline: none;
  box-shadow: 0 0 0.8vw 0.2vw rgba(21, 128, 61, 0.35);
  border-color: #15803d;
}
.contact-form-checkbox-group {
  margin-top: 0.8vw;
  padding: 1vw 1.2vw;
  border: solid 2px #dedede;
  border-radius: 12px;
  background: #fafafa;
}
.contact-form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-top: 0.8vw;
  font-size: 1vw;
}
.contact-form-checkbox-item input[type="checkbox"] {
  width: 1.2vw;
  height: 1.2vw;
}
.contact-form-hint {
  margin-top: 1vw;
  font-size: 0.9vw;
  color: #666;
}
.contact-form-btn-area {
  margin-top: 4vw;
  text-align: center;
}
.contact-form-btn-area p {
  position: relative;
  margin: 0 8vw;
  padding: 1vw 6vw 1vw 4vw;
  background-color: #15803d;
  color: #fff;
  border-radius: 50px;
}
.contact-form-btn-area p > button {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.2vw;
  line-height: 1;
  color: #fff;
}
.contact-form-btn-area p > button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.contact-form-btn-area p span {
  position: absolute;
  top: 50%;
  right: 1vw;
  transform: translateY(-50%);
  width: 3vw;
  height: 3vw;
  text-align: center;
  line-height: 3vw;
  color: #15803d;
  font-size: 1.5vw;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  /* FAQ */
  .page-contact-faq-area {
    margin-top: 15vw;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
    padding: 7vw 6vw;
    width: 99vw;
    border-radius: 20px;
  }
  .page-contact-faq-title {
    margin-bottom: 10vw;
    font-size: 5vw;
  }
  .page-contact-faq-item + .page-contact-faq-item {
    margin-top: 4vw;
    padding-top: 4vw;
  }
  .page-contact-faq-section-title {
    margin-top: 8vw;
    margin-bottom: 5vw;
    text-align: center;
    font-size: 4vw;
  }
  .page-contact-faq-q {
    font-size: 3.5vw;
    margin-bottom: 2vw;
    padding-right: 6vw;
  }
  .page-contact-faq-q::after {
    font-size: 5vw;
  }
  .page-contact-faq-a {
    font-size: 3.2vw;
  }
  .page-contact-faq-q .faq-label,
  .page-contact-faq-a .faq-label {
    margin-right: 1.5vw;
  }
  .page-contact-area {
    margin-top: 10vw;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
    padding: 15vw 4vw;
    width: 99vw;
    border-radius: 20px;
  }
  .page-contact-form-area {
    padding: 15vw 5vw 15vw 5vw;
    border-radius: 18px;
  }
  #page-contact-form-title {
    top: -2.5%;
    width: 80vw;
    padding: 2.8vw 0;
    font-size: 5vw;
    border-radius: 50vw;
  }
  .page-contact-form-text-area {
    font-size: 3.2vw;
    line-height: 1.6;
  }
  .page-contact-form-wrap {
    font-size: 3.2vw;
  }
  .contact-form-error,
  .contact-form-info {
    font-size: 3.2vw;
    padding: 3.2vw 3.2vw;
    border-radius: 3.2vw;
  }
  .contact-form-7-text {
    font-size: 3.5vw;
    margin-bottom: 2.1vw;
    gap: 2.7vw;
  }
  span.required {
    margin-left: 2.7vw;
    padding: 0.8vw 2.6vw;
    font-size: 2.8vw;
  }
  .contact-form-7-like input[type="text"],
  .contact-form-7-like input[type="email"],
  .contact-form-7-like input[type="tel"],
  .contact-form-7-like textarea,
  .contact-form-7-like select {
    font-size: 3.2vw;
    padding: 3.2vw 3.2vw;
    border-radius: 2.7vw;
  }
  .contact-form-7-like textarea {
    min-height: 32vw;
  }
  .contact-form-checkbox-item {
    font-size: 3.2vw;
    gap: 2.7vw;
  }
  .contact-form-checkbox-item input[type="checkbox"] {
    width: 4.8vw;
    height: 4.8vw;
  }
  .contact-form-hint {
    font-size: 2.9vw;
  }
  .contact-form-btn-area p {
    margin: 0 4vw;
    padding: 3.7vw 15vw 3.7vw 4.8vw;
    border-radius: 50vw;
  }
  .contact-form-btn-area p > button {
    font-size: 4vw;
  }
  .contact-form-btn-area p span {
    width: 12vw;
    height: 12vw;
    line-height: 12vw;
    font-size: 5.4vw;
    right: 2.7vw;
  }
}

/* -----------------------------------------------
privacy
----------------------------------------------- */
.privacy {
  margin-top: 6vw;
  padding: 0 1vw;
}
.privacy__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #dedede;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 3vw 3vw;
  box-sizing: border-box;
}
.privacy__titleArea {
  margin-bottom: 2.2vw;
}
.privacy__title {
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #15803d;
  padding-left: 1vw;
}
.privacy__lead {
  margin-top: 1.4vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.privacy__section {
  margin-top: 2.4vw;
  padding-top: 2.2vw;
  border-top: solid 2px #dedede;
}
.privacy__h2 {
  font-size: 1.3vw;
  margin-bottom: 1.2vw;
  border-left: solid 0.5vw #f97316;
  padding-left: 1vw;
}
.privacy__p {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  margin-top: 1vw;
}
.privacy__list {
  margin-top: 1.2vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.privacy__list--disc {
  list-style: disc;
  padding-left: 2vw;
}
.privacy__list--decimal {
  list-style: decimal;
  padding-left: 2vw;
}
.privacy__list li + li {
  margin-top: 0.8vw;
}
.privacy__hr {
  margin: 3vw 0 2vw 0;
  border: 0;
  height: 2px;
  background: #dedede;
}
.privacy__dates {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  background: #dcfce7;
  border-left: solid 0.5vw #15803d;
  padding: 1.2vw 1.5vw;
  border-radius: 12px;
}
.privacy a {
  color: #000fff;
  border-bottom: solid 1px #000fff;
}
@media screen and (max-width: 768px) {
  .privacy {
    margin-top: 12vw;
  }
  .privacy__inner {
    max-width: 92vw;
    padding: 18px 16px;
    border-radius: 18px;
  }
  .privacy__title {
    font-size: 20px;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .privacy__lead,
  .privacy__p,
  .privacy__list,
  .privacy__dates {
    font-size: 14px;
    line-height: 1.9;
  }
  .privacy__section {
    margin-top: 18px;
    padding-top: 18px;
  }
  .privacy__h2 {
    font-size: 16px;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .privacy__list--disc,
  .privacy__list--decimal {
    padding-left: 22px;
  }
  .privacy__hr {
    margin: 20px 0 14px 0;
  }
  .privacy__dates {
    padding: 12px 12px;
    border-left-width: 6px;
  }
}
/* -----------------------------------------------
terms
----------------------------------------------- */
.terms {
  margin-top: 6vw;
  padding: 0 1vw;
}
.terms__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #dedede;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 3vw 3vw;
  box-sizing: border-box;
}
.terms__titleArea {
  margin-bottom: 2.2vw;
}
.terms__title {
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #15803d;
  padding-left: 1vw;
}
.terms__section {
  margin-top: 2.4vw;
  padding-top: 2.2vw;
  border-top: solid 2px #dedede;
}
.terms__h2 {
  font-size: 1.3vw;
  margin-bottom: 1.2vw;
  border-left: solid 0.5vw #f97316;
  padding-left: 1vw;
}
.terms__p {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  margin-top: 1vw;
}
.terms__list {
  margin-top: 1.2vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.terms__list--disc {
  list-style: disc;
  padding-left: 2vw;
}
.terms__list li + li {
  margin-top: 0.8vw;
}
.terms__contact {
  margin-top: 1.2vw;
  background: #dcfce7;
  border-left: solid 0.5vw #15803d;
  padding: 1.2vw 1.5vw;
  border-radius: 12px;
}
.terms a {
  color: #000fff;
  border-bottom: solid 1px #000fff;
}
@media screen and (max-width: 768px) {
  .terms {
    margin-top: 12vw;
  }
  .terms__inner {
    max-width: 92vw;
    padding: 18px 16px;
    border-radius: 18px;
  }
  .terms__title {
    font-size: 20px;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .terms__section {
    margin-top: 18px;
    padding-top: 18px;
  }
  .terms__h2 {
    font-size: 16px;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .terms__p,
  .terms__list {
    font-size: 14px;
    line-height: 1.9;
  }
  .terms__list--disc {
    padding-left: 22px;
  }
  .terms__contact {
    padding: 12px 12px;
    border-left-width: 6px;
  }
}
