@charset "UTF-8";
/*
Theme Name: HOPE Renewal
Theme URI: https://hope.example.com/   ← あれば実サイトURL
Author: 未来学園HOPE
Author URI: https://example.com/author ← 自分や団体の紹介ページ
Description: 未来学園HOPEのリニューアルテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hope-theme
*/
/* =========================
   PC Side Menu
   ========================= */
/* モバイル非表示 */
.pc-menu {
  display: none;
}

@media (min-width: 1100px) {
  .pc-menu {
    display: block;
    padding: 0 32px;
    position: fixed;
    top: calc(var(--header-h, 84px) + 20px); /* ← 上揃え */
    left: max(12px, (100vw - var(--content-max)) / 2 - var(--sidebar-w, 320px) - var(--gutter, 24px));
    width: var(--sidebar-w, 320px);
    z-index: 60;
    transform: none;
    max-height: calc(100vh - (var(--header-h, 84px) + 40px));
    overflow: auto;
    scrollbar-gutter: stable;
  }
}
/* リスト本体 */
.pc-menu-list {
  list-style: none;
  margin: 0;
  padding: 0 16px 8px;
}

/* 下線（最後だけ消す） */
.pc-menu-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.pc-menu-list > li:last-child {
  border-bottom: 0;
}

/* 黒文字のみ（背景透明） */
.pc-menu .pc-menu-list > li > a {
  position: relative;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0px;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.8;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.15s ease;
}

.pc-menu .pc-menu-list > li > a:hover {
  transform: translateX(2px);
}

/* 右端の矢印（通常リンクのみ） */
.pc-menu .pc-menu-list > li > a::after {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: #111; /* 矢印色 */
  -webkit-mask: url("data:image/svg+xml;utf8,  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>  <path d='M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z'/>  </svg>") no-repeat center/contain;
  mask: url("data:image/svg+xml;utf8,  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>  <path d='M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z'/>  </svg>") no-repeat center/contain;
}

/* 現在ページも“黒文字のみ”のまま */
.pc-menu-list .current-menu-item > a,
.pc-menu-list .current_page_item > a {
  background: transparent;
  box-shadow: none;
}

/* サブメニュー（使う場合） */
.pc-menu .pc-menu-list li .sub-menu {
  padding: 6px 0 0 12px;
}

.pc-menu .pc-menu-list li .sub-menu a {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pc-menu .pc-menu-list li .sub-menu a::after {
  display: none;
} /* 子は矢印なし */
.pc-menu__cta {
  margin: 14px 16px 0;
} /* リスト外にあるので下線の影響なし */
.pc-menu__support {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pc-menu__support:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* 念のため：CTAには矢印を出さない */
.pc-menu__support::after {
  content: none;
}

/* ===== レイヤー順 =====
   1200: drawer（最前面）
   1150: backdrop（その下）
   1100: 右下ボタン  */
.floating-menu-btn {
  z-index: 1100;
}

/* 右からスライドするパネル。少し小さめ幅で“隙間”を残す */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(280px, 86vw, 360px); /* ← パネル幅。必要なら調整 */
  background: #fad25f;
  box-shadow: -6px 0 22px rgba(0, 0, 0, 0.14);
  transform: translateX(100%); /* 初期は画面外 */
  transition: transform 0.28s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  /* iOSのセーフエリア対応（右端の丸みなどが切れないよう） */
  padding-right: max(0px, env(safe-area-inset-right));
}

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

/* ヘッダー部分 */
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 800;
  font-size: 24px;
}

.drawer-close {
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

/* メニュー本体（PCサイドと同じ見た目を流用するならここは任意） */
.drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-menu > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.drawer-menu > li:last-child {
  border-bottom: 0;
}

.drawer-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px 8px 42px;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 2;
  font-size: 16px;
}

.drawer-menu > li > a::after {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: #111;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z'/></svg>") no-repeat center/contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z'/></svg>") no-repeat center/contain;
}

/* 応援する（ピル型／矢印なし） */
.pc-menu__cta {
  padding: 16px;
}

.pc-menu__support {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 2px solid #333;
}

.pc-menu__support::before,
.mobile-drawer .pc-menu__support::before {
  font-family: "Font Awesome 5 Free"; /* Font Awesome */
  font-weight: 900; /* solidアイコン用 */
  content: "\f004"; /* ハートアイコン */
  display: inline-block;
  margin-right: 8px; /* テキストとの間隔 */
  color: #e63946; /* 赤色ハート */
  font-size: 1.1em; /* テキストより少し大きめ */
  vertical-align: middle;
}

/* 左側の“余白＆タップで閉じる”用の backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18); /* 薄めの暗さ。0～.25で調整 */
  opacity: 0; /* 初期は非表示 */
  pointer-events: none; /* クリック不可 */
  transition: opacity 0.2s ease;
  z-index: 1150;
}

/* ドロワーが開いている間だけ、有効にする */
.drawer-backdrop.visible {
  opacity: 1;
  pointer-events: auto; /* ← ここで“タップ閉じ”が効く */
}

/* 念のため：PC幅ではドロワー系を無効化 */
@media (min-width: 1100px) {
  .mobile-drawer,
.drawer-backdrop,
.floating-menu-btn {
    display: none !important;
  }
}
/* =========================================================
   Single Blog & Speech Bubble (Brand-synced SCSS only)
   ※ 既存frontの変数を使用：$color-yellow, $color-blue ほか
   ========================================================= */
/* ---- トークン（front変数に合う淡色） ---- */
/* =========================================
   Single: レイアウト/タイポ/見出し/ボタン
   ========================================= */
