@charset "UTF-8";

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
/* variables */
:root {
  --color-primary: #151515;
  --color-secondary: #;
  --white: #fff;
  --black: #000;
  --red: #FF0000;
  --blue: ;
  --green: #008e54;
  --green-bright: #018C53;
  --green-pale: #edf4ed;
  --yellow: #fff050;
  --purple: ;
  --orange: ;
  --pink: ;
  --brown: ;
  --gray: #575757;
  --gray-light: #f9f9f9;
}

:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "Zen Kaku Gothic New", sans-serif;
  /* ヘッダー高さ（ロゴ幅 17vw × 比率 240/770 + 上下padding 20px） */
  --header-h: calc(5.3vw + 20px);
}



body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* コンテンツが少なくてもフッターを最下部に固定（スティッキーフッター） */
.main {
  flex: 1 0 auto;
}

.section-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
}

.section-ttl span {
  font-family: var(--font-secondary);
  font-size: clamp(12px, 2.5vw, 16px);
}


/* ========================================
    コンテナ幅
    ======================================== */

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1080px + 32px);
}

.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(85vw + 32px);
}

@media screen and (max-width: 1200px) {
  .container-xl {
    max-width: calc(90vw + 32px);
  }
}

@media screen and (max-width: 600px) {
  .container-xl {
    max-width: calc(100% + 32px);
  }
}


/* ========================================
    共通
    ======================================== */

.m-grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .m-grid-4-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .m-grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}


.m-grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .m-grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .m-grid-3-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .m-grid-2-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* SP のみ改行 */
.br-sp {
  display: none;
}

@media (max-width: 600px) {
  .br-sp {
    display: inline;
  }
}

/* PC のみ改行 */
@media (max-width: 600px) {
  .br-pc {
    display: none;
  }
}

/* セクション見出し（緑の和文 + グレーの欧文） */
.m-sec-ttl {
  margin-bottom: 48px;
  text-align: center;
}

@media (max-width: 600px) {
  .m-sec-ttl {
    margin-bottom: 32px;
  }
}

.m-sec-ttl__ja {
  color: var(--green);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.4;
}

.m-sec-ttl__en {
  margin-top: 8px;
  color: #808080;
  font-family: var(--font-secondary);
  font-size: clamp(14px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* セクション見出し（緑の欧文ラベル上 + 黒の和文・左寄せ） */
.m-head {
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .m-head {
    margin-bottom: 28px;
  }
}

.m-head__en {
  color: #018C53;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 36.8px;
}

.m-head__ja {
  color: #000000;
  font-family: var(--font-secondary);
  font-size: clamp(24px, 2.18vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.618;
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
}

/* TOP はメインビジュアルに重ねるため固定配置 */
.home .header {
  position: fixed;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 10px 4.6vw;
}

@media (max-width: 600px) {
  .header__inner {
    padding: 12px 6vw;
  }
}

.header__logo {
  min-width: 335px;
}

@media (max-width: 900px) {
  .header__logo {
    min-width: 0;
  }
}

.header__logo a {
  display: block;
}

.header__logo img {
  width: max(160px, 17vw);
  height: auto;
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
}

@media (max-width: 1080px) {
  .pc-nav {
    gap: 20px;
  }

  .header__nav-list {
    gap: 18px;
  }
}

.header__nav-item a {
  color: #000000;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 23px;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s;
}

.header__nav-item a:hover {
  color: var(--green);
}

.header__login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--green);
  color: #FFFFFF;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 35px;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s;
}

.header__login:hover {
  opacity: 0.85;
}

.header__login-icon {
  display: inline-flex;
  width: 16px;
}

.header__login-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ハンバーガー（SP） */
.sp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 30px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.sp-hamburger__line {
  width: 100%;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: 0.3s;
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(2) {
  opacity: 0;
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

.sp-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  height: calc(100vh - 88px);
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 999;
}

@media (max-width: 600px) {
  .sp-nav {
    top: 64px;
    height: calc(100vh - 64px);
  }
}

.sp-nav.is-open {
  transform: translateX(0);
}

.sp-nav__list {
  list-style: none;
  padding: 16px;
}

.sp-nav__item {
  border-bottom: 1px solid #eee;
}

.sp-nav__item a {
  display: block;
  padding: 16px 8px;
  color: var(--color-primary);
  font-size: 16px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .pc-nav {
    display: none;
  }

  .sp-hamburger {
    display: flex;
  }

  .sp-nav {
    display: block;
  }
}

/* ========================================
    フッター
    ======================================== */
.footer {
  padding: 48px 0 24px;
  background: #018C53;
  color: var(--white);
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 0 24px;
  }
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4.6vw;
}

@media (max-width: 900px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 6vw;
  }
}

