@charset "UTF-8";
/* ============================================================
   CSS変数（デザイントークン）定義
   - 全コンポーネントで共通利用するカラー・フォントを一元管理
============================================================ */
:root {
  /* メインカラーパレット */
  --main-color:    #C2D725; /* ライトグリーン：ロゴ・アクセント */
  --sub-color:     #6BA268; /* 深い青緑：フッター背景等 */
  --accent-color:  #4FDA1B; /* 蛍光グリーン：目立つボタン等 */
  --bg-white:      #FFFFFF; /* 白背景 */
  --bg-yellow:     #FAF7D3; /* 薄黄：ドロワー背景等 */
  --text-color:    #32373C; /* グレーがかった黒：基本テキスト */

  /* フォント */
  --font-heading:  'Zen Maru Gothic', sans-serif;  /* 見出し・ボタン・英文 */
  --font-body:     'Noto Sans JP', sans-serif;       /* 本文 */

  /* ヘッダー高さ（スムーススクロール計算用） */
  --header-height: 80px;
}

/* ============================================================
   サイト全体ラッパー
============================================================ */
.site-wrapper {
  min-height: 100vh;
}

/* ============================================================
   ヘッダー：site-header
   - 白背景・固定高さ・スクロール時にシャドウ追加
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

/* スクロール時のシャドウ（JSで .is-scrolled クラスを付与） */
.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   ヘッダー内部ナビ：header-nav
============================================================ */
header nav.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: var(--header-height);
  padding: 0 2vw;
  background-color: var(--bg-white);
  position: relative;
}

/* ============================================================
   ロゴ：header-logo
============================================================ */
header a.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
  text-decoration: none;
}

header a.header-logo img {
  width: auto;
  height: 60px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

header a.header-logo:hover img {
  opacity: 0.8;
}

/* ============================================================
   PC用ナビゲーション：header-pc-nav / pc-menu
   - 960px以下で非表示
============================================================ */
.header-pc-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  /* ハンバーガーボタン分の余白（PCでは不要） */
}

/* PC メニューUL（wp_nav_menu が出力するliを直接包む） */
ul.pc-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: nowrap;
}

/* PC メニュー各li */
ul.pc-menu > li.pc-menu__item {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.05em;
  position: relative;
  flex-shrink: 0;
}

/* PC メニュー各li > a */
ul.pc-menu > li.pc-menu__item > a {
  display: block;
  padding: 20px 8px;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
  font-weight: 600;
  font-size: 15px;
}
@media(min-width:1200px){
  ul.pc-menu > li.pc-menu__item > a {
    padding: 20px 12px;
    font-size: 16px;
  }
}
/* ホバーアンダーライン */
ul.pc-menu > li.pc-menu__item > a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

ul.pc-menu > li.pc-menu__item > a:hover,
ul.pc-menu > li.pc-menu__item > a:focus {
  color: var(--main-color);
}

ul.pc-menu > li.pc-menu__item:hover > a::after,
ul.pc-menu > li.pc-menu__item > a:focus::after {
  transform: scaleX(1);
}

/* ============================================================
   お問い合わせボタン：.menu-ctt クラスが付いたli
============================================================ */
ul.pc-menu > li.menu-ctt > a {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-color) 100%);
  background: var(--accent-color);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
ul.pc-menu > li.menu-ec{
  margin-left: 10px;
}
ul.pc-menu > li.menu-ec > a {
  background: #e9f781;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--sub-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.2s ease;
  letter-spacing: 0;
}
ul.pc-menu > li.menu-ec > a::before{
  content: '\f07a';
  display: block;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 7px;
}
ul.pc-menu > li.menu-ctt > a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79, 218, 27, 0.45);
}
ul.pc-menu > li.menu-ec > a:hover {
  color: var(--sub-color);
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(223, 237, 120, 0.45);
}
ul.pc-menu > li.menu-ctt > a::after,ul.pc-menu > li.menu-ec > a::after {
  display: none; /* ボタン形状なのでアンダーライン不要 */
}
/* ============================================================
   PC サブメニュー（ドロップダウン）
   - ホバーで展開・すりガラス効果
============================================================ */
ul.pc-menu > li.pc-menu__item.has-submenu {
  position: relative; /* 親メニュー基準に配置するためrelativeに変更 */
}

