@charset "UTF-8";
/*
scss/
  _settings.scss   // 変数・mixin
  _base.scss       // reset, タイポ, レイアウトhelpers, A11y, WP補助, motion/print
  _components.scss // ボタン/カード/フォーム/ナビ(PC/SP出し分け含む)
  style.scss       // エントリ（@useだけ）
*/
/* ブレイクポイント */
/* font-size clamp */
/*
scss/
  _settings.scss   // 変数・mixin
  _base.scss       // reset, タイポ, レイアウトhelpers, A11y, WP補助, motion/print
  _components.scss // ボタン/カード/フォーム/ナビ(PC/SP出し分け含む)
  style.scss       // エントリ（@useだけ）
*/
/* Reset / Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "YuGothic", Meiryo, sans-serif;
  /* ブラウザの疑似ボールド/疑似イタリックを無効化（用意したウェイトだけ使う） */
  font-synthesis-weight: none;
  font-synthesis-style: none;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  background: #fff;
  color: #fff;
  color: #2b2927;
  letter-spacing: 0.2rem;
}
body {
  font-size: 13px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

a {
  color: #00b74a;
  text-decoration: inherit;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid #5b9aff;
  outline-offset: 2px;
}

/* Dark mode（任意）
@media (prefers-color-scheme: dark){
  body{ background:#0b0d11; color:#f5f7fb; }
}
*/
/* 自動ダーク化の影響を受けにくくする */
:root {
  color-scheme: only light;
}

/* 事故防止のベースカラーを必ず明示 */
html, body {
  background-color: #fff;
  color: #2b2927; /* サイトの本文既定色に合わせてOK */
}

/* Layout helpers */
.contentsWrap, .footerWrap {
  max-width: calc(1000px + 2 * 20px);
  padding-inline: 20px;
  margin-inline: auto;
}

.contentsWrap {
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  .contentsWrap {
    margin-bottom: 6em;
  }
}

/* ===== Noto Sans JP（日本語）===== */
/* ===== Noto Sans JP（日本語）===== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-400.woff2") format("woff2"); /* ← woff2 */
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
/* ===== Roboto（英数）===== */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-400.woff2") format("woff2"); /* ← woff2 に修正 */
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-700.woff2") format("woff2"); /* ← ファイル名/余計な d と // を修正 */
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
/* Typography */
h1, h2, h3, h4 {
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h3 {
  font-size: clamp(16px, 1.6vw, 22px);
}

p {
  margin: 0 0 1em;
}

b, strong {
  font-weight: 700;
}

/* 英数用（明示クラス） */
.latin,
.en {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums; /* 数字の桁揃え。不要なら削除OK */
}

/* 数字だけに使いたいときの補助クラス */
.digits {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em; /* 見栄え調整。不要なら削除OK */
}

:lang(en) {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

/* ===== Utilities: 表示切替 ===== */
/* デフォルトは非表示 → 対応ブレイクでだけ表示する方式 */
/* ブロック要素用（div, img など） */
.sp-only, .tab-only, .pc-only {
  display: none !important;
}

@media (max-width: calc(768px - 0.02px)) {
  .sp-only {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .tab-only {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .pc-only {
    display: block !important;
  }
}
/* インライン用（<br> など） */
.sp-only-inline, .tab-only-inline, .pc-only-inline {
  display: none !important;
}

@media (max-width: calc(768px - 0.02px)) {
  .sp-only-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .tab-only-inline {
    display: inline !important;
  }
}
@media (min-width: 1024px) {
  .pc-only-inline {
    display: inline !important;
  }
}
/* margin調整 */
.mb0 {
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .mb0 {
    margin-bottom: 0 !important;
  }
}

.mb6 {
  margin-bottom: 6em !important;
}
@media (min-width: 768px) {
  .mb6 {
    margin-bottom: 6em !important;
  }
}

/* テキストalign */
.alCent {
  text-align: center !important;
}

/* Accessibility helpers */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 8px;
  top: 8px;
  z-index: 9999;
  padding: 0.5em 0.8em;
  border-radius: 8px;
  background: #000;
  color: #fff;
  transform: translateY(-150%);
  transition: 0.2s;
}
.skip-link:focus {
  transform: none;
}

/* WP既定クラスの下支え */
.alignwide {
  width: min(100%, 1100px + 2 * 20px);
  margin-inline: auto;
}

.alignfull {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text, figcaption {
  font-size: clamp(13px, 0.9vw, 14px);
  color: #666;
}

.wpcf7-spinner {
  display: none;
}

/* Motion / Print */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  nav, .btn, .no-print {
    display: none !important;
  }
  a {
    text-decoration: underline;
  }
}
/*
scss/
  _settings.scss   // 変数・mixin
  _base.scss       // reset, タイポ, レイアウトhelpers, A11y, WP補助, motion/print
  _components.scss // ボタン/カード/フォーム/ナビ(PC/SP出し分け含む)
  style.scss       // エントリ（@useだけ）
*/
/* ローディング */
#siteRoot {
  opacity: 0;
  transition: opacity 1s ease;
}

/* ローディング本体は常に見える（親のopacityに依存しない設計） */
#loading {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.5s ease, visibility 1.5s ease;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .loadingLogo img {
  width: 180px;
  height: auto;
  animation: loadingPulse 1.5s ease-in-out infinite;
  /* 白→黒の簡易変換を使っている場合 */
  /* filter: brightness(0) saturate(100%); */
}

@keyframes loadingPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.95);
  }
}
/* ローディング終了後に本体を表示 */
body.siteLoaded #siteRoot {
  opacity: 1;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6em 3em 0.8em 3em;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #00b74a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease, box-shadow 0.2s ease;
  letter-spacing: 0.2rem;
}
.btn {
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .btn {
    font-size: 19px;
    line-height: 1;
  }
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: 3px solid #5b9aff;
  outline-offset: 3px;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media (min-width: 430px) {
  .btn {
    width: auto;
  }
}

/* バリエーション（必要なものだけ） */
.btn--ghost {
  background: transparent;
  color: #2b2927;
  border-color: #e5e7eb;
  box-shadow: none;
}

.btn--invert {
  background: #fff;
  color: #00b74a;
  width: auto;
} /* 写真上で使う白ボタン */
.btn--arrow::after, .btn--arrow--small::after {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 1em;
  margin: auto;
  inline-size: 1em;
  block-size: 1em;
  transform: translateY(1px);
  /* 矢印はCSSマスク（色は currentColor） */
  background: currentColor;
  -webkit-mask: url("../img/chevron-right.svg") no-repeat 50% 50%/100% 100%;
  mask: url("../img/chevron-right.svg") no-repeat 50% 50%/100% 100%;
}

.btn--small {
  padding: 0.3em 2em 0.4em 1em;
}
.btn--small {
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .btn--small {
    font-size: 16px;
    line-height: 1;
  }
}

.btn--arrow--small::after {
  right: 0.5em;
}

/* 動きが苦手な環境の配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btnInput {
  display: inline-block;
  width: auto;
  padding: 1em 3em 1em 3em;
}
.btnInput {
  font-size: 19px;
  line-height: 1;
}
@media (min-width: 768px) {
  .btnInput {
    font-size: 23px;
    line-height: 1;
  }
}

/* Cards */
.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.card > img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Forms */
input, select, textarea, button {
  font: inherit;
  color: inherit;
}

input, select, textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: transparent;
}

button {
  cursor: pointer;
}

/* ==== Navigation（SP＝ドロワー／PC＝ホバー） ==== */
/* 子ULは hidden の時だけ非表示（SP運用） */
#primary-nav ul[hidden] {
  display: none;
}

/* 親UL（レベル0）＝横並び */
#primary-nav > ul.nav-root {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* 子UL（レベル1以降）＝縦並び */
#primary-nav ul.nav-sub {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