.footer__logo img {
  width: max(160px, 17vw);
  height: auto;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 600px) {
  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  list-style: none;
}

.footer__nav-item a {
  color: #FFFFFF;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 35px;
  text-decoration: none;
  transition: 0.3s;
}

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

.footer__login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--white);
  color: var(--green-bright);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid var(--white);
  transition: 0.3s;
}

.footer__login:hover {
  opacity: 0.85;
}

.footer__login-icon {
  display: inline-flex;
  width: 16px;
}

.footer__login-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer__copyright {
  margin-top: 40px;
  font-family: var(--font-secondary);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ページトップへ戻る */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(5.625vw, 108px);
  height: min(5.625vw, 108px);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 900;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}

.pagetop:hover {
  opacity: 0.85;
}

.pagetop svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .pagetop {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

/* ========================================
    メインビジュアル
    ======================================== */
/* ========================================
    ナビゲーションドロワー
    ======================================== */
/* ========================================
    投稿一覧ページ
    ======================================== */
/* 新着情報一覧 */
.news {
  padding: 80px 0 96px;
}

@media (max-width: 600px) {
  .news {
    padding: 48px 0 64px;
  }
}

/* カテゴリタブ */
.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  list-style: none;
}

@media (max-width: 600px) {
  .news-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
}