.sec-single-blog {
  background: #fff;
  /* ===== パンくず（崩れ対策・区切り追加・題名は省略表示） ===== */
  /* 区切り（›）を自動で挿入 */
  /* タイトルだけは可変にして省略（…） */
}
.sec-single-blog__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 24px 16px 56px;
}
.sec-single-blog .pankuzu-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  flex-wrap: nowrap; /* 1行キープ */
}
.sec-single-blog .pankuzu-list > div {
  display: flex;
  align-items: center;
  flex: 0 0 auto; /* 短い要素は縮ませない */
  white-space: nowrap; /* 改行させない */
}
.sec-single-blog .pankuzu-list a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #666;
}
.sec-single-blog .pankuzu-list .link::after,
.sec-single-blog .pankuzu-list .topics-link::after {
  content: "›";
  display: inline-block;
  margin: 0 4px;
  color: #aaa;
}
.sec-single-blog .pankuzu-list .link-name {
  flex: 1 1 auto; /* ここだけ伸縮可 */
  min-width: 0; /* 省略記号を効かせるため必須 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
.sec-single-blog__text-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 18px;
}
.sec-single-blog__text-wrapper p {
  line-height: 1.9;
  color: #000;
  font-weight: 500;
  margin: 1em 0;
}
.sec-single-blog__text-wrapper img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  height: auto;
  display: block;
  max-width: 100%;
}
.sec-single-blog__text-wrapper h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 2.2em 0 0.6em;
  font-weight: 800;
  border-left: 10px solid #febf03;
  padding-left: 0.6em;
  color: #111;
}
.sec-single-blog__text-wrapper h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 2em 0 0.5em;
  font-weight: 700;
  color: #2a2a2a;
}
.sec-single-blog__text-wrapper ul, .sec-single-blog__text-wrapper ol {
  padding-left: 1.4em;
}
.sec-single-blog__text-wrapper blockquote {
  margin: 1.6em 0;
  padding: 1em 1.2em;
  background: #fffbe9;
  border-left: 6px solid #fad25f;
  color: #333;
  border-radius: 12px;
}
.sec-single-blog__text-wrapper a {
  color: #1a1a1a;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-color: #fad25f;
          text-decoration-color: #fad25f;
  box-shadow: inset 0 -2px 0 #fff9c4;
}
.sec-single-blog__text-wrapper a:hover {
  background: #fff9c4;
}
.sec-single-blog__title-wrapper h1 {
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.25;
  margin: 12px 0 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  /* 蛍光マーカー風 */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, #fff6bf 62%);
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.sec-single-blog__flex-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}
.sec-single-blog__flex-box .sec-single-blog__date {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 6px 10px;
  font-size: 12px;
  color: #333;
  background: #fffbe9;
  border: 1px solid #ffe082;
  border-radius: 999px;
}
.sec-single-blog__flex-box .list-sns {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.sec-single-blog__flex-box .list-sns img {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 8px;
}
.sec-single-blog__author {
  margin-top: 28px;
  padding: 14px 16px;
  background: #fffbe9;
  border: 1px dashed #ffe082;
  border-radius: 12px;
  color: #333;
  font-size: 14px;
}

/* “一覧に戻る” ボタンをフロントCTA調に */
.archive-back__innerLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 12px 16px;
  background: #ffc107;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transition: all 0.2s ease;
}
.archive-back__innerLink:hover {
  background: #ffb300;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* タイトル周りのSNS並び崩れ対策（小画面） */
@media (max-width: 500px) {
  .sec-single-blog__inner {
    padding: 40px 14px 44px;
  }
}
/* =========================================
   吹き出し（ショートコード [say] 用）
   ========================================= */
.c-say {
  display: flex;
  gap: 12px;
  margin: 20px 0 26px;
  /* 三角 */
  /* モバイル微調整 */
}
.c-say--right {
  flex-direction: row-reverse;
}
.c-say__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  flex: 0 0 64px;
}
.c-say__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #fad25f;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) inset;
}
.c-say__avatar--placeholder {
  background: linear-gradient(135deg, #f5f5f5, #eee);
  display: inline-block;
}
.c-say__meta {
  text-align: center;
  margin-top: 6px;
}
.c-say__who {
  font-size: 12px;
  font-weight: 800;
  color: #222;
  display: block;
  line-height: 1.2;
}
.c-say__role {
  font-size: 11px;
  color: #666;
}
.c-say__bubble {
  position: relative;
  flex: 1;
  max-width: 100%;
  background: #fffbe9;
  border: 1px solid #fad25f;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.c-say--right .c-say__bubble {
  background: #fff;
  border-color: #febf03;
}
.c-say__content {
  padding: 14px 16px;
  color: #222;
}
.c-say__content p {
  margin: 0 0 0.8em;
  line-height: 1.85;
}
.c-say__content p:last-child {
  margin-bottom: 0;
}
.c-say__arrow {
  position: absolute;
  top: 16px;
  left: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right-color: #fad25f;
}
.c-say__arrow::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 1px;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-right-color: #fffbe9;
}
.c-say--right .c-say__arrow {
  left: auto;
  right: -8px;
  border-right-color: transparent;
  border-left-color: #febf03;
}
.c-say--right .c-say__arrow::after {
  left: auto;
  right: 1px;
  border-right-color: transparent;
  border-left-color: #fff;
}
@media (max-width: 480px) {
  .c-say__head {
    width: 48px;
    flex-basis: 48px;
  }
  .c-say__avatar {
    width: 44px;
    height: 44px;
  }
}

/* =========================================
   小物のブランド寄せ（任意）
   ========================================= */
/* H1の下線マーカーは少し濃いめ（heroの強調色寄り） */
.sec-single-blog__title-wrapper h1 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, #ffedba 62%);
}

/* 共有アイコンの角丸を統一 */
.list-sns img {
  border-radius: 8px;
}

/* パンくずカラー統一 */
.pankuzu-list a {
  color: #666;
}

/* ===== Related posts cards — text-only（TOPの記事カード風） ===== */
.related-posts {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  /* 中央500px想定：モバイル/PCとも1列で崩さない */
  /* テキストのみカード */
}
.related-posts__header {
  margin: 0 0 10px;
}
.related-posts__title {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}
.related-posts__title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #ffe082; /* $y-200 相当 */
  border-radius: 999px;
}
.related-posts__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.related-posts .rp-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  padding: 18px;
  min-width: 0; /* 長文でのハミ出し防止 */
  word-wrap: break-word;
  /* アイキャッチは使わないので念のため消す */
  /* タイトル（TOPの article-card.textonly 相当） */
  /* 抜粋（あれば） */
  /* 日付やカテゴリ等（あれば） */
}
.related-posts .rp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.related-posts .rp-card__thumb {
  display: none !important;
}
.related-posts .rp-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.related-posts .rp-card__title {
  color: #111;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.related-posts .rp-card__excerpt {
  color: #444;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.8;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.related-posts .rp-card__meta {
  margin-top: 10px;
  font-size: 12px;
  color: #999;
}

/* 既存出力が .yarpp-related/.related-entries などの場合も同じ見た目に */
.yarpp-related, .related-entries, .post-related {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  /* 内部構造が違っても最低限テキストカードに寄せる */
}
.yarpp-related a, .yarpp-related .entry, .yarpp-related .item, .related-entries a, .related-entries .entry, .related-entries .item, .post-related a, .post-related .entry, .post-related .item {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  padding: 18px;
}
.yarpp-related a:hover, .yarpp-related .entry:hover, .yarpp-related .item:hover, .related-entries a:hover, .related-entries .entry:hover, .related-entries .item:hover, .post-related a:hover, .post-related .entry:hover, .post-related .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.yarpp-related a img, .yarpp-related .entry img, .yarpp-related .item img, .related-entries a img, .related-entries .entry img, .related-entries .item img, .post-related a img, .post-related .entry img, .post-related .item img {
  display: none !important;
}
.yarpp-related a h3, .yarpp-related a .title, .yarpp-related .entry h3, .yarpp-related .entry .title, .yarpp-related .item h3, .yarpp-related .item .title, .related-entries a h3, .related-entries a .title, .related-entries .entry h3, .related-entries .entry .title, .related-entries .item h3, .related-entries .item .title, .post-related a h3, .post-related a .title, .post-related .entry h3, .post-related .entry .title, .post-related .item h3, .post-related .item .title {
  color: #111;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.yarpp-related a .excerpt, .yarpp-related .entry .excerpt, .yarpp-related .item .excerpt, .related-entries a .excerpt, .related-entries .entry .excerpt, .related-entries .item .excerpt, .post-related a .excerpt, .post-related .entry .excerpt, .post-related .item .excerpt {
  color: #444;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.8;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.yarpp-related a .meta, .yarpp-related .entry .meta, .yarpp-related .item .meta, .related-entries a .meta, .related-entries .entry .meta, .related-entries .item .meta, .post-related a .meta, .post-related .entry .meta, .post-related .item .meta {
  margin-top: 10px;
  font-size: 12px;
  color: #999;
}

/* single 下部の白フッター（余白だけ調整） */
.footer--single-pad {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* =========================================================
   Global: Join CTA + Footer (共通)
   ========================================================= */
/* === Join CTA === */
.join-cta-section {
  background: #FFFBE9;
  padding: 28px 16px 40px;
}

.join-cta-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 22px 18px;
  text-align: center;
}

.join-cta-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.5;
  color: #111;
  margin: 4px 0 10px;
  letter-spacing: 0.02em;
}

.join-cta-text {
  color: #000;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.join-cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, #DA3A21 0%, #D8361E 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn-join:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn-join:active {
  transform: translateY(0);
}

.btn-join:focus-visible {
  outline: 3px solid rgba(216, 54, 30, 0.35);
  outline-offset: 2px;
}

.btn-line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 30px;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn-line-cta:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn-line-cta:active {
  transform: translateY(0);
}

.btn-line-cta:focus-visible {
  outline: 3px solid rgba(0, 185, 0, 0.35);
  outline-offset: 2px;
}

/* aの下線/ボーダーを完全に無効化 */
.join-cta-actions a,
.btn-join, .btn-join:link, .btn-join:visited,
.btn-line-cta, .btn-line-cta:link, .btn-line-cta:visited {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

/* 改行させない＆幅いっぱいで中央寄せ */
.btn-join, .btn-line-cta {
  width: 100%;
  white-space: nowrap;
  line-height: 1;
}

/* === Footer === */
.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
}

.site-footer__inner {
  max-width: var(--content-max, 500px);
  margin: 0 auto;
  padding: 48px 16px;
  text-align: center;
  background-color: #FCFBF9;
}

.site-footer__inner h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.site-footer__inner p {
  font-size: 14px;
  color: #666;
}

.footer-links {
  margin-top: 12px;
}

.footer-link {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #666;
}