/* 親・子の文字サイズ（必要に応じて調整） */
#primary-nav > ul.nav-root > li > :where(a, span) {
  font-size: clamp(19px, 1.32vw, 20px);
  font-weight: 600;
}

#primary-nav ul.nav-sub > li > :where(a, span) {
  font-size: clamp(16px, 1.11vw, 17px);
  font-weight: 600;
}

/* ===== PC（1024px～）：ホバーで開く＋アニメ、ボタンは非表示 ===== */
@media (min-width: 1024px) {
  #menu-toggle {
    display: none;
  }
  #primary-nav {
    display: block !important;
  }
  #primary-nav button[aria-controls] {
    display: none !important;
  } /* 小ボタンを消す */
  /* 位置と初期状態（displayは使わず opacity/transform で制御） */
  #primary-nav > ul.nav-root > li {
    position: relative;
  }
  #primary-nav li > ul.nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    z-index: 50;
    /* 見た目はお好みで */
    /* background:#fff; border:1px solid var(--border); border-radius:8px; */
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    display: block; /* hidden を上書き（PCではJSでhidden使わない） */
  }
  /* “開いた状態”（JSが .is-open を付与／またはキーボードで focus-within） */
  #primary-nav > ul.nav-root > li.is-open > ul.nav-sub,
  #primary-nav li:focus-within > ul.nav-sub {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
  }
  /* テキスト→子UL移動の隙間ガード（必要なら高さを調整） */
  #primary-nav > ul.nav-root > li.has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
}
/* ===== SP（～1023.98px）：JSで hidden 開閉 ===== */
@media (max-width: 1023.98px) {
  #primary-nav button[aria-controls] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: none;
    border: 0;
    padding: 0;
    inline-size: 28px;
    block-size: 28px;
  }
}
/* ==== 新規Navigation ==== */
/* ==== グローバルナビ ==== */
.globalNav {
  display: none;
}
@media (min-width: 1220px) {
  .globalNav {
    display: flex;
    gap: 3em;
    position: absolute;
    top: 18px;
    right: 40px;
  }
}

/* SP用ドロワー */
.drawerNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 380px;
  height: 100%;
  background: #00b74a;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: 2rem 1.5rem 2rem 1.5rem;
  box-sizing: border-box;
  overflow-y: auto;
  color: #fff;
  text-align: center;
  z-index: 2000;
}
@media (min-width: 768px) {
  .drawerNav {
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
}

body.nav-open .drawerNav {
  transform: translateX(0);
  opacity: 1;
}

.drawerNavLogo {
  display: block;
  width: 25%;
  margin: 0px auto 2rem auto;
}
@media (min-width: 768px) {
  .drawerNavLogo {
    margin: 0px auto 1.5rem auto;
  }
}

.drawerNavMenu {
  margin: 0px auto 0px auto;
  padding: 0;
  font-size: clamp(16px, 1.11vw, 17px);
}
.drawerNavMenu li {
  list-style: none;
  text-align: center;
  padding: 6px 0px;
}
.drawerNavMenu a {
  transition: 0.3s;
  color: #fff;
}
@media (min-width: 768px) {
  .drawerNavMenu li {
    padding: 10px 0px;
  }
}

.parentMenues, .childMenues {
  padding: 0;
}

.parentMenu, .childMenu {
  list-style: none;
}

.parentMenues {
  font-size: clamp(19px, 1.32vw, 20px);
}
.parentMenues a, .parentMenues span {
  color: #2b2927;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.parentMenues a:hover, .parentMenues span:hover {
  color: #00b74a;
}
@media (min-width: 1024px) {
  .parentMenues {
    display: flex;
    justify-content: left;
    gap: 2em;
  }
}

.topHeader .parentMenues a, .topHeader .parentMenues span {
  color: #fff;
}

.parentMenu:hover > .childMenues {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .parentMenu {
    position: relative;
  }
}

.childMenues {
  margin-top: 5px;
  margin-left: -12px;
  font-size: clamp(13px, 0.9vw, 14px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 1000;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .childMenues {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    min-width: 180px;
  }
}

.childMenu {
  padding: 7px 12px;
}

.topHeader .childMenu a, .topHeader .childMenu span {
  color: #2b2927;
}
.topHeader .childMenu a:hover {
  color: #00b74a;
}

/* ==== ハンバーガーメニュー ==== */
.burgerMenu {
  position: fixed;
  top: -24px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  background-color: #00b74a;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3000;
}
.burgerMenu.visible {
  opacity: 1;
  pointer-events: auto;
}
.burgerMenu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burgerMenu.active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}
@media (max-width: 1219px) {
  .burgerMenu {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 768px) {
  .burgerMenu {
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
  }
}

/* モーダルオープン時に消す処理 */
html.modal-open .burgerMenu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.burgerMenuWrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.burgerMenuText {
  position: absolute;
  bottom: 18px;
  left: 28px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  .burgerMenuText {
    bottom: 20px;
    left: 0px;
    right: 0px;
    letter-spacing: 0.2rem;
  }
}

.burgerMenuLines {
  position: absolute;
  display: block;
  top: 40px;
  left: 32px;
  text-align: center;
}
.burgerMenuLines span {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background-color: #fff;
  width: 28px;
  height: 3px;
  border-radius: 12px;
  transition: 0.3s;
}
.burgerMenuLines span:last-child {
  top: 12px;
}
@media (min-width: 768px) {
  .burgerMenuLines {
    top: 30px;
    left: 0px;
    right: 0px;
    margin: auto;
  }
  .burgerMenuLines span {
    width: 36px;
    height: 3px;
  }
}

/* ==== ナビ用オーバーレイ ==== */
.navOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1;
}
body.nav-open .navOverlay {
  opacity: 1;
  visibility: visible;
}

/* nav-open 時に表示 */
body.nav-open .navOverlay {
  opacity: 1;
  visibility: visible;
}

/* SPビュー */
@media (max-width: 1023px) {
  .globalNav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%); /* 初期状態＝右に隠す */
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2000;
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }
  /* nav-open の時だけ出す */
  body.nav-open .globalNav {
    transform: translateX(0);
    opacity: 1;
  }
}
/* 1) 共通部品：ヘッダー/ナビ／フッター */
.secondHeader, .topHeader {
  position: relative;
  width: 100%;
  min-height: 140px;
  box-sizing: border-box;
  padding: 20px 14px 0px 14px;
  background: url("../img/headerBg.png") #fff;
  background-repeat: repeat-x;
  background-position: center 26px;
  background-size: auto 140px;
  z-index: 1000;
}
@media (min-width: 768px) {
  .secondHeader, .topHeader {
    min-height: 220px;
    padding: 20px 40px 0px 40px;
    background-position: center 12px;
    background-size: auto 234px;
  }
}

.topHeader {
  background: none;
}

.secondBird {
  display: none;
  position: absolute;
  top: 96px;
  right: 26px;
  width: 40px;
  height: auto;
}
@media (min-width: 768px) {
  .secondBird {
    display: block;
    top: 130px;
    right: 140px;
    width: 60px;
    height: auto;
  }
}

.secondHeaderWrap {
  display: flex;
  justify-content: space-between;
}

.secondHeaderLogo, .topHeaderLogo {
  display: block;
  width: 264px;
}
@media (min-width: 768px) {
  .secondHeaderLogo, .topHeaderLogo {
    width: 349px;
    height: 61px;
  }
}

.topHeaderLogo {
  display: none;
}
@media (min-width: 768px) {
  .topHeaderLogo {
    display: block;
  }
}

.secondHeaderTitle {
  margin: 20px 0px 0px 0px;
  color: #fff;
  letter-spacing: 0.2rem;
}
.secondHeaderTitle {
  font-size: 33px;
  line-height: 2;
}
@media (min-width: 768px) {
  .secondHeaderTitle {
    font-size: 57px;
    line-height: 2;
  }
}
@media (min-width: 768px) {
  .secondHeaderTitle {
    letter-spacing: 0.4rem;
  }
}