.news-tab {
  width: 8em;
  padding: 12px 24px;
  text-align: center;
  background: var(--gray-light);
  border: none;
  color: var(--color-primary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.news-tab:hover {
  background: #ececec;
}

.news-tab.is-active {
  background: var(--green);
  color: var(--white);
}

.news-tab.is-active:hover {
  background: var(--green);
  opacity: 0.9;
}

@media (max-width: 600px) {
  .news-tab {
    min-width: 0;
    flex: 1;
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* リスト */
.js-news-list.is-loading {
  opacity: 0.5;
  transition: opacity 0.3s;
}

.news-list {
  list-style: none;
}

.news-item {
  border-top: 1px solid #808080;
}

.news-item:first-child {
  border-top: none;
}

.news-item:last-child {
  border-bottom: 1px solid #808080;
}

.news-item__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  padding: min(2.6vw, 48px) 8px;
  color: var(--color-primary);
  font-size: clamp(16px, 1.25vw, 24px);
  text-decoration: none;
  transition: 0.3s;
}

.news-item__link:hover {
  color: var(--green);
}

.news-item__date {
  color: var(--green);
  font-family: var(--font-secondary);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
}

.news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  padding: 4px 8px;
  text-align: center;
  border: 1px solid var(--color-primary);
  border-radius: 2px;
  color: var(--color-primary);
  font-size: clamp(15px, 1.04vw, 20px);
  line-height: 1.4;
  white-space: nowrap;
}

.news-item__title {
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .news-item__link {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 12px;
    padding: 16px 4px;
  }

  .news-item__date {
    font-size: 15px;
  }

  .news-item__cat {
    justify-self: start;
    width: fit-content;
    min-width: 6em;
    padding: 2px 8px;
    font-size: 12px;
  }

  .news-item__title {
    grid-column: 1 / -1;
    font-size: 16px;
  }
}

/* ページャ */
.news-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 600px) {
  .news-pager {
    gap: 12px;
    margin-top: 32px;
  }
}

.news-pager__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.news-pager__nav:hover {
  color: var(--green);
}

.news-pager__nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.news-pager__arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.news-pager__arrow--prev {
  border-right: 7px solid currentColor;
}

.news-pager__arrow--next {
  border-left: 7px solid currentColor;
}

.news-pager__nums {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.news-pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.news-pager__num:hover {
  color: var(--green);
}

.news-pager__num.is-current {
  background: var(--green);
  color: var(--white);
}

.news-pager__num.is-current:hover {
  color: var(--white);
}

.news-empty {
  padding: 40px 0;
  font-size: 16px;
  text-align: center;
}

/* ========================================
    投稿詳細ページ
    ======================================== */
.m-post-main {
  font-size: 16px;
  line-height: 2;
}

.m-post-main>*:first-child {
  margin-top: 0;
}

.m-post-main>*:last-child {
  margin-bottom: 0;
}

/* 本文 */
.m-post-main p {
  margin: 0 0 24px;
  line-height: 2;
}

@media (max-width: 600px) {
  .m-post-main p {
    font-size: 15px;
  }
}

/* リンク */
.m-post-main a {
  color: var(--green);
  text-decoration: underline;
  transition: 0.3s;
}

.m-post-main a:hover {
  opacity: 0.7;
}

/* 画像 */
.m-post-main img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
}

.m-post-main figure {
  margin: 40px 0;
}

.m-post-main figure img {
  margin: 0;
}

.m-post-main figcaption {
  margin-top: 8px;
  color: var(--gray);
  font-size: 13px;
  text-align: center;
}

/* 見出し1（本文中で使われた場合） */
.m-post-main h1 {
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
}

/* 見出し2（緑の左バー） */
.m-post-main h2 {
  margin: 56px 0 24px;
  padding: 6px 0 6px 16px;
  border-left: 5px solid var(--green);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .m-post-main h2 {
    margin-top: 40px;
    padding-left: 12px;
  }
}

/* 見出し3（緑の小さな四角） */
.m-post-main h3 {
  position: relative;
  margin: 40px 0 16px;
  padding-left: 22px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.6;
}

.m-post-main h3::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 2px;
}

.m-post-main h4 {
  margin: 32px 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

/* リスト */
.m-post-main ul,
.m-post-main ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
}

.m-post-main ul {
  list-style: disc;
}

.m-post-main ol {
  list-style: decimal;
}

.m-post-main li {
  margin-bottom: 8px;
  line-height: 2;
}

.m-post-main li::marker {
  color: var(--green);
}

/* 強調・引用 */
.m-post-main strong {
  font-weight: 700;
}

.m-post-main blockquote {
  margin: 0 0 24px;
  padding: 16px 24px;
  background: var(--gray-light);
  border-left: 4px solid var(--green);
  color: var(--gray);
}

/* 記事詳細ページのレイアウト */
.single-content {
  padding: 64px 0 96px;
}

@media (max-width: 600px) {
  .single-content {
    padding: 40px 0 64px;
  }
}

.single__head {
  margin-bottom: 40px;
}

.single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.single__date {
  color: var(--green);
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 500;
}

.single__cat {
  color: var(--gray);
  font-size: clamp(15px, 1.04vw, 20px);
}

.single__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
}

.single__thumb {
  margin-bottom: 40px;
}

.single__thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.single__back {
  margin-top: 64px;
  text-align: center;
}

@media (max-width: 600px) {
  .single__back {
    margin-top: 48px;
  }
}

.single__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 40px;
  background: var(--green);
  border-radius: 5px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.single__back a:hover {
  opacity: 0.85;
}


/* ========================================
    トップページ
    ========================================
*/
/* メインビジュアル */
.mv {
  position: relative;
  overflow: hidden;
}

.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.35);
}

.mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  /* モバイルのアドレスバー対策（対応ブラウザのみ上書き） */
  width: fit-content;
  margin-left: 14vw;
  padding: var(--header-h) 16px 80px;
  color: var(--white);
}

@media (max-width: 600px) {
  .mv__inner {
    transform: translateY(15%);
    margin-left: auto;
    margin-right: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.mv__title {
  font-family: var(--font-secondary);
  font-size: clamp(46px, 7.638888vw, 110px);
  font-weight: 700;
  line-height: 1.15;
}

.mv__copy {
  margin-top: 24px;
  font-size: clamp(15px, 1.944444vw, 28px);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .mv__copy {
    margin-top: 16px;
  }
}

/* 組合について */
.about {
  padding: max(40px, 9vw) 0;
}

.about__text {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
}

.about__text p+p {
  margin-top: 1.5em;
}

@media (max-width: 600px) {
  .about__text {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
}

/* 組合紹介（カード） */
.intro {
  padding: max(40px, 9vw) 0;
  background: var(--gray-light);
}

.intro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 24px;
  background: var(--white);
  border-radius: 8px;
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

.intro-card:hover {
  background: var(--green);
  color: var(--white);
}

.intro-card:hover .intro-card__line {
  background: var(--white);
}

.intro-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 24px;
}

.intro-card__icon img,
.intro-card__icon svg {
  display: block;
  width: auto;
  height: 100%;
}

/* ホバー時はアイコン（SVG）の塗りを白に反転 */
.intro-card:hover .intro-card__icon svg {
  fill: var(--white);
}

.intro-card__line {
  width: 60%;
  height: 2px;
  margin-bottom: 24px;
  background: var(--green);
}

.intro-card__label {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* 関連サイト */
.related {
  padding: max(40px, 9vw) 0;
}

.related__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
}

@media (max-width: 768px) {
  .related__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.related__item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 307 / 126;
  padding: 8px 16px;
  border: 2px solid #cbcbcb;
}

a.related__item {
  transition: 0.3s;
}

a.related__item:hover {
  opacity: 0.85;
}

.related__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
    下層ページ
    ======================================== */
/* ページタイトル帯 */
.page-hero {
  background: linear-gradient(97.66deg, #008C65 0%, #008C65 26.31%, #008E54 67.78%, #009145 99.05%);
  color: var(--white);
}

/* 下層ページ：ページヒーロー直後のセクション上余白を統一（.union-tab と同じ 7vw） */
.page-hero+section {
  padding-top: 7vw;
}

.page-hero__inner {
  padding-top: 2.1vw;
  padding-bottom: 3.1vw;
  padding-left: 6.6vw;
}

@media (max-width: 600px) {
  .page-hero__inner {
    padding-bottom: 32px;
  }
}

.page-hero__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 24px;
  color: #FFFFFF;
  font-family: var(--font-secondary);
  font-size: clamp(28px, 3.75vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.618;
}

@media (max-width: 600px) {
  .page-hero__title {
    gap: 12px;
  }
}

.page-hero__title-en {
  color: #FFFFFF;
  font-family: var(--font-secondary);
  font-size: clamp(16px, 1.85vw, 36px);
  font-weight: 500;
  letter-spacing: 0;
}

/* ページタイトル帯内のパンくず（白文字に上書き） */
.page-hero .breadcrumb {
  padding: 8px 0 16px;
}

.page-hero .breadcrumb__link {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero .breadcrumb__link:hover {
  color: var(--white);
}

.page-hero .breadcrumb__current {
  color: var(--white);
}

.page-hero .breadcrumb__item:not(:last-child)::after {
  border-color: rgba(255, 255, 255, 0.7);
}

/* 活動方針 */
.activity {
  padding: 64px 0 96px;
}

@media (max-width: 600px) {
  .activity {
    padding: 40px 0 64px;
  }
}

.activity__label {
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.activity__title {
  margin-bottom: 24px;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .activity__title {
    margin-bottom: 16px;
  }
}

.activity__lead {
  margin-bottom: 48px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 600px) {
  .activity__lead {
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.9;
  }
}

.activity__board {
  padding: max(20px, 3.8vw);
  background: var(--gray-light);
  border-radius: 20px;
}

@media (max-width: 600px) {
  .activity__board {
    padding: 64px 16px 50px;
  }
}

.activity__card {
  padding: 130px 48px 48px;
  background: var(--white);
  border-radius: 20px;
}

@media (max-width: 768px) {
  .activity__card {
    padding: 16px 24px 32px;
  }
}

@media (max-width: 600px) {
  .activity__card {
    padding: 8px 16px 24px;
    border-radius: 12px;
  }
}

.policy-item {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 56px 0 5vw;
  border-top: 1px dashed var(--green);
}

.policy-item:last-child {
  padding-bottom: 56px;
}

@media (max-width: 768px) {
  .policy-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }
}

@media (max-width: 600px) {
  .policy-item {
    padding: 40px 0 72px;
  }

  .policy-item:last-child {
    padding-bottom: 32px;
  }
}

.policy-item__pin {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  transform: translate(-50%, -55%);
}

.policy-item__pin img {
  display: block;
  width: 100%;
  height: auto;
}

.policy-item__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.policy-item__title {
  margin-bottom: 32px;
  color: var(--green);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .policy-item__title {
    margin-bottom: 20px;
  }
}

.policy-item__icon {
  width: 120px;
}

@media (max-width: 600px) {
  .policy-item__icon {
    width: 96px;
  }
}

.policy-item__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.policy-item__body {
  padding-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 600px) {
  .policy-item__body {
    padding-top: 0;
    font-size: 14px;
    line-height: 1.9;
  }
}

.policy-item__body p+p {
  margin-top: 1.5em;
}

.policy-item__list {
  margin-top: 1em;
  list-style: none;
}

.policy-item__list li {
  position: relative;
  padding-left: 1.2em;
  line-height: 2;
}

.policy-item__list li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* 金融・保険業務ページ */
.fs-intro {
  padding: 64px 0 0;
}

@media (max-width: 600px) {
  .fs-intro {
    padding: 40px 0 0;
  }
}

.fs-intro__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 600px) {
  .fs-intro__lead {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* イントロ下のタブ（.union-tab__btn を再利用） */
.fs-tabs {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .fs-tabs {
    margin-top: 32px;
  }
}

.fs {
  padding: 24px 0 96px;
}

@media (max-width: 600px) {
  .fs {
    padding: 16px 0 64px;
  }
}

.fs__block {
  padding: 56px 0;
  scroll-margin-top: 100px;
}

@media (max-width: 600px) {
  .fs__block {
    padding: 40px 0;
  }
}

.fs__head {
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .fs__head {
    margin-bottom: 24px;
  }
}

.fs__title {
  font-family: var(--font-secondary);
  font-size: clamp(24px, 1.98vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.618;
}

.fs__bar {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 16px;
  background: linear-gradient(to right, var(--green-bright) 0 200px, #989898 200px);
}

@media (max-width: 600px) {
  .fs__bar {
    margin-top: 12px;
    background: linear-gradient(to right, var(--green-bright) 0 120px, #989898 120px);
  }
}

.fs__body {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 600px) {
  .fs__body {
    font-size: 14px;
    line-height: 1.9;
  }
}

.fs__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 307 / 126;
  max-width: 240px;
  margin-top: 40px;
  border: 2px solid #cbcbcb;
}

@media (max-width: 600px) {
  .fs__logo {
    margin-top: 32px;
  }
}

.fs__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fs__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.fs__link:hover {
  opacity: 0.7;
}

.fs__link-icon {
  display: inline-flex;
  width: 15px;
}

.fs__link-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

/* 組合紹介ページ：タブナビ */
.union-tab {
  padding: 7vw 0 0;
}

.union-tab__list {
  display: flex;
  flex-wrap: wrap;
  gap: 31.1px;
  list-style: none;
}

@media (max-width: 600px) {
  .union-tab__list {
    gap: 12px;
  }
}

.union-tab__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 160px;
  padding: 10px 24px;
  background: var(--gray-light);
  border-radius: 5px;
  color: #000000;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 35px;
  text-decoration: none;
  transition: 0.3s;
}

.union-tab__btn::after {
  content: "";
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid var(--color-primary);
  transition: 0.3s;
}

.union-tab__btn:hover {
  background: var(--green);
  color: var(--white);
}

.union-tab__btn:hover::after {
  border-top-color: var(--white);
}

@media (max-width: 600px) {
  .union-tab__btn {
    min-width: 0;
    flex: 1;
    gap: 12px;
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* 組合紹介ページ：各セクション */
.union-sec {
  padding: 56px 0;
  scroll-margin-top: 100px;
}

@media (max-width: 600px) {
  .union-sec {
    padding: 40px 0;
  }
}

.union-sec:last-child {
  padding-bottom: 6.77vw;
}

@media (max-width: 600px) {
  .union-sec:last-child {
    padding-bottom: 40px;
  }
}

.union-sec__body {
  color: #000000;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* 組織構成 */
.org-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 32px 0;
  font-weight: 500;
}

.org-item+.org-item {
  border-top: 1px dotted var(--gray);
}

.org-item:last-child {
  border-bottom: 1px dotted var(--gray);
}

@media (max-width: 600px) {
  .org-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
}

.org-item__label {
  color: #008E54;
  font-family: var(--font-secondary);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 36px;
}

.org-item__body {
  font-size: clamp(15px, 1.04vw, 20px);
  line-height: 2;
}

@media (max-width: 600px) {
  .org-item__body {
    font-size: 14px;
  }
}

.org-roles {
  display: grid;
  grid-template-columns: minmax(140px, 240px) max-content max-content;
  gap: 8px 24px;
}

@media (max-width: 600px) {
  .org-roles {
    gap: 4px 16px;
  }
}

/* 歴史（タイムライン） */
.history__list {
  list-style: none;
}

.history-item {
  display: grid;
  grid-template-columns: 110px auto 1fr;
  align-items: center;
  padding: 14px 0;
  font-weight: 500;
}

@media (max-width: 600px) {
  .history-item {
    grid-template-columns: 80px 24px 1fr;
    gap: 12px;
    padding: 12px 0;
  }
}

.history-item__year {
  color: #000000;
  font-family: var(--font-secondary);
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 36px;
}

@media (max-width: 600px) {
  .history-item__year {
    font-size: 16px;
  }
}

.history-item__dot {
  position: relative;
  justify-self: center;
  align-self: stretch;
  width: 16px;
  margin: 0 7.81vw 0 4.69vw;
}

.history-item__dot::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 1px;
  height: calc(100% + 28px);
  transform: translateX(-50%);
  background-image: linear-gradient(var(--gray) 1px, transparent 1px);
  background-position: center top;
  background-size: 1px 6px;
  background-repeat: repeat-y;
}

@media (max-width: 600px) {
  .history-item__dot {
    margin: 0;
  }

  .history-item__dot::after {
    top: -12px;
    height: calc(100% + 24px);
  }
}

/* 先頭の項目は上方向に線を飛び出させない */
.history-item:first-child .history-item__dot::after {
  top: 50%;
  height: calc(50% + 14px);
}

@media (max-width: 600px) {
  .history-item:first-child .history-item__dot::after {
    height: calc(50% + 12px);
  }
}

/* 末尾の項目は下方向に線を飛び出させない */
.history-item:last-child .history-item__dot::after {
  top: -14px;
  height: calc(50% + 14px);
}

@media (max-width: 600px) {
  .history-item:last-child .history-item__dot::after {
    top: -12px;
    height: calc(50% + 12px);
  }
}

.history-item__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background: var(--green);
  border-radius: 50%;
}

.history-item__event {
  color: #000000;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 35px;
}

@media (max-width: 600px) {
  .history-item__event {
    font-size: 14px;
  }
}

/* 組合役員ページ */
.union-office {
  padding: 64px 0 96px;
}

@media (max-width: 600px) {
  .union-office {
    padding: 40px 0 64px;
  }
}

.union-office__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .union-office__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* SP では内容（名簿）を先頭に、年度サイドバーを下に */
  .union-office__main {
    order: 1;
  }

  .union-office__side {
    order: 2;
  }
}

/* 支部タブ */
.union-office__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  list-style: none;
}

@media (max-width: 600px) {
  .union-office__tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
}

.union-office__tab {
  min-width: 112px;
  padding: 12px 20px;
  background: var(--gray-light);
  border: none;
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.union-office__tab:hover {
  background: #ececec;
}

.union-office__tab.is-active {
  background: var(--green);
  color: var(--white);
}

.union-office__tab.is-active:hover {
  background: var(--green);
  opacity: 0.9;
}

@media (max-width: 600px) {
  .union-office__tab {
    min-width: 0;
    flex: 1 1 30%;
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* 名簿リスト */
.union-office__list.is-loading {
  opacity: 0.5;
  transition: opacity 0.3s;
}

/* 支部グループ（見出し + カードグリッド） */
.officer-group {
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .officer-group {
    margin-bottom: 40px;
  }
}

.officer-group__branch {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d5d5d5;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .officer-group__branch {
    margin-bottom: 16px;
    font-size: 18px;
  }
}

/* 役員カードグリッド */
.officer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 16px;
  list-style: none;
}

@media (max-width: 1080px) {
  .officer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .officer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 12px;
  }
}

@media (max-width: 600px) {
  .officer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.officer-card {
  text-align: center;
}

.officer-card__photo {
  margin: 0 auto 12px;
  aspect-ratio: 1 / 1;
  background: #e4e4e4;
  border-radius: 50%;
  overflow: hidden;
}

.officer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .officer-card__photo {
    margin-bottom: 8px;
  }
}

.officer-card__role {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.officer-card__name {
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .officer-card__role {
    font-size: 12px;
  }

  .officer-card__name {
    font-size: 14px;
  }
}

.union-empty {
  padding: 40px 0;
  font-size: 16px;
}

.union-office__side {
  position: sticky;
  top: 124px;
}

/* サイドバー：年度アーカイブ */
.union-office__side-ttl {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  font-size: 18px;
  font-weight: 700;
}

.union-office__years {
  display: grid;
  gap: 8px;
  list-style: none;
}

.union-office__year {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-light);
  border: none;
  border-radius: 5px;
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: clamp(15px, 1.04vw, 20px);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

.union-office__year:hover {
  background: #ececec;
}

.union-office__year.is-active {
  background: var(--green);
  color: var(--white);
}

.union-office__year.is-active:hover {
  background: var(--green);
  opacity: 0.9;
}

.union-office__side-empty {
  font-size: 14px;
  color: var(--gray);
}

/* 会員ログイン */
.login {
  padding: 80px 0 120px;
}

@media (max-width: 600px) {
  .login {
    padding: 48px 0 72px;
  }
}

.login__box {
  max-width: 480px;
  margin: 0 auto;
}

.login__lead {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

@media (max-width: 600px) {
  .login__lead {
    font-size: 14px;
  }
}

.login__error {
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #fdecea;
  border-radius: 8px;
  color: var(--red);
  font-size: 14px;
  text-align: center;
}

.login__field {
  margin-bottom: 24px;
}

.login__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.login__input {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  transition: 0.3s;
}

.login__input:focus {
  border-color: var(--green);
  outline: none;
}

.login__btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--green);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.login__btn:hover {
  opacity: 0.85;
}

/* 組合サービス（見舞金などの表ページ） */
.svc-lead {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 600px) {
  .svc-lead {
    font-size: 14px;
    line-height: 1.9;
  }
}

.svc-block {
  margin-top: 64px;
}

@media (max-width: 600px) {
  .svc-block {
    margin-top: 48px;
  }
}

.svc-subhead {
  margin-bottom: 24px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.4;
}

/* 見出し直下に .fs__bar を流用（margin-top: 16px はそのまま活かす） */
.svc-subhead:has(+ .fs__bar) {
  margin-bottom: 0;
}

.svc-subhead+.fs__bar {
  margin-bottom: 24px;
}

.svc-text {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 600px) {
  .svc-text {
    font-size: 14px;
  }
}

/* データテーブル（横スクロール対応） */
.m-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.m-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.m-table th,
.m-table td {
  padding: 16px;
  border: 1px solid #cbcbcb;
  font-size: 16px;
  line-height: 1.8;
  vertical-align: middle;
}

.m-table th {
  background: var(--green-pale);
  font-weight: 700;
  text-align: center;
}

.m-table td {
  text-align: center;
}

@media (max-width: 600px) {

  .m-table th,
  .m-table td {
    padding: 12px;
    font-size: 14px;
  }
}

/* 特別傷病見舞金テーブル：区分列（区分 / 行見出し）を薄いグレーに */
.m-table--center thead tr:first-child th:first-child,
.m-table--center tbody th {
  width: fit-content;
  width: 280px;
  background: var(--gray-light);
}

/* 明細テーブル（種別 / 条件 / 備考） */
.m-table--detail td {
  text-align: left;
}

.m-table--detail td:first-child {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

/* 種別列（種別 / 行ラベル）を薄いグレーに */
.m-table--detail thead th:first-child,
.m-table--detail tbody td:first-child {
  width: fit-content;
  width: 280px;
  font-weight: 700;
  background: var(--gray-light);
}

/* こくみん共済coop慶弔共済テーブル：縦書きラベル / 種別の強調 / 条件の左寄せ */
.m-table .m-table__vert {
  width: 56px;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-weight: 700;
  text-align: start;
  background: var(--gray-light);
}

.m-table .m-table__type {
  white-space: nowrap;
  font-weight: 700;
  background: var(--gray-light);
}

.m-table .m-table__deg {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 32px;
  padding-right: 32px;
  white-space: nowrap;
  text-align: left;
  background: var(--gray-light);
}

.m-table .m-table__amount {
  padding-left: 32px;
  padding-right: 32px;
  white-space: nowrap;
}

.m-table td.m-table__cond {
  width: 100%;
  text-align: left;
}

.m-table th.m-table__th-gray {
  background: var(--gray-light);
}

/* 金額リスト（ラベル + 金額を横並び表示） */
.svc-amount {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 16px;
  row-gap: 8px;
  align-items: baseline;
}

.svc-amount dt,
.svc-amount dd {
  margin: 0;
  font-weight: 400;
  line-height: 1.8;
  white-space: nowrap;
}

/* PDF申請書ダウンロードリンク */
.svc-note {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 600px) {
  .svc-note {
    font-size: 13px;
    line-height: 1.9;
  }
}

.svc-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.svc-download:hover {
  opacity: 0.7;
}

.svc-download__icon {
  display: inline-flex;
  width: 22px;
}

.svc-download__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy__title {
  font-size: clamp(16px, 1.25vw, 24px);
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}

.policy__content .wp-block-heading {
  font-size: clamp(15px, 1.04vw, 20px);
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .policy__content .wp-block-heading {
    font-size: 18px;
  }
}

.policy__content .wp-block-spacer {
  height: 40px !important;
}

.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}

.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
}

/* お問い合わせフォーム関連は assets/css/contact.css に分離（CF7 ショートコードを含むページのみ読込） */

/* パンくずリスト（シンプル） */
.breadcrumb {
  font-size: 13px;
  line-height: 1.6;
  padding: 16px 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
}

.breadcrumb__link {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb__link:hover {
  color: #000;
}

.breadcrumb__current {
  color: #999;
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

/*# sourceMappingURL=main.css.map */