/* サブメニュー本体（ul.pc-submenu） */
ul.pc-submenu {
  display: none;
  list-style: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 3px solid var(--main-color);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  margin: 0;
  animation: submenu-fade-in 0.2s ease forwards;
}

/* ホバー時に展開 */
ul.pc-menu > li.pc-menu__item.has-submenu:hover > ul.pc-submenu,
ul.pc-menu > li.pc-menu__item.has-submenu:focus-within > ul.pc-submenu {
  display: flex;
}

@keyframes submenu-fade-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* サブメニュー各項目 */
ul.pc-submenu > li.pc-submenu__item {
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}

ul.pc-submenu > li.pc-submenu__item > a {
  display: block;
  padding: 12px 24px 12px 24px;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 600;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}

ul.pc-submenu > li.pc-submenu__item:last-child > a {
  border-bottom: none;
}

ul.pc-submenu > li.pc-submenu__item > a::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--main-color);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

ul.pc-submenu > li.pc-submenu__item > a:hover {
  color: var(--main-color);
  background-color: rgba(194, 215, 37, 0.05);
  padding-left: 28px;
}

ul.pc-submenu > li.pc-submenu__item > a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.5);
}

/* ============================================================
   ハンバーガーボタン（SPのみ表示）
============================================================ */
.hamburger-btn {
  display: none; /* デフォルトは非表示（960px以上） */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 56px;
  height: 56px;
  padding: 0;
  background-color: var(--main-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
  position: relative;
  z-index: 1200;
}

.hamburger-btn:hover {
  background-color: var(--accent-color);
}

/* 3本線 */
.hamburger-btn__line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--bg-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  position: absolute;
}

.hamburger-btn__line:nth-child(1) { top: 17px; }
.hamburger-btn__line:nth-child(2) { top: 26px; }
.hamburger-btn__line:nth-child(3) { top: 35px; }

/* オープン状態（× アイコン） */
.hamburger-btn.is-open .hamburger-btn__line:nth-child(1) {
  transform: rotate(45deg);
  top: 26px;
}
.hamburger-btn.is-open .hamburger-btn__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger-btn.is-open .hamburger-btn__line:nth-child(3) {
  transform: rotate(-45deg);
  top: 26px;
}

/* MENU テキスト */
.hamburger-btn__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 0.08em;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================================
   SPドロワーメニュー
============================================================ */

/* オーバーレイ背景 */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1050;
  transition: opacity 0.3s ease;
}

.drawer-overlay.is-open {
  display: block;
}

/* ドロワー本体 */
.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 360px);
  height: 100dvh;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer-menu.is-open {
  transform: translateX(0);
}

/* スクロール可能な内部コンテンツ */
.drawer-menu__inner {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 80px 0 40px;
  -webkit-overflow-scrolling: touch;
}

/* ドロワーメニューリスト */
ul.drawer-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* 各ドロワー項目（depth=0） */
li.drawer-item {
  border-bottom: 1px solid rgba(194, 215, 37, 0.25);
  /* position:relativeはliに不要。aタグ基準で配置する */
}

/* depth=0 リンク
   - position: relative を a タグ自体に設定することで、
     サブメニュー展開でliが伸びてもアイコン位置がズレない */
li.drawer-item > a {
  display: block;
  padding: 16px 52px 16px 24px; /* 右にアイコン分の余白を確保 */
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative; /* アイコンの位置基準はaタグ */
}