.navigationWrap {
  margin-top: 15px;
}

.navigation {
  list-style-type: none;
}
.navigation li {
  color: #2b2927;
  font-size: clamp(19px, 1.32vw, 20px);
  font-weight: bold;
  cursor: pointer;
}
.navigation li a {
  color: #2b2927;
  font-size: clamp(19px, 1.32vw, 20px);
  font-weight: bold;
}
.navigation li a:hover {
  text-decoration: none;
}

/* パンくず */
.breadCrumbs {
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .breadCrumbs {
    padding: 15px 40px;
    margin-bottom: 1em;
  }
}

.breadCrumbsList {
  padding: 0px;
  font-size: clamp(13px, 0.9vw, 14px);
}
.breadCrumbsList li {
  display: inline;
  margin-right: 8px;
  list-style-type: none;
}
.breadCrumbsList li a {
  color: #2b2927;
  transition: 0.3s;
}
.breadCrumbsList li a:hover {
  color: #00b74a;
  text-decoration: none;
}
@media (min-width: 768px) {
  .breadCrumbsList {
    display: flex;
  }
  .breadCrumbsList li {
    margin-right: 16px;
  }
}

/* フッター */
.footer {
  width: 100%;
  padding: 60px 20px 50px 20px;
  background-image: url("../img/footerBg.webp");
  background-color: #cdf1f9;
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100vh;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 40px 50px 40px;
    background-size: auto;
  }
}

.footerColorWhite {
  background-color: #fff;
}

.footerWrap {
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .footerWrap {
    display: flex;
    justify-content: space-between;
  }
}

.footerInner {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footerInner {
    width: 46%;
    text-align: left;
  }
}

.footerLogo {
  display: block;
  margin: 0 auto 30px auto;
}
.footerLogo img {
  margin: auto;
}
@media (min-width: 768px) {
  .footerLogo {
    width: 77%;
    margin: 0 0 26px 0;
  }
  .footerLogo img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}

.footerSNS {
  display: flex;
  width: 265px;
  margin: 0 auto 30px auto;
  padding: 0;
}
.footerSNS li {
  width: 30px;
  margin-right: 20px;
  list-style-type: none;
  text-align: left;
}
.footerSNS li a {
  transition: 0.2s;
}
.footerSNS li a:hover {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .footerSNS {
    width: 80%;
    margin: 20px 0 40px 0;
  }
  .footerSNS li {
    width: 40px;
    margin-right: 30px;
  }
  .footerSNS li a {
    display: block;
  }
  .footerSNS li a img {
    width: 40px;
    height: auto;
  }
}

.fotterNavigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 265px;
  margin: auto;
  padding: 0;
}
.fotterNavigation li {
  width: 50%;
  margin-bottom: 20px;
  list-style-type: none;
  text-align: left;
}
.fotterNavigation li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .fotterNavigation {
    width: 80%;
    margin: 0;
  }
  .fotterNavigation li {
    margin-bottom: 26px;
  }
}

.footerCopyright {
  display: block;
  margin: auto;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
.footerCopyright {
  font-size: 13px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footerCopyright {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* 2) 共通部品：ボタン/カード/フォーム … */
.introduction, .readingBox, .topServicesIntroduction {
  border-radius: 12px;
  padding: 20px;
  margin: 0 0 1.5em 0;
  background-color: #f9f7ed;
  text-align: center;
}
.introduction, .readingBox, .topServicesIntroduction {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 768px) {
  .introduction, .readingBox, .topServicesIntroduction {
    font-size: 19px;
    line-height: 2.3;
  }
}
.introduction p:last-child, .readingBox p:last-child, .topServicesIntroduction p:last-child {
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .introduction, .readingBox, .topServicesIntroduction {
    margin: 0 0 3em 0;
    padding: 40px;
  }
}

.readingBox {
  text-align: left;
}
.readingBox {
  font-size: 13px;
  line-height: 2;
}
@media (min-width: 768px) {
  .readingBox {
    font-size: 16px;
    line-height: 2;
  }
}
.readingBox p {
  margin-bottom: 1em;
}
.readingBox p:last-child {
  margin-bottom: 0;
}
.readingBox img {
  border-radius: 12px;
  margin: 0 0 1.5em 0;
}
@media (min-width: 768px) {
  .readingBox img {
    margin: 0 0 2em 0;
  }
}

/*　リスト　*/
.ulList {
  margin-bottom: 3em;
  padding: 0;
}
.ulList li {
  position: relative;
  list-style: none;
  margin: 0 0 1em 0;
  padding: 0 0 1em 2em;
  border-bottom: 1px dotted #2b2927;
}
.ulList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: #7ca467;
}
@media (min-width: 768px) {
  .ulList li {
    padding: 0 0 0.5em 2em;
  }
  .ulList li::before {
    top: 0.8em;
  }
}

.dlList {
  margin-bottom: 3em;
}
.dlList dt {
  border-bottom: 3px solid #31a787;
  padding: 0px 0px 5px 0px;
  font-weight: 700;
}
.dlList dd {
  margin: 0 0 1em 0;
  padding: 5px 0px 0px 0px;
}
@media (min-width: 768px) {
  .dlList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .dlList dt {
    width: 16%;
    margin-bottom: 0.3em;
    padding: 15px 10px;
  }
  .dlList dd {
    width: 83%;
    margin: 0 0 0.3em 0;
    padding: 15px 10px;
    border-bottom: 4px solid #f9f7ed;
  }
}

/*　下付き　*/
sub {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(13px, 0.9vw, 14px);
  color: #d2896e;
}

/*　注釈テキスト　*/
.optionalText {
  font-size: clamp(13px, 0.9vw, 14px);
  line-height: 1.8em;
  color: #666;
}

.subHead {
  color: #d2896e;
}

/*　オプションテキストスタイル　*/
.brownText {
  color: #e2a037;
}

.redText {
  color: #d2896e;
}

.fs19-16 {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 768px) {
  .fs19-16 {
    font-size: 19px;
    line-height: 2;
  }
}

/* 写真入りテキスト */
@media (min-width: 1024px) {
  .photoLeft, .photoRight {
    margin-bottom: 0.6em;
    display: flex;
    justify-content: space-between;
  }
  .photoLeft figure, .photoRight figure {
    width: 38%;
    height: auto;
  }
  .photoLeft p, .photoRight p {
    width: 58%;
  }
}

@media (min-width: 1024px) {
  .photoRight {
    flex-direction: row-reverse;
  }
}

/* 背景色wrap */
.bgBeige {
  background-color: #f9f7ed;
  padding: 2em 0 0 0;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .bgBeige {
    padding: 2em 0 0 0;
    margin-bottom: 3em;
  }
}

/* ボタンwrap */
.btnWrap {
  text-align: center;
  padding: 1em 0 3em 0;
}
.btnWrap a {
  margin: auto;
}
@media (min-width: 768px) {
  .btnWrap {
    padding: 0 0 4em 0;
  }
}

/* 3) ページ固有（末尾に“pages”セクションとしてまとめる） */
/* --- pages: home (トップ) --- */
.heroSlider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  overflow: hidden;
  z-index: 0;
}
.heroSlider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 10s ease-in-out;
}
.heroSlider .slide.active {
  opacity: 1;
  transform: scale(1.1);
}
.heroSlider .slide.firstActive {
  opacity: 1;
  transform: scale(1.1);
  transition: transform 10s ease-in-out;
}
.heroSlider .heroOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.heroText {
  position: absolute;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px 20px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%); /* 横方向だけ中央寄せ */
  color: #fff;
  z-index: 2;
}
@media (min-width: 768px) {
  .heroText {
    top: 150px;
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1080px) {
  .heroText {
    justify-content: space-between;
    align-items: normal;
    width: calc(1000px + 20px * 2);
  }
}

.heroTextLead {
  position: relative;
  margin: 0 0 0 20px;
  letter-spacing: 0.2rem;
  font-size: clamp(28px, 1.94vw, 29px);
  line-height: 1.7;
}
.heroTextLead:before {
  position: absolute;
  top: -20px;
  left: 220px;
  content: "";
  width: 60px;
  height: 67px;
  background: url("../img/bird02.webp") no-repeat center center;
}
@media (min-width: 768px) {
  .heroTextLead {
    font-size: clamp(40px, 2.78vw, 41px);
    margin: 0;
  }
  .heroTextLead:before {
    top: 20px;
    right: 40px;
    left: auto;
  }
  .heroTextLead:after {
    position: absolute;
    bottom: -140px;
    left: -40px;
    content: "";
    width: 87px;
    height: 98px;
    background: url("../img/bird01.webp") no-repeat center center;
  }
}
@media (min-width: 960px) {
  .heroTextLead {
    font-size: clamp(57px, 3.96vw, 58px);
    line-height: 1.5;
  }
  .heroTextLead:before {
    top: 60px;
    right: 40px;
    left: auto;
  }
  .heroTextLead:after {
    position: absolute;
    bottom: -100px;
    left: -20px;
  }
}
@media (min-width: 1260px) {
  .heroTextLead {
    font-size: clamp(57px, 3.96vw, 58px);
    line-height: 1.5;
  }
  .heroTextLead:after {
    top: -36px;
    left: -116px;
  }
}

.heroTextLogo {
  display: block;
  width: 160px;
  height: 284px;
  background: url("../img/topHeroLogoSP.svg") no-repeat center center;
  background-size: contain;
  margin: 0 0 40px 0;
}
.heroTextLogo span {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 768px) {
  .heroTextLogo {
    width: 200px;
    height: 305px;
    margin: 0px;
    background: url("../img/topHeroLogo.svg") no-repeat center center;
    background-size: contain;
  }
}
@media (min-width: 960px) {
  .heroTextLogo {
    margin: -20px 0px 0px 0px;
    width: 255px;
    height: 389px;
  }
}

.topLead {
  position: relative;
  margin-top: 430px;
  padding: 100px 0 60px 0;
  min-height: 600px;
  box-sizing: border-box;
  background: url("../img/topBg01SP.webp");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 90%;
  z-index: 10;
  text-align: center;
}
.topLead .topLeadImgs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 3em;
}
.topLead img {
  width: 46%;
}
.topLead img.topLeadImg01 {
  margin-top: 20px;
}
.topLead img.topLeadImg02 {
  margin-top: -40px;
}
.topLead img.topLeadImg03 {
  margin-top: -20px;
  width: 54%;
}
@media (min-width: 768px) {
  .topLead {
    margin-top: 300px;
    padding: 180px 0 60px 0;
    background: url("../img/topBg01.webp");
    background-repeat: repeat-x;
    background-position: top center;
    background-size: auto 100%;
  }
  .topLead .topLeadImgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-top: 3em;
  }
  .topLead img {
    width: 26%;
  }
  .topLead img.topLeadImg01, .topLead img.topLeadImg02, .topLead img.topLeadImg03 {
    margin: 0;
    width: 26%;
  }
}
@media (min-width: 1240px) {
  .topLead .topLeadImgs {
    display: block;
  }
  .topLead img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .topLead img.topLeadImg01 {
    width: auto;
    transform: translate(-50%, -50%) translate(-460px, -40px);
  }
  .topLead img.topLeadImg02 {
    width: auto;
    transform: translate(-50%, -50%) translate(460px, 40px);
  }
  .topLead img.topLeadImg03 {
    width: auto;
    transform: translate(-50%, -50%) translate(-340px, 260px);
  }
}