/* PC時に本文幅に揃える */
@media (min-width: 768px) {
  .join-cta-container {
    padding: 28px 22px;
  }
  .join-cta-title {
    font-size: 22px;
  }
  .join-cta-text {
    font-size: 15.5px;
  }
  .join-cta-actions {
    grid-template-columns: 1fr 1fr;
  }
  .btn-join, .btn-line-cta {
    font-size: 16.5px;
    padding: 14px 18px;
  }
}
/* ==========================
   Contact Page
   ========================== */
.contact-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 16px 80px;
  background: #fff;
}
.contact-page .contact-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-page .contact-lead {
  color: #444;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.8;
}
.contact-page .contact-methods {
  display: grid;
  gap: 20px;
}
.contact-page .contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
}
.contact-page .contact-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-page .contact-card__text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact-page .contact-form {
  margin-top: 20px;
}
.contact-page .contact-form input, .contact-page .contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  margin-bottom: 14px;
}
.contact-page .contact-form input[type=submit] {
  background: #ffc107;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-page .contact-form input[type=submit]:hover {
  background: #ffb300;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, var(--color-accent-light), var(--color-accent-super-light));
  z-index: -1;
}

/* 念のため、ヘッダー自体は透明のまま */
.header {
  background: transparent;
}

.header .header-content {
  background: #fff;
}

.main-content {
  max-width: 100%;
  margin: 0;
  background-color: #fff;
}
@media (min-width: 501px) {
  .main-content {
    max-width: 500px;
  }
}

/* ===== PC用：本文スクロール領域のスクロールバーをつかみやすく ===== */
@media (min-width: 1100px) {
  .main-content {
    /* スクロールバー分の余白を常に確保（ジャンプ防止） */
    scrollbar-gutter: stable both-edges;
    /* Chrome / Edge / Safari */
    /* ← 太さ */
    /* Firefox */
    scrollbar-width: thin; /* auto / thin */
    scrollbar-color: #999 #f0f0f0; /* thumb / track */
  }
  .main-content::-webkit-scrollbar {
    width: 12px;
  }
  .main-content::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  .main-content::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 6px;
    border: 2px solid #f0f0f0; /* つまみの外側に余白 */
  }
  .main-content::-webkit-scrollbar-thumb:hover {
    background-color: #666;
  }
  /* PCサイドメニュー & モバイル共通 応援ボタンにハートを付ける */
  .pc-menu__support::before,
.mobile-drawer .pc-menu__support::before {
    font-family: "Font Awesome 5 Free"; /* Font Awesome */
    font-weight: 900; /* solidアイコン用 */
    content: "\f004"; /* ハートアイコン */
    display: inline-block;
    margin-right: 8px; /* テキストとの間隔 */
    color: #e63946; /* 赤色ハート */
    font-size: 1.1em; /* テキストより少し大きめ */
    vertical-align: middle;
  }
  /* 左の固定メニューもつかみやすく（必要なら） */
  .pc-menu {
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #b3b3b3 #f0f0f0;
  }
  .pc-menu::-webkit-scrollbar {
    width: 12px;
  }
  .pc-menu::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  .pc-menu::-webkit-scrollbar-thumb {
    background-color: #b3b3b3;
    border-radius: 6px;
    border: 2px solid #f0f0f0;
  }
  .pc-menu::-webkit-scrollbar-thumb:hover {
    background-color: #8a8a8a;
  }
}
.header .header-content {
  margin: 0 auto;
  padding: 0.8rem 1rem;
  height: 84px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media (min-width: 501px) {
  .header .header-content {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 1100px) {
  .header .header-content {
    justify-content: flex-start;
  }
}
.header .logo {
  display: block;
  max-width: 200px;
  margin-bottom: -48px;
  height: auto;
}
.header .logo .logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1f1700;
  letter-spacing: 4px;
  text-align: center;
}
.header .logo .hope-letters {
  display: flex;
  gap: 2px;
  margin-top: -5px;
}
.header .logo .hope-letters .hope-letter {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.96px;
}
.header .logo .hope-letters .hope-letter.hope-h {
  background-color: #f44336;
}
.header .logo .hope-letters .hope-letter.hope-o {
  background-color: #4caf50;
  margin-left: -8px;
}
.header .logo .hope-letters .hope-letter.hope-p {
  background-color: #2196f3;
  margin-left: -8px;
}
.header .logo .hope-letters .hope-letter.hope-e {
  background-color: #fad25f;
  margin-left: -8px;
}
@media (min-width: 1100px) {
  .header .logo {
    margin-bottom: -40px;
  }
}
.header .header-actions {
  display: flex;
  align-items: flex-end;
}
.header .header-actions .member-button {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* 白背景 */
  border: 2px solid #000; /* 黒枠 */
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  /* Font Awesome ハート */
}
.header .header-actions .member-button::before {
  font-family: "Font Awesome 5 Free"; /* Font Awesome */
  font-weight: 900; /* solid アイコン */
  content: "\f004"; /* ハートアイコン */
  display: inline-block;
  margin-right: 8px;
  color: #e63946; /* 赤色ハート */
  font-size: 1.1em;
  vertical-align: middle;
}
.header .header-actions .member-button:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1100px) {
  .header .header-actions .member-button {
    padding: 8px 38px;
    margin-left: 28px;
    font-size: 14px;
  }
}
.header .header-actions .line-button-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
}
.header .header-actions .line-button-icon .line-logo {
  width: 40px;
  margin-left: 12px;
  height: 40px;
  background-size: cover;
  background-position: center;
}

/* === Auto-hide header & Mobile drawer === */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: transform 0.25s ease;
  overflow: visible; /* 通常ははみ出しOK */
}
.header .header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header .site-logo {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.header .line-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: #06C755;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

body.no-scroll {
  overflow: hidden;
}

/* Floating menu (mobile only) */
.floating-menu-btn {
  position: fixed;
  right: 16px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: #febf03;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* ← 縦並びにする */
  gap: 0; /* gapは使わず .bar の margin で調整 */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.floating-menu-btn .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.floating-menu-btn .bar + .bar {
  margin-top: 4px;
}
.floating-menu-btn.is-visible {
  display: flex;
}

@media (min-width: 769px) {
  .floating-menu-btn {
    display: none !important;
  }
}
/* トップへ戻るボタン（メニューの“少し上”に出す） */
.back-to-top-btn {
  position: fixed;
  right: 16px;
  bottom: calc(96px + env(safe-area-inset-bottom, 0)); /* メニューの上にずらす */
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: #febf03;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  /* 矢印（↑）をCSSだけで描く */
}
.back-to-top-btn .arrow-up {
  width: 12px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(45deg); /* ↖ を ↑ に見せる */
  margin-top: 2px; /* ちょい下げてバランス調整 */
}
.back-to-top-btn.is-visible {
  display: flex;
}

@media (min-width: 769px) {
  .back-to-top-btn {
    display: none !important;
  }
}
/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1150;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.drawer-backdrop.visible {
  opacity: 1;
}

.hero-section {
  position: relative;
  padding-bottom: 60px;
  /* 画像 + オーバーレイ（文字の可読性用） */
  /* テキスト */
  /* 既存の説明・CTAはそのまま（必要なら後で調整） */
}
.hero-section .hero-image {
  position: relative;
  width: 100%;
  height: clamp(340px, 52vh, 520px);
  overflow: hidden;
}
.hero-section .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(1.06) contrast(1.04);
}
.hero-section .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.14) 40%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-section .hero-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 2;
  /* 白帯は作らない */
  /* タイポグラフィ：背景白を使わず文字で読ませる */
}
.hero-section .hero-text .hero-line1, .hero-section .hero-text .hero-line2 {
  margin-bottom: 6px;
  /* 見出しの配色 */
}
.hero-section .hero-text .hero-line1::before, .hero-section .hero-text .hero-line2::before {
  display: none;
}
.hero-section .hero-text .hero-line1 h2, .hero-section .hero-text .hero-line1 .hero-h2-dark, .hero-section .hero-text .hero-line2 h2, .hero-section .hero-text .hero-line2 .hero-h2-dark {
  color: #fff;
}
.hero-section .hero-text .hero-line1 .highlight, .hero-section .hero-text .hero-line2 .highlight {
  color: #f1b000;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.hero-section .hero-text h1, .hero-section .hero-text h2 {
  margin: 0.15em 0;
  padding: 0;
  background: transparent;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.22);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.45;
}
.hero-section .hero-text h1 {
  font-weight: 800;
  font-size: clamp(20px, 6.8vw, 32px);
  white-space: normal;
}
.hero-section .hero-text h2 {
  font-weight: 700;
  font-size: clamp(16px, 4.5vw, 20px);
}
.hero-section .hero-description {
  padding: 17px 29px 0;
}
.hero-section .hero-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 31.4px;
}
.hero-section .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 48px 24px 0;
}
.hero-section .hero-cta .cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #089781;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hero-section .hero-line {
  width: 320px;
}
@media (min-width: 1100px) {
  .hero-section .hero-text {
    bottom: 32px;
    padding: 0 24px;
  }
  .hero-section .hero-text > * {
    max-width: 600px;
    width: 100%;
  }
}