li.drawer-item > a:hover {
  color: var(--main-color);
  background-color: rgba(194, 215, 37, 0.06);
}
li.drawer-item.menu-ec > a{
  display: flex;
  align-items: center;
  color: var(--sub-color);
}
li.drawer-item.menu-ec > a::before{
  content: '\f07a';
  display: block;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 7px;
}
/* ============================================================
   アコーディオンアイコン：.drawer-toggle-icon
   - <a> タグ内に span として埋め込まれるため、
     aタグを基準（position:relative）として絶対配置
   - サブメニュー展開によってliが下に伸びても
     アイコンは常に「1行目のaタグの右端・縦中央」に固定される
============================================================ */
.drawer-toggle-icon {
  /* aタグ（position:relative）の右端・縦中央に固定 */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  /* 丸いアイコン枠 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--main-color);
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* ＋ の横線（::before = 横、::after = 縦） */
.drawer-toggle-icon::before,
.drawer-toggle-icon::after {
  content: '';
  display: block;
  position: absolute;
  background-color: var(--main-color);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.2s ease;
}

/* 横線 */
.drawer-toggle-icon::before {
  width: 12px;
  height: 2px;
}

/* 縦線（回転で ＋ を形成） */
.drawer-toggle-icon::after {
  width: 2px;
  height: 12px;
}

/* ホバー時：背景塗り＋アイコンを白に */
li.drawer-item > a:hover .drawer-toggle-icon {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

li.drawer-item > a:hover .drawer-toggle-icon::before,
li.drawer-item > a:hover .drawer-toggle-icon::after {
  background-color: var(--bg-white);
}

/* オープン状態（aria-expanded="true"）：縦線を回転させてマイナス（─）に変化 */
li.drawer-item > a[aria-expanded="true"] .drawer-toggle-icon {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

li.drawer-item > a[aria-expanded="true"] .drawer-toggle-icon::before,
li.drawer-item > a[aria-expanded="true"] .drawer-toggle-icon::after {
  background-color: var(--bg-white);
}

/* 縦線を回転して横に重ね、マイナス表示に */
li.drawer-item > a[aria-expanded="true"] .drawer-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* サブメニューUL（アコーディオン） */
ul.drawer-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(194, 215, 37, 0.07);
  overflow: hidden;
}

ul.drawer-submenu[hidden] {
  display: none;
}

/* サブ項目（depth=1） */
li.drawer-subitem {
  border-top: 1px solid rgba(194, 215, 37, 0.15);
}

li.drawer-subitem > a {
  display: block;
  padding: 12px 24px 12px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

li.drawer-subitem > a::before {
  content: '└';
  position: absolute;
  left: 20px;
  color: var(--main-color);
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

li.drawer-subitem > a:hover {
  color: var(--main-color);
}

/* ドロワー内SNS */
.drawer-sns {
  padding: 24px 24px 0;
  margin-top: 8px;
}

.drawer-sns__list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-sns__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: var(--bg-white);
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.drawer-sns__list a:hover {
  background-color: var(--sub-color);
  transform: scale(1.1);
}

/* ============================================================
   フッター全体：site-footer
   - 背景色: 深い青緑（var(--sub-color)）
============================================================ */
footer.site-footer {
  font-family: var(--font-heading);
  background-color: var(--sub-color);
  color: var(--bg-white);
  position: relative;
  width: 100%;
}

/* ============================================================
   フッター内部レイアウト：footer-inner
   PC / SP ともに縦積み全幅レイアウト
   1段目：協会情報（名前・住所・SNSを横並び）
   2段目：メニューグループ（全幅均等配置）
============================================================ */
.footer-inner {
  display: flex;
  flex-direction: column;
  padding: 60px 5vw 48px;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================================
   協会情報エリア：footer-info
   PC時は 名前 ／ 住所 ／ SNS を横並びで整列
============================================================ */
.footer-info {
  display: flex;
  flex-direction: column;  /* SP: 縦積みをベースに */
  gap: 20px;
}

/* 協会名 */
.footer-info__name {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* 住所・電話 */
.footer-info__address {
  font-style: normal;
  font-family: var(--font-body);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
}
.footer-info__address p{
  margin-bottom: 5px;
}
.footer-info__tel {
  margin-top: 4px;
}

.footer-info__tel a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-info__tel a:hover {
  color: var(--main-color);
}

/* SNSリンク：丸い白背景・緑アイコン */
ul.footer-sns {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

ul.footer-sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--sub-color);
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

ul.footer-sns li a:hover {
  background-color: var(--main-color);
  color: var(--bg-white);
  transform: scale(1.1);
}

/* ============================================================
   メニューエリア：footer-menu-area（全幅）
============================================================ */
.footer-menu-area {
  width: 100%;
}

/* メニューグループコンテナ（wp_nav_menu が出力するul）
   ベース（~599px）: 縦積み 1列
   600px~ : 2列
   768px~ : 3列
   1200px~: 4列
   1320px~: 全列横並び・fit-content均等配置
*/
ul.footer-nav-groups {
  display: flex;
  flex-wrap: wrap;          /* デフォルト: wrap で折り返し */
  gap: 36px 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
}

/* 各グループ（li.footer-nav-group-item）
   ベース: 100%（縦積み1列） */
li.footer-nav-group-item {
  flex: none;               /* flex:1 は使わず幅を明示指定 */
  width: 100%;
  min-width: 0;
  padding: 0;
}

/* ── 600px以上：2列 ── */
@media (min-width: 600px) {
  li.footer-nav-group-item {
    width: 50%;
    padding-right: 32px;    /* 右側の余白でカラム間を確保 */
  }
}

/* ── 768px以上：3列 ── */
@media (min-width: 768px) {
  li.footer-nav-group-item {
    width: 33.333%;
    padding-right: 28px;
  }
}

/* ── 1200px以上：4列 ── */
@media (min-width: 1200px) {
  li.footer-nav-group-item {
    width: 25%;
    padding-right: 24px;
  }
}

/* ── 1320px以上：全列横並び（nowrap）・各列 fit-content 幅で均等余白 ── */
@media (min-width: 1320px) {
  ul.footer-nav-groups {
    flex-wrap: nowrap;
    justify-content: space-between; /* 全列を均等に余白をあけて配置 */
    gap: 0;
  }
  li.footer-nav-group-item {
    width: fit-content;     /* 内容幅に合わせる */
    flex: 0 1 auto;
    padding-right: 0;       /* space-between が余白を担うため不要 */
  }
}

/* グループ内部ラッパー */
.footer-nav-group {
  display: flex;
  flex-direction: column;
}

/* グループ見出し（英文、ライトグリーン） */
.footer-nav-group__heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-nav-group__heading>a {
  color: #E8F778;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* サブリスト（日本語リンク） */
ul.footer-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

li.footer-sublist__item a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.15s ease;
  display: block;
}

li.footer-sublist__item a:hover {
  color: var(--main-color);
  padding-left: 4px;
}

/* ============================================================
   フッター最下部：footer-bottom
   - 上ボーダー・コピーライト・登録商標
============================================================ */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom__trademark {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.footer-bottom__copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   ログイン中テキスト（SWPM連携）
============================================================ */
#is_logged-in {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 25px;
  color: var(--main-color);
  text-align: center;
  display: block;
  padding-top: 30px;
}

/* ============================================================
   レスポンシブ：1100px以上（PC表示）
============================================================ */
@media (min-width: 1100px) {
  /* ハンバーガーボタンは非表示 */
  .hamburger-btn { display: none !important; }

  /* ドロワー・オーバーレイは非表示 */
  .drawer-menu,
  .drawer-overlay { display: none !important; }

  /* PCナビを表示 */
  .header-pc-nav { display: flex; }

  /* フッター内部：PC時も縦積みのまま。パディングのみ拡張 */
  .footer-inner {
    flex-direction: column;
    padding: 72px 5vw 56px;
    gap: 40px;
  }

  /* 協会情報：PC時は横並び（名前／住所／SNS） */
  .footer-info {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 8px;
  }

  .footer-info__name {
    flex-shrink: 0;
    align-self: center;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-info__address {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  ul.footer-sns {
    margin-left: auto;     /* 右端に寄せる */
    align-self: center;
  }

  /* メニューリストのborder-topとpadding-topのみPC時に調整
     列数はブレークポイント別定義（600/768/1200/1320px）が適用される */
  ul.footer-nav-groups {
    padding-top: 40px;
  }

  /* フッター最下部を横並び */
  .footer-bottom__inner {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}
/* ============================================================
   レスポンシブ：1099px以下（SP表示）
============================================================ */
@media (max-width: 1099px) {
  /* PCナビは非表示 */
  .header-pc-nav { display: none; }

  /* ハンバーガーボタン表示 */
  .hamburger-btn { display: flex; }

  /* メニュー開いているときbodyスクロール固定 */
  body.menu-open { overflow: hidden; }

  /* ヘッダーナビの高さ調整 */
  header nav.header-nav {
    height: 64px;
    padding: 0 16px;
  }

  .header-logo img {
    height: 48px;
  }

  /* フッターメニューグループ：SP時（~960px）は上のブレークポイント定義が適用される */
  ul.footer-nav-groups {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
  }

  .footer-inner {
    padding: 48px 6vw 40px;
    gap: 32px;
  }
}

/* ============================================================
   アニメーション：フェードイン（共通）
============================================================ */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* スクロールアニメーション対象クラス */
/*
.fade-in,
.reveal-up,
.reveal-left,
.reveal-right,
.fade-in-up {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up   { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.fade-in-up  { transform: translateY(20px); }

.fade-in.is-active,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: translate(0, 0);
}*/