.topLeadText {
  margin: 0 20px 2em 20px;
  color: #fff;
  letter-spacing: 0.2rem;
}
.topLeadText {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .topLeadText {
    font-size: 19px;
    line-height: 2.4;
  }
}
@media (min-width: 768px) {
  .topLeadText {
    letter-spacing: 0.4rem;
  }
}

.topForestry {
  position: relative;
  z-index: 3;
  background: #d2896e;
  margin-top: -180px;
  padding: 140px 0px 100px 0px;
  background: url("../img/topForestryBg.webp") #efecdc;
  background-position: top left;
  background-repeat: repeat;
  background-size: auto;
}
@media (min-width: 768px) {
  .topForestry {
    margin-top: -100px;
    padding: 100px 0px 60px 0px;
    background-repeat: repeat-x;
    background-size: auto 100%;
  }
}

.topForestryWrap {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .topForestryWrap {
    justify-content: space-between;
    flex-direction: row;
  }
}

.topForestryPresident {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.topForestryPresident img {
  border-radius: 9999px;
  width: 60%;
  height: auto;
  margin: 0 auto 1em auto;
}
@media (min-width: 768px) {
  .topForestryPresident {
    background: none;
    padding: 100px 0p 0px 0px;
    width: 28%;
  }
  .topForestryPresident img {
    width: 100%;
    margin: 0 0 1em 0;
  }
}
@media (min-width: 1024px) {
  .topForestryPresident {
    padding: 160px 0px 0px 0px;
    width: 30%;
  }
  .topForestryPresident img {
    width: 220px;
    height: 220px;
    margin: auto;
  }
}

.topForestryPresidentName {
  display: inline-block;
  margin: 0 auto 1em auto;
  padding: 10px 20px;
  border-radius: 12px;
  background-color: #d2896e;
  color: #fff;
  font-size: clamp(16px, 1.11vw, 17px);
  line-height: 1.3;
  text-align: center;
}
.topForestryPresidentName span {
  font-size: clamp(19px, 1.32vw, 20px);
  margin-left: 0.5em;
}
@media (min-width: 768px) {
  .topForestryPresidentName {
    display: block;
    margin: 0 0 1em 0;
    padding: 10px 16px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .topForestryPresidentName {
    position: absolute;
    top: 120px;
    right: -40px;
    display: inline-block;
    margin: 0;
  }
  .topForestryPresidentName span {
    margin: 0;
  }
}

.topForestryPresidentMessage {
  display: block;
  position: relative;
  text-align: center;
}
.topForestryPresidentMessage p {
  margin-bottom: 1em;
  font-size: clamp(16px, 1.11vw, 17px);
}
@media (min-width: 768px) {
  .topForestryPresidentMessage {
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    text-align: left;
  }
  .topForestryPresidentMessage:before {
    position: absolute;
    content: "";
    top: -30px;
    left: 100px;
    height: 37px;
    width: 30px;
    background: #fff;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .topForestryPresidentMessage p {
    margin-bottom: 0.5em;
  }
}
@media (min-width: 1024px) {
  .topForestryPresidentMessage {
    position: absolute;
    top: 360px;
    left: -20px;
    display: inline-block;
  }
}

.topForestryText {
  width: 100%;
  margin: 0 0 3em 0;
  text-align: center;
}
.topForestryText h4 {
  margin-bottom: 0rem;
}
.topForestryText h4 {
  font-size: 23px;
  line-height: 2.3;
}
@media (min-width: 768px) {
  .topForestryText h4 {
    font-size: 33px;
    line-height: 1.6;
  }
}
.topForestryText h4 span {
  color: #d2896e;
}
.topForestryText h4 span {
  font-size: 33px;
  line-height: 2.3;
}
@media (min-width: 768px) {
  .topForestryText h4 span {
    font-size: 40px;
    line-height: 1.6;
  }
}
.topForestryText p {
  margin-bottom: 1rem;
}
.topForestryText p {
  font-size: 16px;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .topForestryText p {
    font-size: 19px;
    line-height: 2.2;
  }
}
.topForestryText div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1.5rem;
}
.topForestryText div img {
  width: 45%;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .topForestryText {
    width: 67%;
    margin: 0;
  }
  .topForestryText h4 {
    margin-bottom: 1.5rem;
  }
  .topForestryText p {
    margin-bottom: 3rem;
  }
  .topForestryText div {
    margin-bottom: 3rem;
    flex-wrap: auto;
    justify-content: space-between;
    gap: 0;
  }
  .topForestryText div img {
    width: 31%;
  }
}

.topServices {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
  z-index: 7;
  background: url("../img/topServicesBg02.webp") transparent;
  background-repeat: repeat-x;
  background-position: 63% 100%;
  background-size: auto 140px;
}
.topServices:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80px;
  top: -80px;
  left: 0px;
  right: 0px;
  margin: auto;
  background: url("../img/topServicesBg01.webp") transparent;
  background-repeat: repeat-x;
  background-position: 40% 0%;
  background-size: auto 140px;
  z-index: 6;
}
@media (min-width: 768px) {
  .topServices {
    padding-bottom: 120px;
    background-position: bottom center;
    background-size: auto 240px;
  }
  .topServices:before {
    background-position: top center;
    height: 244px;
    top: -140px;
    background-position: center;
    background-size: auto 100%;
  }
}