/* Pattern B: ページ状態でヘッダーを隠す */
body.header-hidden #site-header {
  transform: translateY(-100%);
}

.section-header {
  margin-bottom: 24px;
  /* 色順固定：赤 → 緑 → 青 → 黄 */
  /* 赤 */
  /* 緑 */
  /* 青 */
  /* 黄 */
}
.section-header .section-title-en {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px; /* タイトルとドットの余白 */
}
@media (min-width: 1100px) {
  .section-header .section-title-en {
    font-size: 20px;
  }
}
.section-header .dots {
  display: flex;
  gap: 6px; /* ドット間の余白 */
}
.section-header .dots span {
  display: block;
  width: 8px; /* ドットサイズ */
  height: 8px;
  border-radius: 50%;
}
.section-header .dots span:nth-child(1) {
  background-color: #f44336;
}
.section-header .dots span:nth-child(2) {
  background-color: #4caf50;
}
.section-header .dots span:nth-child(3) {
  background-color: #2196f3;
}
.section-header .dots span:nth-child(4) {
  background-color: #febf03;
}
.section-header .section-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.96px;
  color: #febf03;
  margin-bottom: 1px;
}
@media (min-width: 1100px) {
  .section-header .section-title-jp {
    font-size: 24px;
  }
}

.issues-section {
  background-color: #f9f9f9;
  padding: 48px 24px;
  border-top: 3px solid #222; /* お好みの色・太さに調整 */
}
.issues-section .issues-main-title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 32px;
  letter-spacing: 1.6px;
  line-height: 44.8px;
  margin-bottom: 40px;
}
.issues-section .statistics {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 24px;
}
.issues-section .statistics .stat-card {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 6px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
  justify-content: center;
}
.issues-section .statistics .stat-card:last-child {
  border-bottom: none;
}
.issues-section .statistics .stat-card.stat-card-large {
  padding-bottom: 0px;
}
.issues-section .statistics .stat-card.stat-card-large .stat-image img {
  width: 327px;
  -o-object-fit: cover;
     object-fit: cover;
}
.issues-section .statistics .stat-card .stat-image img {
  max-width: 160px;
  height: auto;
}
.issues-section .statistics .stat-card .stat-content {
  padding-left: 0.8rem;
}
.issues-section .statistics .stat-card .stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #2196f3;
  font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 0px;
  white-space: nowrap;
}
.issues-section .statistics .stat-card .stat-number .big-number {
  font-family: "Roboto Mono", monospace;
  font-style: italic;
  font-weight: 800;
  font-size: 64px;
}
.issues-section .statistics .stat-card .stat-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  letter-spacing: 2px;
  padding-bottom: 24px;
}
.issues-section .statistics .stat-card .stat-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  line-height: 36.4px;
  margin-bottom: 16px;
}
.issues-section .statistics .stat-card .stat-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #2196f3;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 28px;
}
.issues-section .statistics .stat-card .stat-number-small {
  display: flex;
  align-items: baseline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #2196f3;
  font-size: 18px;
  letter-spacing: 1.6px;
  line-height: 39.2px;
}
.issues-section .statistics .stat-card .stat-number-small .number {
  font-weight: 700;
  font-size: 54px;
  line-height: 54px;
}
.issues-section .issues-conclusion {
  margin-top: 0px;
}
.issues-section .issues-conclusion p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 18px;
  line-height: 38px;
}

.about-section {
  background-color: #fffbe9;
  padding: 48px 24px 64px;
}
.about-section .about-mission h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 32px;
  letter-spacing: 1.6px;
  line-height: 54px;
  margin-bottom: 32px;
}
.about-section .about-description {
  margin-top: 0px;
  margin-bottom: 24px;
}
.about-section .about-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 18px;
  line-height: 32px;
}
.about-section .about-features {
  display: flex;
  justify-content: space-around;
}
.about-section .about-cta, .about-section .plans-cta {
  margin-top: 48px;
  margin-bottom: 0;
}

.line-button {
  width: 100%;
  height: 64px;
  background-color: #00b900;
  border-radius: 32px;
  color: #fff;
  font-size: 17.6px;
  letter-spacing: 1.6px;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
}
.line-button:hover {
  background-color: #00a000;
}