.topServicesTitle {
  position: relative;
  display: block;
  z-index: 8;
  margin: 0px auto;
  padding: 0px 20px 30px 20px;
}
.topServicesTitle {
  font-size: 28px;
  line-height: 1;
}
@media (min-width: 768px) {
  .topServicesTitle {
    font-size: 40px;
    line-height: 1;
  }
}
.topServicesTitle:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 37px;
  height: 92px;
  background: url("../img/topServicesTitle01.webp") transparent no-repeat;
  background-size: cover;
}
.topServicesTitle:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 29px;
  height: 63px;
  background: url("../img/topServicesTitle02.webp") transparent no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .topServicesTitle {
    display: inline-block;
    padding: 0px 100px 40px 100px;
  }
  .topServicesTitle:before {
    width: 55px;
    height: 136px;
  }
  .topServicesTitle:after {
    width: 43px;
    height: 95px;
  }
}

.topServicesIntroduction {
  display: block;
  margin-bottom: 2em;
  padding: 14px 20px;
  position: relative;
  z-index: 9;
}
@media (min-width: 768px) {
  .topServicesIntroduction {
    display: inline-block;
    margin-bottom: 5em;
    padding: 14px 80px;
  }
}

.topServicesWrap {
  margin: 0px auto;
}
@media (min-width: 768px) {
  .topServicesWrap {
    display: flex;
    justify-content: space-between;
  }
}

.topServicesCard {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 1em;
  text-align: left;
  color: #2b2927;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
.topServicesCard h5 {
  margin: 0.5em 0 0.3em 0;
}
.topServicesCard h5 {
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .topServicesCard h5 {
    font-size: 19px;
    line-height: 1.8;
  }
}
.topServicesCard img {
  transition: 0.3s;
  border-radius: 12px;
}
.topServicesCard:before {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "1";
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #7ca467;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums; /* 数字の桁揃え。不要なら削除OK */
  z-index: 10;
}
.topServicesCard:before {
  font-size: 28px;
  line-height: 50px;
}
@media (min-width: 768px) {
  .topServicesCard:before {
    font-size: 33px;
    line-height: 70px;
  }
}
.topServicesCard:hover {
  color: #00b74a;
  text-decoration: none;
}
.topServicesCard:hover img {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .topServicesCard {
    width: 47%;
    padding-bottom: 3em;
  }
  .topServicesCard:before {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 1100px) {
  .topServicesCard:before {
    top: -35px;
    left: -35px;
  }
}

@media (min-width: 768px) {
  .topServicesCard01, .topServicesCard03 {
    margin-top: -40px;
  }
}

.topServicesCard02:before {
  left: 10px;
  background-color: #f4b747;
  content: "2";
}
@media (min-width: 1100px) {
  .topServicesCard02:before {
    left: auto;
    right: -35px;
  }
}

.topServicesCard03:before {
  background-color: #d2896e;
  content: "3";
}

.topServicesCard04:before {
  left: 10px;
  background-color: #31a787;
  content: "4";
}
@media (min-width: 1100px) {
  .topServicesCard04:before {
    left: auto;
    right: -35px;
  }
}

.topActivities {
  margin-top: -120px;
  padding-top: 120px;
  padding-bottom: 10px;
  background: url("../img/topActivitiesBg.webp") #f7ead9;
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 108%;
}

@media (min-width: 1024px) {
  .topActivitiesWrap {
    display: flex;
    justify-content: space-between;
  }
}

.topActivitiesText {
  padding-top: 1.5em;
}
.topActivitiesText h4 {
  margin-bottom: 1rem;
}
.topActivitiesText h4 {
  font-size: 23px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .topActivitiesText h4 {
    font-size: 40px;
    line-height: 1.3;
  }
}
.topActivitiesText h4 span {
  color: #e2a037;
}
.topActivitiesText h4 span {
  font-size: 33px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .topActivitiesText h4 span {
    font-size: 48px;
    line-height: 1.3;
  }
}
.topActivitiesText p {
  margin-bottom: 1.5rem;
}
.topActivitiesText p {
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .topActivitiesText p {
    font-size: 19px;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .topActivitiesText {
    width: 100%;
    padding-top: 0;
  }
  .topActivitiesText h4 {
    margin-bottom: 2rem;
  }
  .topActivitiesText h4 span {
    margin-bottom: 3rem;
  }
  .topActivitiesText p {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .topActivitiesText {
    width: 40%;
  }
}

.topActivitiesCards {
  padding: 0;
}
@media (min-width: 768px) {
  .topActivitiesCards {
    padding: 3rem 0px 0px 0px;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .topActivitiesCards {
    width: 56%;
  }
}

.topActivitiesCard {
  display: block;
  align-items: stretch;
  padding: 0px;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  color: #2b2927;
  transition: 0.6s;
}
.topActivitiesCard figure {
  height: 200px;
  border-radius: 0;
  overflow: hidden;
  align-self: stretch;
  margin: 0;
  backface-visibility: hidden;
  contain: paint;
}
.topActivitiesCard figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: transform;
}
.topActivitiesCard div {
  flex: 1 1 auto;
  box-sizing: border-box;
  padding: 10px 20px;
}
.topActivitiesCard div time {
  font-size: clamp(13px, 0.9vw, 14px);
  color: #d2896e;
}
.topActivitiesCard div h5 {
  position: relative;
  margin: 0.5rem 0;
  padding: 0 0 0rem 1.8rem;
}
.topActivitiesCard div h5 {
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .topActivitiesCard div h5 {
    font-size: 19px;
    line-height: 1.8;
  }
}
.topActivitiesCard div h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: #7ca467;
}
.topActivitiesCard div p {
  font-size: 13px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .topActivitiesCard div p {
    font-size: 16px;
    line-height: 1.8;
  }
}
.topActivitiesCard:hover, .topActivitiesCard:focus-visible {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.5);
}
.topActivitiesCard:hover figure img, .topActivitiesCard:focus-visible figure img {
  transform: scale(1.06);
}
@media (min-width: 768px) {
  .topActivitiesCard {
    display: flex;
  }
  .topActivitiesCard figure {
    flex: 0 0 44%;
    display: flex;
    border-radius: 12px 0 0 12px;
  }
  .topActivitiesCard div {
    padding: 20px;
  }
}

/* --- pages: second (汎用セカンド) --- */
/* 見出し関連 */
.contentsHeadingBig, .contentsHeadingBlackBig {
  position: relative;
  min-height: 64px;
  padding: 10px 0 0 60px;
  margin: 0 0 0.5em 0;
  font-weight: 700;
  align-items: center;
}
.contentsHeadingBig, .contentsHeadingBlackBig {
  font-size: 23px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .contentsHeadingBig, .contentsHeadingBlackBig {
    font-size: 40px;
    line-height: 2;
  }
}
.contentsHeadingBig::before, .contentsHeadingBlackBig::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0; /* 縦センター */
  width: 39px; /* アイコン実寸（SP） */
  height: 64px;
  background: url("../img/contentsHeading01.svg") no-repeat left center/100% 100%;
}
@media (min-width: 768px) {
  .contentsHeadingBig, .contentsHeadingBlackBig {
    margin: 0 0 0.7em 0;
    padding: 0 0 0 90px;
  }
  .contentsHeadingBig::before, .contentsHeadingBlackBig::before {
    width: 56px;
    height: 93px;
  }
}

.contentsHeadingBlackBig {
  min-height: auto;
  padding: 0px;
}
.contentsHeadingBlackBig {
  font-size: 23px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contentsHeadingBlackBig {
    font-size: 40px;
    line-height: 1.6;
  }
}
.contentsHeadingBlackBig:before {
  content: none;
}

.contentsHeadingBlue {
  margin: 0 0 0.5em 0;
  color: #31a787;
  font-weight: 700;
}
.contentsHeadingBlue {
  font-size: 19px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .contentsHeadingBlue {
    font-size: 33px;
    line-height: 1.8;
  }
}

.contentsHeadingBlackMid {
  margin: 0 0 0.5em 0;
  color: #2b2927;
  font-weight: 700;
}
.contentsHeadingBlackMid {
  font-size: 19px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .contentsHeadingBlackMid {
    font-size: 33px;
    line-height: 1.8;
  }
}

.contentsHeadingBrown {
  margin: 0 0 1em 0;
  color: #d2896e;
  font-weight: 700;
}
.contentsHeadingBrown {
  font-size: 19px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .contentsHeadingBrown {
    font-size: 28px;
    line-height: 1.8;
  }
}

.contentsHeadingBlack {
  margin: 0 0 1em 0;
  color: #2b2927;
  font-weight: 700;
}
.contentsHeadingBlack {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .contentsHeadingBlack {
    font-size: 23px;
    line-height: 1.8;
  }
}

.contentsHeadingNumb {
  position: relative;
  min-height: 50px;
  padding: 0.3em 0 0 70px;
  margin: 0 0 0.5em 0;
  font-weight: 700;
  align-items: center;
}
.contentsHeadingNumb {
  font-size: 23px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .contentsHeadingNumb {
    font-size: 40px;
    line-height: 2.3;
  }
}
.contentsHeadingNumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0; /* 縦センター */
  width: 50px; /* アイコン実寸（SP） */
  height: 50px;
  border-radius: 999px;
  background: #7ca467;
  color: #fff;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums; /* 数字の桁揃え。不要なら削除OK */
  font-size: clamp(28px, 1.94vw, 29px);
}
@media (min-width: 768px) {
  .contentsHeadingNumb {
    min-height: 70px;
    margin: 0 0 0.7em 0;
    padding: 0 0 0 110px;
  }
  .contentsHeadingNumb::before {
    width: 70px; /* アイコン実寸（SP） */
    height: 70px;
    font-size: clamp(33px, 2.29vw, 34px);
    line-height: 70px;
  }
}

.contentsHeadingNumb01::before {
  content: "1";
  background: #7ca467;
}

.contentsHeadingNumb02::before {
  content: "2";
  background: #f4b747;
}

.contentsHeadingNumb03::before {
  content: "3";
  background: #d2896e;
}

.contentsHeadingNumb04::before {
  content: "4";
  background: #31a787;
}

.contentsHeadingNormal {
  position: relative;
  margin: 0 0 0.5em 0;
  font-weight: 700;
}
.contentsHeadingNormal {
  font-size: 23px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contentsHeadingNormal {
    font-size: 40px;
    line-height: 2.3;
  }
}
@media (min-width: 768px) {
  .contentsHeadingNormal {
    margin: 0 0 0.7em 0;
  }
}

/* CTA */
.cta .contentsWrap {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .cta .contentsWrap {
    margin-bottom: 3em;
  }
}

.ctaTitle {
  position: relative;
  margin: 0em 0 1.4em 0;
  padding: 54px 0 0 0;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ctaTitle {
    margin: 0em 0 2.4em 0;
    padding: 10px 0px 0px;
  }
}

.ctaTitle::before,
.ctaTitle::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 49vw;
  height: 27px;
  transform: translateY(-50%);
  background-repeat: repeat-x;
  background-size: 164px auto;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .ctaTitle::before,
  .ctaTitle::after {
    top: 50%;
    width: calc((100vw - 520px) / 2);
    height: 68px;
    background-size: 418px auto;
  }
}

/* 左腕：中央から左端へ */
.ctaTitle::before {
  left: 0;
  background-image: url("../img/ctaTitleBg.svg");
  background-position: right center; /* 右端から外へ伸びる */
}

/* 右腕：中央から右端へ（反転して使う） */
.ctaTitle::after {
  right: 0;
  background-image: url("../img/ctaTitleBg.svg");
  background-position: right center;
  transform: translateY(-50%) scaleX(-1); /* 水平方向に反転 */
}

.ctaTitleText {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto;
  font-weight: 700;
}
.ctaTitleText {
  font-size: 23px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .ctaTitleText {
    font-size: 40px;
    line-height: 1.3;
  }
}
.ctaTitleText span {
  color: #31a787;
}
.ctaTitleText span {
  font-size: 33px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .ctaTitleText span {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .ctaTitleText {
    width: 520px;
  }
}

.ctaIntroduction {
  margin: 0 0 1.5em 0;
  text-align: center;
}
.ctaIntroduction {
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .ctaIntroduction {
    font-size: 19px;
    line-height: 2;
  }
}
.ctaIntroduction p {
  margin: 0;
}
@media (min-width: 768px) {
  .ctaIntroduction {
    margin: 0 0 3em 0;
  }
}

/* CTAカード　*/
.ctaCardWrap {
  position: relative;
  display: block;
  background-color: #fff;
  background-repeat: repeat-x;
  background-image: url("../img/ctaCardWrapBg.webp");
  background-position: center 280px;
}
@media (min-width: 768px) {
  .ctaCardWrap {
    display: flex;
    justify-content: space-between;
    background-position: center top;
  }
}

.ctaCard {
  position: relative;
  display: block;
  width: calc(100% - 20px);
  background-color: #000;
  overflow: hidden;
  isolation: isolate;
  /* 背景写真（カード内いっぱい／左右に“伸びる”見え方） */
  /* 暗めの被せ */
  /* ホバー/フォーカス時の反応（カード全体がリンク） */
}
.ctaCard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* 横に広い画面でも自然にカバー */
  transform: scale(1);
  transition: transform 0.4s ease;
}
.ctaCard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
}
.ctaCard:hover::before {
  transform: scale(1.05);
}
.ctaCard:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .ctaCard {
    width: 48.5%;
  }
}

.ctaCardLeft {
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 1.6em;
}
.ctaCardLeft::before {
  background-image: url("../img/recruit01.jpg");
}
@media (min-width: 768px) {
  .ctaCardLeft {
    margin-bottom: 0;
  }
}

.ctaCardRight {
  border-radius: 12px 0 0 12px;
  margin-left: 20px;
}
.ctaCardRight::before {
  background-image: url("../img/donation01.webp");
}
@media (min-width: 768px) {
  .ctaCardRight {
    margin-left: 0px;
  }
}

.ctaCardBodyLeft {
  border-radius: 0 12px 12px 0;
}

.ctaCardBodyRight {
  border-radius: 12px 0 0 12px;
}