.educational-section {
  padding: 48px 16px 64px;
  background-color: #f8f9fa;
}
.educational-section .educational-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.educational-section .edu-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.educational-section .edu-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.educational-section .edu-card .edu-icon {
  flex-shrink: 0;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.educational-section .edu-card img {
  width: 85%;
  height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: none;
}
.educational-section .edu-content {
  flex: 1;
}
.educational-section .edu-content p {
  text-align: center;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
}
.educational-section .edu-content .edu-title-en {
  font-size: 16px;
  font-weight: bold;
  color: #febf03;
  margin: 0;
  font-family: "Arial", sans-serif;
}
.educational-section .edu-content .edu-title-jp {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0;
}
.educational-section .educational-cta {
  margin-top: 48px;
  margin-bottom: 0;
  text-align: center;
}
.educational-section .educational-cta .content-button {
  background: #febf03;
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  width: 100%;
  max-width: 480px;
}

.pickup-section {
  padding: 24px 0;
  background: #f7f7f7;
  /* 見出し */
  /* 記事ラベルのアイコン */
  /* 横スクロール（モバイル基準） */
  /* カード共通（YouTube / 記事） */
  /* カード内リンク（色継承・下線なし） */
  /* 16:9（YouTube サムネ） */
  /* スケルトン */
  /* ===== 記事カード（テキストのみ）：モバイル基準 ===== */
  /* 記事だけ少し細く */
  /* タイポ：モバイルはタイトル3行、抜粋は非表示（軽く） */
  /* タブレット/PCで情報追加：抜粋表示＆タイトル2行 */
  /* もっと見るボタン */
}
.pickup-section .pickup-container {
  padding: 0 16px;
}
.pickup-section .pickup-block {
  margin-top: 18px;
}
.pickup-section .pickup-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .pickup-section .pickup-label {
    font-size: 22px;
    line-height: 1.9;
    font-family: "Poppins", sans-serif;
  }
}
.pickup-section .pickup-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.pickup-section .pickup-label .fa-file-lines {
  font-size: 24px; /* サイズ */
  color: #febf03; /* 色 */
  margin-right: 6px; /* テキストとの間隔 */
  flex-shrink: 0; /* 横幅狭くてもつぶれない */
}
.pickup-section .hscroll {
  position: relative;
}
.pickup-section .htrack {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 6px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 6px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.pickup-section .htrack::-webkit-scrollbar {
  height: 8px;
}
.pickup-section .htrack::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.pickup-section .htrack::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
}
.pickup-section .pickup-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(260px, 86%, 520px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pickup-section .thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.pickup-section .card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.pickup-section .card-body .title {
  font-weight: 700;
  line-height: 1.5;
}
.pickup-section .card-body .meta {
  font-size: 12px;
  color: #666;
  margin-top: auto;
}
.pickup-section .pickup-card .card-link,
.pickup-section .pickup-card .card-link:link,
.pickup-section .pickup-card .card-link:visited {
  display: block;
  color: inherit;
  text-decoration: none !important;
}
.pickup-section .pickup-card .card-link:hover {
  text-decoration: none;
}
.pickup-section .ratio-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.pickup-section .ratio-16x9 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup-section .article-card.is-skeleton {
  height: 180px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
  background-size: 400% 100%;
  -webkit-animation: skeleton 1.4s ease-in-out infinite;
          animation: skeleton 1.4s ease-in-out infinite;
}
@-webkit-keyframes skeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes skeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.pickup-section .article-card {
  width: clamp(260px, 75%, 420px);
}
.pickup-section .article-card.textonly {
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.pickup-section .article-card.textonly:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.pickup-section .article-card.textonly .card-body {
  padding: 18px 18px 16px;
  gap: 10px;
}
.pickup-section .article-card.textonly .badge {
  align-self: flex-start;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: #f2f4f7;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}
.pickup-section .article-card.textonly .title {
  color: #111;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* ← 標準 + webkit 併記 */
}
.pickup-section .article-card.textonly .excerpt {
  display: none;
}
@media (min-width: 600px) {
  .pickup-section .article-card.textonly .title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .pickup-section .article-card.textonly .excerpt {
    display: block;
    color: #444;
    font-weight: 500;
    font-size: 13.5px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .pickup-section .article-card.textonly .meta {
    margin-top: auto;
    font-size: 12px;
    color: #999;
  }
}
.pickup-section .blog-button {
  margin-top: 28px;
  text-align: center;
}
.pickup-section .btn-blog {
  display: inline-block;
  background: #ffc107;
  color: #333;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
.pickup-section .btn-blog:hover {
  background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
.pickup-section .btn-blog:active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .pickup-section .btn-blog {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 30px;
  }
}
@media (min-width: 1024px) {
  .pickup-section .btn-blog {
    padding: 20px 45px;
    font-size: 16px;
  }
}

.vision-section {
  padding: 48px;
  background-color: #fefcfa;
}
.vision-section .vision-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.vision-section .vision-cards .vision-letter {
  padding: 12px 18px;
  background: #fff;
  border: 3px solid #000;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}
.vision-section .vision-cards .vision-letter:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.vision-section .vision-cards .vision-letter .vision-icon {
  font-family: "Poppins", sans-serif;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}
.vision-section .vision-cards .vision-letter .vision-icon.happiness {
  background-color: #f44336;
}
.vision-section .vision-cards .vision-letter .vision-icon.opportunity {
  background-color: #4caf50;
}
.vision-section .vision-cards .vision-letter .vision-icon.playfulness {
  background-color: #2196f3;
}
.vision-section .vision-cards .vision-letter .vision-icon.encouragement {
  background-color: #fad25f;
}
.vision-section .vision-cards .vision-letter .vision-content {
  flex: 1;
}
.vision-section .vision-cards .vision-letter .vision-content .vision-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  font-family: "Poppins", sans-serif;
  margin: 0 0 2px 0;
  letter-spacing: 1px;
}
.vision-section .vision-cards .vision-letter .vision-content .vision-subtitle {
  font-size: 14px;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

.principal-section {
  padding: 48px 24px;
  background-color: #f5f3e7;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.principal-image {
  margin: auto;
  text-align: center;
  height: 300px;
  overflow: hidden;
  border: 3px solid #333;
  border-radius: 8px;
  position: relative;
}
.principal-image img {
  width: 150%;
  height: 150%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: -20%;
  left: 0%;
}

.principal-info {
  text-align: left;
}
.principal-info .principal-name {
  margin: 16px 0 4px 0;
}
.principal-info .principal-name .name-reading {
  font-size: 12px;
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
}
.principal-info .principal-name .name-kanji {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  letter-spacing: 1px;
}
.principal-info .principal-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}
.principal-info .principal-bio {
  text-align: left;
  margin-bottom: 30px;
}
.principal-info .principal-bio p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 15px;
}
.principal-info .principal-bio p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1100px) {
  .principal-info .principal-bio {
    font-size: 18px;
  }
}
.principal-info .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.principal-info .social-links .social-link {
  display: inline-block;
  padding: 10px 16px;
  background-color: #fff;
  border: 2px solid #FFA500;
  border-radius: 25px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
  min-width: calc(50% - 5px);
  text-align: center;
}
@media (min-width: 1100px) {
  .principal-info .social-links .social-link {
    font-size: 18px;
  }
}
.principal-info .social-links .social-link:hover {
  background-color: #FFA500;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}
.principal-info .social-links .social-link:nth-child(1) {
  border-color: #ff0000;
}
.principal-info .social-links .social-link:nth-child(1):hover {
  background-color: #ff0000;
}
.principal-info .social-links .social-link:nth-child(2) {
  border-color: #e4405f;
}
.principal-info .social-links .social-link:nth-child(2):hover {
  background-color: #e4405f;
}
.principal-info .social-links .social-link:nth-child(3) {
  border-color: #1da1f2;
}
.principal-info .social-links .social-link:nth-child(3):hover {
  background-color: #1da1f2;
}
.principal-info .social-links .social-link:nth-child(4) {
  border-color: #4caf50;
}
.principal-info .social-links .social-link:nth-child(4):hover {
  background-color: #4caf50;
}

.plans-section {
  padding: 40px 20px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}
@media (min-width: 768px) {
  .plans-section {
    padding: 60px 40px 80px;
  }
}
@media (min-width: 1024px) {
  .plans-section {
    padding: 80px 60px 100px;
  }
}

.section-header {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.plans-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
}
.plans-intro p {
  color: #555;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 768px) {
  .plans-intro p {
    font-size: 18px;
    line-height: 1.9;
  }
}
@media (min-width: 768px) {
  .plans-intro {
    margin-bottom: 50px;
  }
}

.plan-features {
  max-width: 400px;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .plan-features {
    max-width: 500px;
    margin-bottom: 60px;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .feature-item {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 15px;
  }
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
}
.feature-item:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-radius: 50%;
}
.feature-item:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #4ecdc4, #6fd4cd);
  border-radius: 50%;
}
.feature-item:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #ffd93d, #ffe066);
  border-radius: 50%;
}
.feature-item:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #74b9ff, #81c7ff);
  border-radius: 50%;
}

.feature-text {
  flex: 1;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}
.feature-text strong {
  font-weight: 700;
  font-size: 16px;
}
@media (min-width: 768px) {
  .feature-text {
    font-size: 15px;
    line-height: 1.7;
  }
  .feature-text strong {
    margin-bottom: 6px;
  }
}

.plans-individual,
.plans-corporate {
  max-width: 320px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .plans-individual,
.plans-corporate {
    max-width: 450px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .plans-individual,
.plans-corporate {
    max-width: 500px;
  }
}

.plan-category-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .plan-category-title {
    font-size: 28px;
    margin-top: 40px;
  }
}

.plan-card {
  background: white;
  border-radius: 15px;
  padding: 18px 14px 26px 14px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}
.plan-card h4 {
  font-size: 26px;
  text-align: center;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.plan-card.premium {
  background: linear-gradient(135deg, #fff9c4, #fff3a0);
  position: relative;
}
@media (min-width: 768px) {
  .plan-card {
    padding: 35px 30px;
    border-radius: 20px;
  }
}

.plan-icon {
  text-align: center;
}
.plan-icon img {
  width: 50px;
  height: 50px;
}
@media (min-width: 768px) {
  .plan-icon {
    margin-bottom: 20px;
    justify-items: center;
  }
  .plan-icon img {
    width: 60px;
    height: 60px;
  }
}

.plan-price {
  text-align: center;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.plan-price .price {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0 2px;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .plan-price {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .plan-price .price {
    font-size: 36px;
  }
}

.plan-benefits {
  margin-left: 20px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.plan-benefits li {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
@media (min-width: 768px) {
  .plan-benefits {
    margin-bottom: 35px;
  }
}

/* ========== CTA（申し込む）仕上げ版 ========== */
/* 使い回し変数（任意） */
/* ベース */
/* 料金カードの申込ボタン専用（他ボタンへは影響なし） */
.plan-button {
  /* レイアウト */
  width: 100%;
  max-width: 360px;
  padding: 16px 24px;
  border-radius: 999px;
  /* タイポ & 色（ブランドの黄色に寄せる） */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #1f1700; /* 読みやすい濃いブラウン */
  text-align: center;
  /* “のっぺり”回避のための軽い質感 */
  background: linear-gradient(180deg, #ffe36d 0%, #febf03 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  /* 外シャドウ + うっすら内側ハイライトで柔らかい立体感 */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6); /* 上側のハイライト */
  /* 右端に矢印（Font Awesome） */
  position: relative;
  /* インタラクション */
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  /* キーボード操作の可視フォーカス */
  /* 無効時（必要なら） */
  /* 端末が“動きを少なく”設定している場合の配慮 */
}
.plan-button::after {
  content: "\f061"; /* FA: arrow-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.95em;
  margin-left: 0.5em;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.18s ease;
}
.plan-button:hover {
  background: linear-gradient(180deg, #ffd944 0%, #f2b503 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.plan-button:hover::after {
  transform: translateX(2px);
}
.plan-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.plan-button:focus-visible {
  outline: 3px solid rgba(255, 193, 7, 0.6);
  outline-offset: 2px;
}
.plan-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  background: #f1e1a6;
}
@media (prefers-reduced-motion: reduce) {
  .plan-button {
    transition: none;
  }
  .plan-button::after {
    transition: none;
  }
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* 小さめカードで余白を整えたい時だけ */
.plan-card .plan-button {
  margin-top: 10px;
}

.title-cp {
  margin-bottom: 8px;
}

.corporate-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 12px;
}

.corporate-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .corporate-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.cta-text {
  text-align: center;
  font-size: 16px;
  color: #089781;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.events-section {
  background-color: #FFFBE9;
  padding: 40px 20px 60px;
}
@media (min-width: 768px) {
  .events-section {
    padding: 60px 40px 80px;
  }
}
@media (min-width: 1024px) {
  .events-section {
    padding: 80px 60px 100px;
  }
}

.events-container {
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .events-container {
    max-width: 600px;
  }
}
@media (min-width: 1024px) {
  .events-container {
    max-width: 700px;
  }
}

.section-title {
  margin-bottom: 30px;
}
.section-title .dots {
  font-size: 12px;
  color: #ffc107;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .section-title .dots {
    font-size: 14px;
  }
}

.events-description {
  margin-bottom: 30px;
}
.events-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .events-description p {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .events-description p {
    font-size: 16px;
  }
}
.events-description p.notice {
  font-size: 12px;
  color: #666;
}
@media (min-width: 768px) {
  .events-description p.notice {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  .events-description p.notice {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .events-description {
    margin-bottom: 40px;
  }
}

.calendar-header {
  background: #ffc107;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}
.calendar-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0;
}
@media (min-width: 768px) {
  .calendar-header h4 {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .calendar-header h4 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .calendar-header {
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 25px;
  }
}

.calendar-embed {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.calendar-embed #external-calendar {
  position: relative;
  width: 100%;
  /* 画面に応じて可変。最小560px、基本は画面の80%、最大1000px */
  height: clamp(400px, 40dvh, 800px);
  background: #fff;
  /* iOSの新しい動的vhが使える場合はそちらを優先 */
}
@supports (height: 100dvh) {
  .calendar-embed #external-calendar {
    height: clamp(400px, 40dvh, 800px);
  }
}
.calendar-embed #external-calendar iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  /* 親で角丸をかけているので二重角丸を避けたい場合は 0 に */
  border-radius: 0;
}
@media (min-width: 768px) {
  .calendar-embed {
    border-radius: 15px;
    margin-bottom: 40px;
  }
}

.calendar-button {
  text-align: center;
}
.calendar-button .btn-calendar {
  display: inline-block;
  background: #ffc107;
  color: #333;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  border: none;
  cursor: pointer;
}
.calendar-button .btn-calendar:hover {
  background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
.calendar-button .btn-calendar:active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .calendar-button .btn-calendar {
    padding: 20px 50px;
    font-size: 18px;
    border-radius: 35px;
  }
}

.calendar-loading {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 14px;
}
.calendar-loading::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ffc107;
  border-top: 2px solid transparent;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .calendar-loading {
    font-size: 16px;
    padding: 80px 20px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.media-section {
  background-color: #f8f8f6;
  padding: 40px 20px 60px;
}
@media (min-width: 768px) {
  .media-section {
    padding: 60px 40px 80px;
  }
}
@media (min-width: 1024px) {
  .media-section {
    padding: 80px 60px 100px;
  }
}

.media-container {
  max-width: 100%;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 25px;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .section-title h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1024px) {
  .section-title h2 {
    font-size: 36px;
  }
}
.section-title .dots {
  font-size: 12px;
  color: #ffc107;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .section-title .dots {
    font-size: 14px;
  }
}
.section-title .media-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #ffc107;
  margin: 0;
}
@media (min-width: 768px) {
  .section-title .media-subtitle {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .section-title .media-subtitle {
    font-size: 24px;
  }
}

.media-description {
  margin-bottom: 30px;
}
.media-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
@media (min-width: 768px) {
  .media-description p {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .media-description p {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .media-description {
    margin-bottom: 40px;
  }
}

.media-slider {
  margin-bottom: 40px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .media-slider {
    margin-bottom: 50px;
  }
}

.media-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 15px;
  width: 100%;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #ffc107 #f0f0f0;
}
.media-track::-webkit-scrollbar {
  height: 8px;
}
.media-track::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}
.media-track::-webkit-scrollbar-thumb {
  background: #ffc107;
  border-radius: 4px;
}
.media-track::-webkit-scrollbar-thumb:hover {
  background: #ffb300;
}
@media (min-width: 768px) {
  .media-track {
    gap: 25px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .media-track {
    gap: 30px;
  }
}

.media-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 28px;
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
}
.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .media-item {
    border-radius: 15px;
    width: 300px;
    min-width: 300px;
  }
}
@media (min-width: 1024px) {
  .media-item {
    width: 320px;
    min-width: 320px;
  }
}

.media-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f0f0f0;
}
.media-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .media-image {
    height: 220px;
  }
}
@media (min-width: 1024px) {
  .media-image {
    height: 240px;
  }
}

.media-item:hover .media-image img {
  transform: scale(1.05);
}

.media-content {
  padding: 20px;
}
@media (min-width: 768px) {
  .media-content {
    padding: 25px;
  }
}

.media-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .media-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1024px) {
  .media-title {
    font-size: 18px;
  }
}

.media-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}
@media (min-width: 768px) {
  .media-excerpt {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .media-excerpt {
    font-size: 14px;
    line-height: 1.6;
  }
}

.media-more {
  margin-top: 28px;
  text-align: center;
}
.media-more .btn-more {
  display: inline-block;
  background: #ffc107;
  color: #333;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
.media-more .btn-more:hover {
  background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
.media-more .btn-more:active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .media-more .btn-more {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 30px;
  }
}
@media (min-width: 1024px) {
  .media-more .btn-more {
    padding: 20px 45px;
    font-size: 16px;
  }
}

.media-image:empty {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-image:empty::before {
  content: "📷";
  font-size: 40px;
  opacity: 0.5;
}

.media-item.loading .media-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  -webkit-animation: loading 1.5s infinite;
          animation: loading 1.5s infinite;
}
.media-item.loading .media-title,
.media-item.loading .media-excerpt {
  background: #f0f0f0;
  color: transparent;
  border-radius: 4px;
}

@-webkit-keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.social-section {
  background-color: #fff9e6;
  padding: 40px 20px;
  text-align: center;
}

.social-container {
  max-width: 500px;
  margin: 0 auto;
}

.social-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* 白背景消す */
  /* YouTube だけ小さめに */
}
.social-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.social-icon 　[href*="youtube.com"] img {
  transform: scale(1.2);
}
.social-icon.line {
  background-color: #00c300;
}
.social-icon.youtube {
  background-color: #ff0000;
}
.social-icon.x {
  background-color: #000000;
}
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icon.facebook {
  background-color: #1877f2;
}
.social-icon.tiktok {
  background-color: #000000;
}

.contact-section {
  padding: 36px 20px 40px;
  text-align: center;
}

.contact-container {
  max-width: 500px;
  margin: 0 auto;
}

.contact-icon {
  justify-items: center;
  margin-bottom: 20px;
}
.contact-icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: left;
}

.contact-button {
  background: #ffc107;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 18px 50px;
  font-size: 16px;
  letter-spacing: 1.4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  width: 100%;
  max-width: 300px;
}
.contact-button:hover {
  background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
.contact-button:active {
  transform: translateY(0);
}

.footer {
  background-color: #FCFBF9;
  padding: 64px 20px 30px;
  text-align: center;
}

.footer-container {
  max-width: 500px;
  margin: 0 auto;
}

.footer-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1F1700;
  margin-bottom: 8px;
  letter-spacing: 2.4px;
}
.footer-content p {
  letter-spacing: 1.8px;
  color: #333;
}

.footer-tagline {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.footer-links {
  padding-top: 72px;
}

.footer-link {
  display: inline-block;
  font-size: 12px;
  color: #666;
  text-decoration: none;
  margin-bottom: 10px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.footer-link:hover {
  border-bottom-color: #666;
}

.footer-copyright {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.pc-social-section {
  display: none;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.plans-section {
  -webkit-animation: fadeInUp 0.8s ease-out;
          animation: fadeInUp 0.8s ease-out;
}

.feature-item,
.plan-card {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.feature-item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.plan-card:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.plan-card:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@media (max-width: 500px) {
  .main-content {
    max-width: 100%;
  }
  .about-section .about-features {
    flex-direction: inherit;
    height: auto;
    gap: 4px;
    text-align: center;
  }
  .about-section .about-features .feature-card {
    position: static;
    width: 100% !important;
  }
  .vision-section .vision-cards {
    grid-template-columns: 1fr;
  }
  .plans-section .plan-cards {
    gap: 24px;
  }
  .plans-section .feature-item {
    gap: 1px;
  }
}
@media (max-width: 400px) {
  .header .logo .logo-text {
    font-size: 28px;
  }
  .header .logo .hope-letters .hope-letter {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  .hero-section .hero-text .hero-line1 span, .hero-section .hero-text .hero-line2 span {
    font-size: 24px;
  }
  .hero-section .hero-text .hero-line2 .highlight {
    font-size: 20px;
  }
  .hero-section .hero-description p {
    font-size: 18px;
  }
  .issues-section .issues-main-title h2 {
    font-size: 28px;
  }
  .about-section .about-mission h2 {
    font-size: 28px;
  }
}
/* =============== 共通カスタムプロパティ =============== */
:root {
  --content-max: 500px;
  --gutter: 0px;
  --header-h: 84px; /* ヘッダー高を明示 */
}

/* =============== PCレイアウト：共通 =============== */
@media (min-width: 1100px) {
  /* 画面は固定、高さは100vh。本文だけスクロールさせる */
  html,
body.home,
body.blog,
body.single,
body.single-post,
body.single-blog,
body.archive,
body.post-type-archive-blog,
body.error404 {
    height: 100%;
  }
  body.home,
body.blog,
body.single,
body.single-post,
body.single-blog,
body.archive,
body.post-type-archive-blog,
body.error404 {
    overflow: hidden;
  }
  /* レイアウトの骨格（左右の帯 + 中央500px） */
  .home .layout,
.blog .layout,
.single .layout,
.single-post .layout,
.single-blog .layout,
.archive .layout,
.post-type-archive-blog .layout,
.error404 .layout {
    --sidebar-w: max(220px, calc((min(100vw, 100svw) - var(--content-max)) / 2));
    display: flex;
    height: 100vh;
    background: #fad25f; /* 両脇の黄色 */
  }
  /* 中央の本文（常に500px幅） */
  .home .main-content,
.blog .main-content,
.single .main-content,
.single-post .main-content,
.single-blog .main-content,
.archive .main-content,
.post-type-archive-blog .main-content,
.error404 .main-content {
    position: relative;
    width: var(--content-max);
    max-width: none;
    margin: 0 0 0 calc(var(--sidebar-w) + var(--gutter)); /* 左帯ぶんオフセット */
    /* sticky ヘッダーは自分の高さぶんスペースを持つので余白は不要 */
    padding-top: 0;
    height: 100vh;
    overflow-y: auto; /* 本文だけスクロール */
    background: #fff;
  }
  /* PCのSNSレール：本文の右肩に沿わせる */
  .pc-social-links {
    position: fixed;
    top: calc(var(--header-h) + 20px);
    /* 画面の中心 + (本文幅/2) + 余白 */
    left: calc(50vw + var(--content-max) / 2 + 24px);
    right: auto; /* ← 念のため打ち消し */
    z-index: 60;
  }
  .pc-social-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 1099.98px) {
  .pc-social-links {
    display: none;
  }
}
/* =============== Tabletレイアウト：yellow帯あり／サイドメニュー無し =============== */
@media (min-width: 768px) and (max-width: 1099.98px) {
  /* 念のためPCメニューは完全に消す */
  .pc-menu {
    display: none !important;
  }
  /* ターゲットとなるページ郡（PCブロックと同じ範囲） */
  body.home,
body.blog,
body.single,
body.single-post,
body.single-blog,
body.archive,
body.post-type-archive-blog,
body.error404 {
    /* タブレットでは本文を普通にスクロールさせたい */
    overflow: visible;
    height: auto;
  }
  /* レイアウトの骨格：左右の帯＋中央500pxを中央寄せ */
  .home .layout,
.blog .layout,
.single .layout,
.single-post .layout,
.single-blog .layout,
.archive .layout,
.post-type-archive-blog .layout,
.error404 .layout {
    display: flex; /* 中央の本文をセンター寄せ */
    justify-content: center;
    background: #fad25f; /* ← 両脇の黄色 */
    min-height: 100vh; /* 画面いっぱいは確保 */
  }
  /* 中央の本文：常に500px幅、中央配置 */
  .home .main-content,
.blog .main-content,
.single .main-content,
.single-post .main-content,
.single-blog .main-content,
.archive .main-content,
.post-type-archive-blog .main-content,
.error404 .main-content {
    width: var(--content-max); /* = 500px */
    max-width: none;
    margin: 0; /* flexの中央寄せに任せる */
    background: #fff;
    min-height: 100vh; /* ヘッダー下から伸びる */
    height: auto;
    overflow-y: visible; /* ページ全体でスクロール */
  }
}
/* ===== Blog Archive（モバイルファースト／PCでも1カラム固定） ===== */
.archive-blog {
  background: #fff;
}

.archive-blog__inner {
  max-width: var(--content-max, 500px); /* 既存設計に合わせて500px中心 */
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.archive-blog__header {
  text-align: center;
  margin-bottom: 16px;
}
.archive-blog__header h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.4;
}
.archive-blog__header img {
  display: block;
  margin: 0 auto;
  width: 56px;
  height: auto;
}

/* リスト本体：常に縦1列 */
.blog2-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* a 全体クリック（色継承＆下線排除） */
.blog2-list > a {
  color: inherit;
  text-decoration: none;
}

/* カード */
.blog2-list__item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  padding: 14px 14px 12px;
}
.blog2-list__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

/* カード上部のメタ行（カテゴリ・日付） */
.blog2-list__item .flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.blog-category h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  background: #febf03; /* ブランド黄色 */
  padding: 4px 8px;
  border-radius: 999px;
}

.blog-date {
  font-size: 12px;
  color: #777;
  white-space: nowrap;
}

/* タイトル */
.article02__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: #111;
  margin: 2px 0 8px;
}

/* 抜粋：2行で省略 */
.blog-item__read {
  font-size: 13.5px;
  color: #444;
  line-height: 1.8;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin: 0 0 8px;
}

/* フッター行（著者・矢印） */
.blog2-list__item .author {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.blog2-list__item .arrow img {
  width: 20px;
  height: 20px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

/* 画像の枠（サムネが不要なら figure はそのままテキストブロックに） */
.blog2-list__item figure {
  margin: 0;
  display: block;
}

/* ページネーション（前後） */
.pagenation {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.pagenation a {
  display: inline-block;
  background: #febf03;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pagenation a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* PCでも同じ1カラムを維持（中央500px） → 追加指定不要 */
/* =======================
   Single (default post)
   ※ sec-single-blog とは分離
   ======================= */
/* パンくず（共通仕様だが単独でも動くよう再掲） */
.pankuzu-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  flex-wrap: nowrap;
}
.pankuzu-list > div {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}
.pankuzu-list a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #666;
}
.pankuzu-list .link::after, .pankuzu-list .topics-link::after {
  content: "›";
  display: inline-block;
  margin: 0 4px;
  color: #aaa;
}
.pankuzu-list .link-name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}

/* 記事詳細のSNS共有リスト */
.sec-single .list-sns {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}

.sec-single .list-sns li {
  list-style: none;
}

/* 本文レイアウト */
.sec-single {
  background: #fff;
  /* アイキャッチあり */
}
.sec-single__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 24px 16px 56px;
}
.sec-single .thumb {
  margin: 14px 0 18px;
}
.sec-single .thumb .thumb__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f7f7f7;
}
.sec-single .thumb .thumb__img--fallback {
  filter: saturate(0.9);
}
.sec-single__text-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 18px;
}
.sec-single__text-wrapper p {
  line-height: 1.9;
  color: #000;
  font-weight: 500;
  margin: 1em 0;
}
.sec-single__text-wrapper img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  height: auto;
  display: block;
  max-width: 100%;
}
.sec-single__text-wrapper h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 2.2em 0 0.6em;
  font-weight: 800;
  color: #111;
  border-left: 10px solid #febf03;
  padding-left: 0.6em;
}
.sec-single__text-wrapper h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 2em 0 0.5em;
  font-weight: 700;
  color: #2a2a2a;
}
.sec-single__text-wrapper ul, .sec-single__text-wrapper ol {
  padding-left: 1.4em;
}
.sec-single__text-wrapper blockquote {
  margin: 1.6em 0;
  padding: 1em 1.2em;
  background: #fffbe9;
  border-left: 6px solid #fad25f;
  color: #333;
  border-radius: 12px;
}
.sec-single__text-wrapper a {
  color: #1a1a1a;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-color: #fad25f;
          text-decoration-color: #fad25f;
  box-shadow: inset 0 -2px 0 #fff9c4;
}
.sec-single__text-wrapper a:hover {
  background: #fff9c4;
}
.sec-single__title-wrapper h1 {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.25;
  margin: 12px 0 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, #fff6bf 62%); /* 蛍光マーカー風 */
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.sec-single__flex-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}
.sec-single__flex-box .sec-single__date {
  padding: 5px 10px;
  font-size: 11.5px;
  line-height: 1;
  border-radius: 999px;
  background: #fffbe9;
  border: 1px solid #ffe082;
  color: #333;
  white-space: nowrap;
}
.sec-single__flex-box .list-sns {
  list-style: none; /* 「・」除去 */
  padding-left: 0; /* 左インデント除去 */
  margin: 0 0 0 auto; /* 行の右端へ寄せる */
  display: flex;
  align-items: center;
  gap: 10px; /* アイコン間の間隔 */
}
.sec-single__flex-box .list-sns li {
  list-style: none;
}
.sec-single__tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #333;
  border: 1px solid #eee;
}
.sec-single__author {
  margin-top: 28px;
  padding: 14px 16px;
  background: #fffbe9;
  border: 1px dashed #ffe082;
  border-radius: 12px;
  color: #333;
  font-size: 14px;
}

/* “一覧に戻る” を共通CTA風に */
.archive-back__innerLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 12px 16px;
  background: #ffc107;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transition: all 0.2s ease;
}
.archive-back__innerLink:hover {
  background: #ffb300;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* アイコンサイズ＋ホバーの軽い反応（派手にしない） */
.sec-single .list-sns img {
  width: 28px;
  height: 28px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.sec-single .list-sns a:hover img {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* 余白の最終調整：アイキャッチ・本文の前後を少しゆるく */
.sec-single .thumb {
  margin: 10px 0 16px;
}

.sec-single__text-wrapper {
  padding-top: 14px;
} /* 本文前にうっすら余白 */
/* 小画面の余白 */
@media (max-width: 500px) {
  .sec-single__inner {
    padding: 40px 14px 44px;
  }
}
/* もし関連記事の「画像非表示」を single.php だけで使いたい場合はモディファイアを付ける想定
   <section class="related-posts related-posts--textonly"> … </section> */
.related-posts--textonly .rp-card__thumb, .related-posts--textonly img {
  display: none !important;
}

/* ====== Home一覧カード：アイキャッチつき ====== */
.archive-page {
  background: #fff;
}

.archive-page__inner {
  max-width: var(--content-max, 500px);
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.archive-page__header {
  text-align: center;
  margin-bottom: 16px;
}
.archive-page__header h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.4;
}
.archive-page__header img {
  display: block;
  margin: 0 auto;
  width: 120px;
  height: auto;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* a全体クリック、色継承 */
.blog-list .article-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* カード本体 */
.blog-list__item.article01 {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-list__item.article01:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

/* 16:9 サムネ比率を担保 */
.ratio-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.ratio-16x9 > img.article01__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 本文部 */
.article01__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article01__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: #111;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.article01 .date {
  font-size: 12px;
  color: #777;
}

.article01 .flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.article01 .tag {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  background: #fffbe9;
  border: 1px solid #ffe082;
  padding: 4px 10px;
  border-radius: 999px;
}

.article01 .arrow img {
  width: 20px;
  height: 20px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

/* フォールバック画像の軽い処理（任意） */
.article01__img.is-fallback {
  filter: saturate(0.9) contrast(1.02);
}

/* ページネーションは既存の .pagenation を流用 */
/* ===== /topics/ 一覧カード ===== */
.archive-page {
  background: #fff;
}

.archive-page__inner {
  max-width: var(--content-max, 500px);
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.archive-page__header {
  text-align: center;
  margin-bottom: 16px;
}
.archive-page__header h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  margin: 0 0 8px;
}
.archive-page__header img {
  display: block;
  margin: 0 auto;
  width: 120px;
  height: auto;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.blog-list__item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-list__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.article-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* 16:9 サムネ固定 */
.ratio-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.ratio-16x9 > .article-thumb__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.article-thumb__img.is-fallback {
  filter: saturate(0.92) contrast(1.02);
}

/* 本文部 */
.article-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: #111;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.article-body .date {
  font-size: 12px;
  color: #777;
}

.article-body .flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.article-body .tag {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  background: #fffbe9;
  border: 1px solid #ffe082;
  padding: 4px 10px;
  border-radius: 999px;
}

.article-body .arrow img {
  width: 20px;
  height: 20px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

/* =============================
   404 Page
   ============================= */
.sec-404 {
  text-align: center;
  padding: 60px 20px 40px;
}
.sec-404__inner {
  max-width: 720px;
  margin: 0 auto;
}
.sec-404__header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.6;
}
.sec-404__header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.6;
}
.sec-404__top-back {
  margin: 20px 0 40px;
}
.sec-404__top-back a.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #febf03;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: #000;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.sec-404__top-back a.btn-back img {
  width: 20px;
  height: auto;
  margin-right: 8px;
}
.sec-404__top-back a.btn-back:hover {
  background: #e7ad01;
  transform: translateY(-2px);
}

/* 新着記事リスト */
.sec-404__recent {
  max-width: 720px;
  margin: 0 auto 60px;
}
.sec-404__recent .sb-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 2px solid #febf03;
  display: inline-block;
  padding-bottom: 4px;
}
.sec-404__recent .sb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sec-404__recent .sb-list .sb-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.sec-404__recent .sb-list .sb-item .sb-date {
  font-size: 14px;
  color: #333;
  margin-right: 16px;
  flex-shrink: 0;
}
.sec-404__recent .sb-list .sb-item .sb-link {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.sec-404__recent .sb-list .sb-item .sb-link:hover {
  color: #febf03;
}
.sec-404__recent .btn-archive {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border: 2px solid #febf03;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: #febf03;
  transition: all 0.2s ease;
}
.sec-404__recent .btn-archive:hover {
  background: #febf03;
  color: #fff;
}

/* CTAセクション */
.join-cta-section {
  background: #fad25f;
  padding: 40px 20px;
  text-align: center;
}
.join-cta-section .join-cta__title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #000;
}
.join-cta-section .btn-primary {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.join-cta-section .btn-primary:hover {
  background: #449d48;
  transform: translateY(-2px);
}
/*# sourceMappingURL=styles.css.map */