.ctaCardBodyLeft, .ctaCardBodyRight {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 0px;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .ctaCardBodyLeft, .ctaCardBodyRight {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .ctaCardBodyLeft, .ctaCardBodyRight {
    width: 42vw;
  }
}

.ctaCardLead {
  margin-bottom: 0.4em;
}
.ctaCardLead {
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .ctaCardLead {
    font-size: 19px;
    line-height: 2;
  }
}
@media (min-width: 768px) {
  .ctaCardLead {
    margin-bottom: 1.6em;
  }
}

.ctaCardTitle {
  display: inline-block;
  margin-bottom: 1em;
  padding-bottom: 8px;
  border-bottom: dashed 3px #fff;
  font-weight: 700;
}
.ctaCardTitle {
  font-size: 23px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .ctaCardTitle {
    font-size: 28px;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .ctaCardTitle {
    margin-bottom: 1.6em;
    padding-bottom: 20px;
  }
}

/* PAGETOP */
.pageTOPBG {
  background-color: #cdf1f9;
}

.pageTOPBGWhite {
  background-color: #fff;
}

.pageTOPInner {
  padding: 20px 0;
  text-align: right;
}
.pageTOPInner a {
  display: inline-block;
  width: 120px;
  height: 60px;
  box-sizing: border-box;
  padding: 20px 35px 0px 0px;
  color: #2b2927;
  font-weight: 700;
  background-image: url("../img/pageTOP.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 120px auto;
  letter-spacing: 0.15rem;
  transition: 0.3s;
}
.pageTOPInner a {
  font-size: 13px;
  line-height: 1;
}
@media (min-width: 768px) {
  .pageTOPInner a {
    font-size: 16px;
    line-height: 1;
  }
}
.pageTOPInner a:hover {
  text-decoration: none;
  color: #7ca467;
}
@media (min-width: 768px) {
  .pageTOPInner {
    padding: 30px 0;
  }
  .pageTOPInner a {
    width: 140px;
    height: 65px;
    box-sizing: border-box;
    padding: 18px 40px 0px 0px;
  }
}

/* ========== カテゴリページ ========== */
@media (min-width: 768px) {
  .categoryWrap {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 5%;
  }
}

.categoryColumn {
  display: block;
  transition: 0.3s;
  color: #2b2927;
  margin-bottom: 3em;
}
.categoryColumn img {
  margin-bottom: 0.5em !important;
  width: 100%;
  height: 230px !important; /* 高さを固定（任意で調整） */
  -o-object-fit: cover;
     object-fit: cover; /* はみ出した部分はトリミング */
  -o-object-position: center;
     object-position: center; /* 中央を基準に表示 */
  display: block;
}
.categoryColumn time {
  font-size: clamp(13px, 0.9vw, 14px);
  color: #d2896e;
}
.categoryColumn a {
  color: #2b2927;
}
.categoryColumn a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .categoryColumn {
    width: 30%;
    margin-bottom: 2em;
  }
  .categoryColumn img {
    margin-bottom: 1em !important;
    height: 200px !important;
  }
}

.categoryColumnTitle {
  font-size: clamp(16px, 1.11vw, 17px);
  line-height: 1.6;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.categoryColumnTitle:hover {
  text-decoration: none;
}

.categoryColumnExcerpt {
  font-size: clamp(14px, 0.97vw, 15px);
  line-height: 1.6;
}
.categoryColumnExcerpt:hover {
  text-decoration: none;
}

.wp-pagenavi {
  margin: 2em auto 0em auto;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.wp-pagenavi span, .wp-pagenavi a {
  padding: 7px 0px 0px 3px;
  border-radius: 9999px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums; /* 数字の桁揃え。不要なら削除OK */
  width: 36px;
  height: 36px;
  display: block;
  text-align: center;
  box-sizing: border-box;
}
.wp-pagenavi span, .wp-pagenavi a {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .wp-pagenavi span, .wp-pagenavi a {
    font-size: 19px;
    line-height: 1.3;
  }
}
.wp-pagenavi span {
  border: 1px solid #00b74a;
  color: #00b74a;
}
.wp-pagenavi a {
  border: 1px solid #00b74a;
  color: #fff;
  background-color: #00b74a;
  transition: 0.2s;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media (min-width: 768px) {
  .wp-pagenavi {
    padding: 5px 0px 0px 3px;
  }
}

/* ========== 投稿ページ ========== */
.singleInformation {
  display: flex;
  justify-content: left;
  gap: 30px;
  margin: 1.5em 0;
}
.singleInformation time {
  color: #666;
}
@media (min-width: 768px) {
  .singleInformation {
    gap: 20px;
    margin-bottom: 2em;
  }
}

@media (min-width: 768px) {
  .singleWrap {
    display: flex;
    justify-content: space-between;
  }
}

.singleContent h2 {
  margin: 0 0 0.5em 0;
  font-weight: 700;
}
.singleContent h2 {
  font-size: 19px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .singleContent h2 {
    font-size: 33px;
    line-height: 1.8;
  }
}
.singleContent p, .singleContent ol, .singleContent ul {
  margin: 0 0 2em 0 !important;
}
.singleContent ol:has(+ p), .singleContent ul:has(+ p) {
  margin: 0 0 1em 0 !important;
}
@media (min-width: 768px) {
  .singleContent {
    width: 66%;
  }
  .singleContent p, .singleContent ol, .singleContent ul {
    margin: 0 0 2.5em 0 !important;
  }
  .singleContent ol:has(+ p), .singleContent ul:has(+ p) {
    margin: 0 0 1.5em 0 !important;
  }
}

.singleAside {
  margin-top: 4em;
}
@media (min-width: 768px) {
  .singleAside {
    margin-top: 0;
    width: 29%;
  }
}

.prevNext {
  display: flex;
  align-items: center;
  margin: 3em 0 0 0;
  padding: 0;
}
.prevNext {
  font-size: 13px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .prevNext {
    font-size: 16px;
    line-height: 1.8;
  }
}
.prevNext li {
  width: 50%;
  padding-left: 40px;
  box-sizing: border-box;
  text-align: left;
  list-style: none;
}
.prevNext li a {
  display: inline-block;
  position: relative;
  padding-right: 40px;
}
.prevNext li a:before {
  display: block;
  position: absolute;
  content: "＞";
  width: 20px;
  height: 36px;
  line-height: 36px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
}
.prevNext li:first-child {
  border-right: 1px solid #666;
  padding-left: 0px;
  padding-right: 0px;
  text-align: right;
}
.prevNext li:first-child a {
  padding-left: 40px;
}
.prevNext li:first-child a:before {
  content: "＜";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: auto;
}
@media (min-width: 768px) {
  .prevNext {
    margin: 6em 0 0 0;
  }
}

/* ブログサイドメニュー */
.widget {
  margin-bottom: 2em;
}
.widget ul {
  margin: 0;
  padding: 0;
}
.widget li {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
}
.widget li {
  font-size: 13px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .widget li {
    font-size: 16px;
    line-height: 1.6;
  }
}
.widget a {
  color: #666;
  text-decoration: none;
  transition: 0.3s;
}
.widget a:hover {
  color: #00b74a;
}

.widgetTitle {
  margin-bottom: 0.6em;
  font-weight: bold;
}
.widgetTitle {
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .widgetTitle {
    font-size: 19px;
    line-height: 1.8;
  }
}

.searchForm {
  display: flex;
  justify-content: space-between;
}

.searchLabel {
  width: 70%;
}

.searchField {
  width: 100%;
  height: 50px;
}

.searchSubmit {
  width: 26%;
  height: 50px;
  background-color: #00b74a;
  color: #fff;
  border: none;
  border-radius: 6px;
  letter-spacing: 0.2em;
}

/* ========== Profile Card ========== */
@media (min-width: 768px) {
  .profileCard {
    display: flex;
    justify-content: space-between;
  }
}

.profileCardPhoto {
  display: none;
  width: 38%;
}
@media (min-width: 768px) {
  .profileCardPhoto {
    display: block;
  }
}

.profileCardPhotoSP {
  display: block;
  margin-bottom: 1.5em;
}
.profileCardPhotoSP img {
  margin: auto !important;
}
@media (min-width: 768px) {
  .profileCardPhotoSP {
    display: none;
  }
}

@media (min-width: 768px) {
  .profileCardText {
    width: 58%;
  }
}

.profileCardName, .memberColumnName {
  position: relative;
  margin-bottom: 0.8em;
  padding-left: 34px;
}
.profileCardName, .memberColumnName {
  font-size: 19px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .profileCardName, .memberColumnName {
    font-size: 23px;
    line-height: 2;
  }
}
.profileCardName .en, .memberColumnName .en {
  margin-left: 12px;
}
.profileCardName:before, .memberColumnName:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  margin: auto;
  border-radius: 999px;
  background: #31a787;
}
@media (min-width: 768px) {
  .profileCardName, .memberColumnName {
    margin-bottom: 0.2em;
  }
  .profileCardName .en, .memberColumnName .en {
    margin-left: 20px;
  }
  .profileCardName:before, .memberColumnName:before {
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.profileCardPosition {
  font-weight: 700;
}
.profileCardPosition {
  font-size: 13px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .profileCardPosition {
    font-size: 16px;
    line-height: 2;
  }
}

.profileCardBody {
  font-size: 13px;
  line-height: 2;
}
@media (min-width: 768px) {
  .profileCardBody {
    font-size: 13px;
    line-height: 2;
  }
}

/* ========== Member Card ========== */
@media (min-width: 768px) {
  .memberColumnWrap {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 5%;
  }
}

.memberColumn {
  display: block;
  transition: 0.3s;
  color: #2b2927;
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  .memberColumn {
    width: 30%;
    margin-bottom: 0em;
  }
}
.memberColumn:hover {
  text-decoration: none;
}

.memberColumnPhoto {
  position: relative;
  transition: 0.3s;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1em;
}
.memberColumnPhoto img {
  margin: auto !important;
}
@media (min-width: 768px) {
  .memberColumnPhoto {
    overflow: hidden;
    height: 214px;
    margin-bottom: 1em;
  }
  .memberColumnPhoto img {
    transition: all 0.3s;
    transform-origin: center center;
  }
  .memberColumnPhoto img:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1024px) {
  .memberColumnPhoto {
    height: 300px;
  }
}

.memberColumnName {
  margin-bottom: 0.5em;
}
.memberColumnName {
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .memberColumnName {
    font-size: 19px;
    line-height: 2;
  }
}
.memberColumnName:before {
  top: 0.1em;
}
@media (min-width: 768px) {
  .memberColumnName {
    margin-bottom: 0;
  }
  .memberColumnName:before {
    top: 0em;
  }
}

.memberCard {
  position: relative;
  border-radius: 12px;
  padding: 20px;
  background-color: #f9f7ed;
}
.memberCard p:last-child {
  margin-bottom: 0 !important;
}
.memberCard .profileCardPhoto img {
  margin-bottom: 0 !important;
}
.memberCard .profileCardPosition {
  font-weight: normal;
}

.memberCardClose {
  position: absolute;
  top: -24px;
  right: 0px;
  color: #fff;
  width: auto;
  padding-top: 0.8em;
  padding-left: 1em;
  background-color: #2b2927;
  z-index: 3001;
}
.memberCardClose {
  font-size: 13px;
  line-height: 1;
}
@media (min-width: 768px) {
  .memberCardClose {
    font-size: 16px;
    line-height: 1;
  }
}
.memberCardClose:before, .memberCardClose:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 3px; /* 棒の幅（太さ） */
  height: 18px; /* 棒の高さ */
  background: #fff;
}
.memberCardClose:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.memberCardClose:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 768px) {
  .memberCardClose {
    top: -20px;
    right: 20px;
  }
  .memberCardClose:before, .memberCardClose:after {
    top: 20px;
    right: 20px;
  }
}

/* 低速環境での動き抑制（任意） */
@media (prefers-reduced-motion: reduce) {
  .ctaCard::before {
    transition: none;
  }
}
/* テキスト・画像など要素 */
.contentsText p {
  margin: 0 0 1.5em 0;
}
@media (min-width: 768px) {
  .contentsText p {
    margin: 0 0 2em 0;
  }
}
.contentsText {
  font-size: 13px;
  line-height: 2;
}
@media (min-width: 768px) {
  .contentsText {
    font-size: 16px;
    line-height: 2;
  }
}
.contentsText img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 0 1.5em 0;
}
@media (min-width: 768px) {
  .contentsText img {
    margin: 0 0 2em 0;
  }
}

.doubleColumnPhoto {
  display: flex;
  justify-content: space-between;
}
.doubleColumnPhoto img {
  width: 100%;
}
@media (min-width: 768px) {
  .doubleColumnPhoto img {
    width: 47.5%;
  }
}

/*　お問い合わせページ　*/
.contactList {
  font-size: clamp(16px, 1.11vw, 17px);
  line-height: 1.8em;
}
.contactList dt {
  padding: 0 0 0 0.8em;
  margin-bottom: 0.8em;
  border-left: 5px solid #7ca467;
}
.contactList dd {
  margin: 0 0 1.5em 0;
}
@media (min-width: 768px) {
  .contactList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contactList dt {
    width: 28%;
    margin-bottom: 1em;
    padding: 0.6em 0.8em;
    background: #f9f7ed;
    border: none;
  }
  .contactList dd {
    width: 70%;
    margin: 0 0 1em 0;
  }
}

/* =======================
   Modal（memberCard をモーダル表示）
   ======================= */
/* contentsWrap と同じ幅を 1 変数にまとめておく */
/* 非表示制御 */
.memberCard[hidden] {
  display: none !important;
}

#modalOverlay[hidden] {
  display: none !important;
}

/* オーバーレイ */
#modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 7000;
  /* フェード */
  opacity: 0;
  transition: opacity 0.22s ease;
}

#modalOverlay.is-open {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

/* --- デフォルト（= タブレット未満） ------------------------------ */
/* 画面に上下60px・左右20pxの余白を取り、中だけスクロール */
.memberCard.is-modal {
  position: fixed;
  z-index: 7001;
  /* 余白 */
  left: 20px;
  right: 20px;
  top: 60px;
  bottom: 60px;
  /* はみ出す CLOSE ボタンを切らない（重要） */
  overflow: visible;
  /* アニメ（フェード＋少し上から） */
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  will-change: opacity, transform;
}

.memberCard.is-modal.is-open {
  opacity: 1;
  transform: translateY(0);
}

/* スクロール領域は内側（profileCard）に付与 */
.memberCard.is-modal > .profileCard {
  height: 100%;
  max-height: calc(100dvh - 120px); /* 60 + 60 */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* 背景スクロール殺し（JSが html に付与） */
html.modal-open, html.modal-open body {
  overscroll-behavior: none;
}

/* ==== PC（bp-tab 以上） ==== */
@media (min-width: 768px) {
  .memberCard.is-modal {
    position: fixed;
    top: 50%;
    /* 横は必ず 20px 内側に収めて中央寄せ（はみ出し防止） */
    left: 20px;
    right: 20px;
    margin-inline: auto;
    /* 幅は contentsWrap に追従（画面が狭いときは自然に縮む） */
    max-width: calc(1000px + 20px * 2);
    width: auto;
    /* ← ここで“外側の高さ”を決める（お好みで調整） */
    height: min(56dvh, 860px); /* 例：92dvh 上限 880px */
    /* 中央へ。出現時に少し上から入れる */
    transform: translateY(-48%);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    will-change: opacity, transform;
    overflow: visible; /* CLOSE などが切れないよう外側は可視 */
    box-sizing: border-box;
  }
  .memberCard.is-modal.is-open {
    transform: translateY(-50%);
    opacity: 1;
  }
  /* 中身を“外側の高さ”に合わせ、ここをスクロール領域に */
  .memberCard.is-modal > .profileCard {
    height: 100%; /* ← 重要：max-height ではなく height */
    max-height: none; /* 既存の制限があればリセット */
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* CLOSE ボタンがカード外にかぶるデザイン向けの保険（任意） */
.memberCard .memberCardClose {
  position: absolute;
  z-index: 2;
}/*# sourceMappingURL=style.css.map */