@charset "UTF-8";

/* スクリーンリーダー専用（視覚的に非表示・見出し構造の補助） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   望月印刷 インタビューサイト ワイヤーフレーム
   ・色は白・黒・グレーのみ
   ・画像はグレーボックスで表現
   ・装飾（影など）はつけない
   ========================================================= */

:root {
  --black: #282832;
  --gray-900: #333333;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-400: #a5a5a5;
  --gray-300: #cccccc;
  --gray-200: #e0e0e0;
  --gray-100: #f0f0f0;
  --gray-50: #ECF0F4;
  --white: #ffffff;
  --line: #dddddd;
  --maxw: 1120px;
}

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

/* クリック（マウス・タップ）時のフォーカス枠は非表示。
   キーボード操作時（:focus-visible）はアクセシビリティのため表示を維持 */
:focus:not(:focus-visible) {
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 2;
  font-size: 15px;
  letter-spacing: 0.04em;
}

/* 見出しは字間を詰める（本文のみ 0.04em を適用）。
   個別に letter-spacing を持つ見出し（hero-slide__title 等）はその値を維持 */
h1, h2, h3, h4, h5, h6,
.footer-lead__title, .footer__wordmark,
.feature-card__title, .card__title, .card__company, .rank-item__title,
.cat-card__title, .org-card__name, .event-feature__title, .event-month__title,
.event-card__title, .article__title, .profile__name, .attr-box__title,
.cta__title, .linkcase__title, .target-card__title, .flow__title {
  letter-spacing: normal;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- 共通レイアウト ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出しの改行制御：文節単位で折り返し（語の途中で切れない） */
.nb { display: inline-block; }

/* 行頭の全角開き括弧（「『（）の左アキを詰め、上下の行と頭を揃える */
.q-hang { text-indent: -0.5em; }

.section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section--gray {
  background: var(--gray-50);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 16px;
}

.section-head__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 英字のカテゴリーラベル（頭に短いバー） */
.section-head__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.section-head__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.section-head__more {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  white-space: nowrap;
  padding-bottom: 3px;
  transition: color 0.15s;
}
.section-head__more:hover { color: var(--black); }
.section-head__more i {
  font-size: 10px;
  margin-left: 6px;
}

/* ---------- グレーボックス画像 ---------- */
.ph {
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
  border: 1px solid var(--gray-300);
}

.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--4x3  { aspect-ratio: 4 / 3; }
.ph--1x1  { aspect-ratio: 1 / 1; }
.ph--wide { aspect-ratio: 21 / 9; }

/* ---------- タグ ---------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  line-height: 1.6;
  color: var(--gray-700);
  border: 1px solid var(--gray-400);
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.tag--fill {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: var(--white);
  transition: background 0.15s, color 0.15s;
}
/* ラベルの右に「区切り線＋矢印」を付与（参考デザイン準拠） */
.btn::after {
  content: "\f061"; /* fa-arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
  padding-left: 18px;
  border-left: 1px solid currentColor;
}
.btn:hover {
  background: var(--black);
  color: var(--white);
}

.btn--fill {
  background: var(--black);
  color: var(--white);
}
.btn--fill:hover {
  background: var(--gray-900);
}

.btn--block {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.btn-center {
  text-align: center;
  margin-top: 32px;
}

/* もっと見る：テキスト＋円背景アイコン（参考デザイン） */
.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.more-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  transition: background 0.15s, transform 0.15s;
}
.more-btn:hover .more-btn__icon {
  background: var(--gray-900);
  transform: translateX(3px);
}

/* =========================================================
   ヘッダー
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  background: transparent;
  color: var(--black);
  z-index: 100;
}
/* メニューを開いている間はヘッダーを白背景に */
.header.is-open { background: var(--white); }

/* メニュー内CTAはPCでは非表示（スマホのメニュー下部でのみ表示） */
.gnav__cta { display: none; }

/* ヘッダー・フッターは左右32pxを開けて100%幅 */
.header .container,
.footer .container {
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
}
.header__inner > .logo { justify-self: start; }
.header__inner > .header__nav { justify-self: center; }

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__main {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--black);
}

.logo__sub {
  font-size: 9px;
  color: rgba(40, 40, 50, 0.55);
  letter-spacing: 1px;
  margin-top: 2px;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.gnav__link {
  font-size: 14px;
  font-weight: 400;
}

.gnav__link--btn {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 16px;
}

/* ヘッダー：ロゴ左端／ナビpill＋CTAを中央グループ化（doda参考） */
.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* pill本体（ナビ）：白地ヘッダーで見えるよう薄グレー */
.header__nav .gnav {
  background: var(--gray-50);
  border-radius: 999px;
  padding: 5px;
}
.header__nav .gnav__link {
  display: inline-flex;
  align-items: center;
  height: 34px;
  color: var(--black);
  font-size: 14px;
  padding: 0 11px;
  line-height: 1;
  border-radius: 999px;
  transition: background 0.15s;
}
.header__nav .gnav__link:hover { background: var(--white); }
/* pillの外に独立したCTAボタン：高さをメニュー（pill）と揃える */
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s;
}
.header__cta i { font-size: 11px; }
.header__cta:hover { background: var(--gray-900); }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--black);
  font-size: 22px;
  cursor: pointer;
  z-index: 110;
}

/* 開/閉アイコンの出し分け（Font Awesome） */
.hamburger__x { display: none; }
.is-open .hamburger__bars { display: none; }
.is-open .hamburger__x { display: inline-block; }

/* =========================================================
   フッター
   ========================================================= */
/* フッター上部：最新情報の案内バンド */
.footer-lead {
  border-top: 1px solid var(--line);
  padding: 68px 0 72px;
  text-align: center;
  margin-top: 0;
}
.footer-lead__title {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
}
.footer-lead__text {
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.footer-lead__links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-lead__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  min-width: 190px;
  background: var(--white);
}
.footer-lead__link i { font-size: 18px; }

.footer {
  background: #282832;
  color: var(--white);
  padding: 72px 0 48px;
  margin: 24px 24px 28px;
  border-radius: 28px;
}

/* 大きなワードマーク（独立エリア風） */
.footer__wordmark {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(64px, 15vw, 168px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-end;
}

/* ブランドは左端に残し、ナビ2列を右へ寄せる */
.footer__brand {
  margin-right: auto;
}

.footer__brand .logo { margin-bottom: 4px; }
.footer__brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  max-width: 320px;
}

.footer__nav-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.footer__nav li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copyright {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

.footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__sns a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-900);
}

.footer__copy {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
}

/* =========================================================
   トップ：ヒーロー / ピックアップ
   ========================================================= */
.hero {
  background: var(--white);
  padding: 32px 0 0;
}
/* ヒーロー直下のセクションの上線を消す */
.hero + .section { border-top: none; }
/* ヒーローはほぼ画面幅いっぱい。ただし左右にガターを設け、左端が見切れないように */
.hero .container {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.hero__lead {
  text-align: center;
}

/* ヒーロー：固定1枚（全幅）表示 */
.hero-single {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
}

/* ヒーロー：インタビュー記事カルーセル（中央大きく＋左右見切れ） */
.hero-carousel { position: relative; overflow: hidden; padding-bottom: 8px; }
.hero-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 78%;
  position: relative;
  display: block;
  color: inherit;
  opacity: 0.4;
  transition: opacity 0.5s;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide__media {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.hero-slide__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 72px 48px 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.66));
  color: var(--white);
}
.hero-slide__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.hero-slide__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  max-width: 760px;
}
.hero-slide__meta {
  font-size: 14px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
}

/* 矢印（メインビジュアルの下・中央） */
.hero-carousel__nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
  padding-right: 40px;
}
.hero-carousel__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gray-400);
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.hero-carousel__arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ドット */
.hero-carousel__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.15s;
}
.hero-carousel__dot.is-active { background: var(--white); }

/* トップの大見出し（英字大＋日本語サブ・中央） */
.top-head {
  text-align: center;
  margin-bottom: 28px;
}
.top-head__en {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
}
.top-head__ja {
  font-size: 14px;
  color: var(--gray-700);
  letter-spacing: 0.1em;
  margin-top: 14px;
}

/* 横並びスクロール（支援機関の行） */
.hscroll { position: relative; }
.hscroll__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 20px;
  -webkit-overflow-scrolling: touch;
}
.hscroll__track > * {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
.hscroll__track::-webkit-scrollbar { height: 6px; }
.hscroll__track::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.hscroll__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-400);
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.15s;
}
.hscroll__arrow:hover { border-color: var(--black); }
.hscroll__prev { left: -12px; }
.hscroll__next { right: -12px; }

.hero__catch {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--black);
}

.hero__sub {
  font-size: 14px;
  color: var(--gray-700);
  margin-top: 8px;
}

/* ピックアップ（大バナー＋サブ） */
.pickup {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.pickup__main .ph { min-height: 320px; }

.pickup__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.feature-card__body { padding: 12px 4px; }
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 8px 0 4px;
}
.pickup__main .feature-card__title { font-size: 22px; }
.feature-card__meta {
  font-size: 12px;
  color: var(--gray-500);
}

/* =========================================================
   記事カード（一覧・グリッド）
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
/* インタビューカード（.card）を含むグリッドは行間を広く */
.card-grid:has(.card) { row-gap: 48px; }

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { display: block; border-bottom: 1px solid var(--line); }
.card__thumb { position: relative; }

.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gray-300);
  background: var(--gray-200);
}

.card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  background: var(--black);
  color: var(--white);
  padding: 2px 12px;
  border-radius: 999px;
}

.card__body { padding: 12px 2px 48px; }

.card__tags { margin-top: 12px; margin-bottom: 0; }

.card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 4px;
}

.card__company {
  font-size: 12.5px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 8px;
}

.card__excerpt {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 8px;
}

.card__meta {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 横並びリスト型カード */
.list-card {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.list-card__thumb {
  width: 160px;
  flex-shrink: 0;
}

.list-card__body { flex: 1; }

/* =========================================================
   ランキング
   ========================================================= */
.rank-list { counter-reset: rank; }

.rank-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.rank-item__num {
  counter-increment: rank;
  font-size: 20px;
  font-weight: 700;
  width: 32px;
  flex-shrink: 0;
  text-align: center;
  color: var(--gray-400);
}
.rank-item__num::before { content: counter(rank); }

.rank-item__thumb { width: 80px; flex-shrink: 0; }
.rank-item__thumb .ph { min-height: 56px; }

/* ランキング2カラム */
.rank-list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}
.rank-list--2col .rank-item:nth-last-child(-n+1) { border-bottom: 1px solid var(--line); }

.rank-item__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.rank-item__meta { font-size: 11px; color: var(--gray-500); }

/* =========================================================
   タグクラウド / カテゴリ
   ========================================================= */
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tagcloud .tag { font-size: 13px; padding: 4px 14px; }

/* 課題別カテゴリ（支援者一覧） */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  border: 1px solid var(--line);
  padding: 20px;
}

.cat-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cat-card__desc {
  font-size: 13px;
  color: var(--gray-700);
}

/* 支援機関ディレクトリカード */
.org-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  height: 100%;
}
.org-card__thumb img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
  background: var(--gray-200);
}
.org-card__thumb--none {
  aspect-ratio: 1200 / 630;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 14px;
  line-height: 1.6;
  background: var(--white);
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.org-card__body {
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.org-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.org-card__desc { font-size: 13px; color: var(--gray-700); line-height: 1.8; }
.org-card__addr { font-size: 12px; color: var(--gray-500); margin-top: auto; padding-top: 8px; }
.org-card__addr i { margin-right: 6px; }
.org-card__link { font-size: 13px; font-weight: 500; color: var(--black); margin-top: 6px; }
.org-card__link i { font-size: 11px; margin-left: 4px; }

/* =========================================================
   絞り込みフィルター（一覧ページ）
   ========================================================= */
.filter {
  border: 1px solid var(--line);
  padding: 20px;
  margin-bottom: 32px;
  background: var(--gray-50);
}

.filter__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-300);
}
.filter__row:last-child { border-bottom: none; }

.filter__label {
  font-size: 13px;
  font-weight: 700;
  width: 96px;
  flex-shrink: 0;
}

.filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* =========================================================
   支援者ファインダー（検索＋絞り込み）
   ========================================================= */
.finder {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  margin-bottom: 28px;
}

/* キーワード検索 */
.finder__search {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
}
.finder__search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gray-400);
  border-right: none;
  padding: 0 14px 0 20px;
  border-radius: 999px 0 0 999px;
}
.finder__search-field i { color: var(--gray-500); font-size: 14px; }
.finder__search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 0;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  color: var(--black);
}
.finder__search button {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  padding: 0 28px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 999px 999px 0;
}

/* 絞り込みグループ */
.finder__group {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-300);
}
.finder__group:first-of-type { margin-top: 8px; }
.finder__group-label {
  font-size: 13px;
  font-weight: 700;
  width: 88px;
  flex-shrink: 0;
  padding-top: 5px;
}
.finder__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* チップ（選択可能なフィルターボタン） */
.chip {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-700);
  border: 1px solid var(--gray-400);
  background: var(--white);
  padding: 4px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.chip.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* 結果バー */
.finder__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.finder__count {
  font-size: 13px;
  color: var(--gray-700);
}
.finder__count strong { font-size: 18px; color: var(--black); }
.finder__clear {
  font-size: 13px;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
}

/* 該当なし */
.finder__empty {
  display: none;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  padding: 48px 0;
  border: 1px dashed var(--gray-300);
}

/* =========================================================
   イベント情報
   ========================================================= */
/* 注目イベント（大きめ） */
.event-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.event-feature__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-feature__label {
  font-size: 11px;
  color: var(--white);
  background: var(--black);
  display: inline-block;
  padding: 2px 12px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 10px;
}
.event-feature__date {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.event-feature__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.event-feature__desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* 月ごとの見出しグループ */
.event-month { margin-bottom: 36px; }
.event-month:last-of-type { margin-bottom: 0; }
.event-month__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* イベント一覧カード（日付ブロック型） */
.event-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--line);
  padding: 20px;
  margin-bottom: 14px;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.event-card:hover {
  border-color: var(--black);
}
.event-card__date {
  width: 92px;
  flex-shrink: 0;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 16px;
}
.event-card__month { display: block; font-size: 12px; color: var(--gray-500); }
.event-card__day { display: block; font-size: 32px; font-weight: 700; line-height: 1.2; }
.event-card__week { display: block; font-size: 12px; color: var(--gray-500); }

/* OGPサムネイル */
.event-card__thumb {
  width: 168px;
  flex-shrink: 0;
  align-self: center;
  display: block;
}
.event-card__thumb img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gray-300);
  background: var(--gray-200);
}
.event-card__thumb--none {
  aspect-ratio: 1200 / 630;
  border: 1px solid var(--gray-300);
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card__body { flex: 1; }
.event-card__type {
  display: inline-block;
  font-size: 11px;
  border: 1px solid var(--gray-400);
  color: var(--gray-700);
  padding: 2px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.event-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
}
.event-card__info {
  font-size: 13px;
  color: var(--gray-700);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.event-card__info i { color: var(--gray-500); margin-right: 5px; }
.event-card__action { flex-shrink: 0; align-self: center; }

/* カード末尾は矢印だけ（カード全体がリンク） */
.event-card__action i {
  font-size: 16px;
  color: var(--black);
  transition: transform 0.15s;
}
.event-card:hover .event-card__action i {
  transform: translateX(4px);
}

/* =========================================================
   ページタイトル / パンくず
   ========================================================= */
.breadcrumb {
  font-size: 12px;
  color: var(--gray-500);
  padding: 14px 0;
}
.breadcrumb a { color: var(--gray-700); }

.page-head {
  background: var(--white);
  padding: 60px 0 56px;
  text-align: left;
}

.page-head__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.page-head__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--black);
}

.page-head__sub {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.9;
  margin-top: 16px;
  max-width: 760px;
}

/* =========================================================
   記事詳細
   ========================================================= */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 0;
}

.article__head { margin-bottom: 24px; }

.article__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  margin: 12px 0;
}

.article__meta {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.article__eyecatch { margin: 24px 0; }
.article__eyecatch .ph { min-height: 380px; }

/* インタビュー本文（Q&A風） */
.qa { margin: 32px 0; }

.qa__q {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  padding-left: 16px;
  border-left: 3px solid var(--black);
  margin-bottom: 12px;
}

.qa__a {
  font-size: 15px;
  line-height: 2.1;
  color: var(--gray-900);
  margin-bottom: 32px;
}

.article__lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--gray-900);
  padding: 20px;
  background: var(--gray-50);
  border-left: 3px solid var(--gray-400);
  margin-bottom: 32px;
}

/* プロフィールボックス */
.profile {
  display: flex;
  gap: 20px;
  border: 1px solid var(--line);
  padding: 20px;
  margin: 40px 0;
  align-items: center;
}
.profile__photo { width: 120px; flex-shrink: 0; }
.profile__photo img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: var(--gray-200);
}

/* 運営主体（HPリンク＋OGP画像） */
.profile--org {
  color: inherit;
  align-items: flex-start;
  transition: border-color 0.15s;
}
.profile--org:hover { border-color: var(--black); }
.profile--org .profile__photo { width: 260px; }
.profile--org .org-card__link { display: inline-block; margin-top: 12px; }
.profile__name { font-size: 16px; font-weight: 700; }
.profile__role { font-size: 12px; color: var(--gray-500); margin-bottom: 8px; }
.profile__text { font-size: 13px; color: var(--gray-700); }

/* 属性フラグ（挑戦者記事の分類） */
.attr-box {
  border: 1px solid var(--line);
  padding: 16px 20px;
  margin: 24px 0;
}
.attr-box__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.attr-row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  padding: 4px 0;
}
.attr-row__key {
  width: 120px;
  color: var(--gray-500);
  flex-shrink: 0;
}

/* CTA（記事末尾） */
.cta {
  padding: 28px;
  margin: 0;
  text-align: center;
}
.cta__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
/* Contact：大文字英語の見出し＋和文サブタイトル */
.cta__en {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.cta__sub {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.cta__text {
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 36px;
}
.cta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* プロフィール表内のリンク（HP・電話） */
.attr-box a {
  text-decoration: underline;
  word-break: break-all;
}
.attr-box a:hover { color: var(--gray-700); }

/* 支援事例リンク */
.linkcase {
  border: 1px solid var(--line);
  background: var(--gray-50);
  padding: 20px;
  margin: 32px 0;
}
.linkcase__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* =========================================================
   メディアについて
   ========================================================= */
.about-block { margin-bottom: 56px; }
/* 見出し：英語メイン＋和文サブ（トップページと統一） */
.about-block__en {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.about-block__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-top: 8px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-300);
}
.about-block__text {
  font-size: 15px;
  line-height: 2.1;
  color: var(--gray-900);
}

/* ビジョン：左に文章（段落）＋右に縦長画像 */
.vision {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 96px;
  align-items: start;
  margin-bottom: 104px;
}
.vision__text p {
  font-size: 15px;
  line-height: 2;
  color: var(--gray-900);
  margin-bottom: 22px;
}
.vision__text p:last-child { margin-bottom: 0; }
.vision__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* 運営主体：ダークな独立エディトリアルセクション */
.publisher {
  background: #282832;
  color: var(--white);
  padding: 88px 0;
}
.publisher__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.publisher__en {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.publisher__name {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.publisher__role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.publisher__text {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.publisher__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.publisher__link i { font-size: 12px; }
.publisher__link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.publisher__media img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.target-card {
  border: 1px solid var(--line);
  padding: 20px;
}
.target-card__label {
  font-size: 12px;
  color: var(--white);
  background: var(--black);
  display: inline-block;
  padding: 2px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.target-card__title { font-size: 16px; font-weight: 700; }
.target-card__desc { font-size: 13px; color: var(--gray-700); margin-top: 4px; }

/* =========================================================
   インタビューをご希望の方（フロー・条件・FAQ）
   ========================================================= */
/* 条件リスト */
.cond-list {
  border-top: 1px solid var(--line);
}
.cond-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cond-item__key {
  width: 180px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}
.cond-item__val {
  font-size: 14px;
  color: var(--gray-900);
  line-height: 1.9;
}

/* ステップフロー */
.flow {
  counter-reset: step;
}
.flow__item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
/* 縦の連結線 */
.flow__item::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--gray-300);
}
.flow__item:last-child { padding-bottom: 0; }
.flow__item:last-child::before { display: none; }

.flow__num {
  counter-increment: step;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  background: var(--white);
  z-index: 1;
}
.flow__num::before { content: counter(step); }

.flow__body { padding-top: 6px; }
.flow__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow__text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.9;
}

/* FAQ */
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq__q {
  font-size: 15px;
  font-weight: 700;
  padding-left: 26px;
  position: relative;
}
.faq__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.faq__a {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.9;
  padding-left: 26px;
  margin-top: 6px;
  position: relative;
}
.faq__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gray-500);
  font-weight: 700;
}

/* =========================================================
   レスポンシブ（スマホファースト意識）
   ========================================================= */
@media (max-width: 1024px) and (min-width: 681px) {
  .gnav__list { gap: 0; }
  .header__nav { gap: 8px; }
  .header__nav .gnav__link { font-size: 14px; padding: 0 9px; }
  .header__cta { font-size: 12px; padding: 0 16px; }
  .gnav__link--btn { padding: 6px 10px; }
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pickup { grid-template-columns: 1fr; }
  .pickup__side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }

  /* ハンバーガー表示 */
  .hamburger { display: flex; }
  .logo__main { font-size: 18px; }
  /* モバイルはロゴ左・ハンバーガー右の横並びに戻す */
  .header__inner { display: flex; justify-content: space-between; height: 64px; }
  /* モバイルはピルを解除・CTA非表示 */
  .header__nav { background: none; padding: 0; border-radius: 0; }
  .header__cta { display: none; }
  /* メニューリンクは黒文字・角丸なし・ブロック表示に戻す */
  .header__nav .gnav__link {
    display: block;
    height: auto;
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    padding: 20px 4px;
    border-radius: 0;
  }

  /* フルスクリーンのメニュー（白背景・角丸なし）
     ※ .header__nav .gnav のピル指定を上書きするため同じ詳細度で指定 */
  .header__nav .gnav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .is-open .gnav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .gnav__list {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 24px 24px 24px;
  }
  .gnav__item {
    border-bottom: 1px solid var(--line);
  }
  .gnav__link {
    display: block;
    padding: 20px 4px;
    font-size: 16px;
  }
  .gnav__link--btn {
    border: 1px solid var(--black);
    text-align: center;
    margin-top: 20px;
    padding: 16px;
  }
  /* メニュー下部の相談CTA */
  .gnav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 24px 32px;
    padding: 16px;
    background: var(--black);
    color: var(--white);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
  }
  .gnav__cta i { font-size: 12px; }

  .hero .container { padding-left: 0; padding-right: 0; }
  .hero__catch { font-size: 21px; }
  .hero-slide { flex-basis: 88%; }
  .hero-slide__media { height: 360px; aspect-ratio: auto; }
  .hero-slide__caption { padding: 32px 18px 20px; }
  .hero-slide__title { font-size: 17px; line-height: 1.5; }
  .hero-slide__meta { font-size: 12px; }
  .hero-carousel__arrow { width: 40px; height: 40px; font-size: 14px; }
  .hero-carousel__nav { margin-top: 18px; padding-right: 16px; }
  .top-head__en { font-size: 30px; }
  .hscroll__track > * { flex-basis: 78%; }
  .hscroll__arrow { display: none; }
  .footer__wordmark { margin-bottom: 32px; padding-bottom: 28px; }
  .page-head__title { font-size: 28px; }
  .section-head__title { font-size: 21px; }
  .about-block__en { font-size: 26px; }
  /* ビジョン：1カラム（文章→画像） */
  .vision { grid-template-columns: 1fr; gap: 28px; }
  .vision__media { max-width: 420px; }
  /* 運営主体：1カラム（画像上・文章下） */
  .publisher { padding: 64px 0; }
  .publisher__inner { grid-template-columns: 1fr; gap: 28px; }
  .publisher__media { order: -1; }
  .publisher__name { font-size: 26px; }
  /* 見出しは縦積みにして、補足テキストで見出しが潰れないように */
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .section-head__more { white-space: normal; }
  .card-grid,
  .card-grid--2 { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .cat-grid { grid-template-columns: 1fr; }
  .pickup__side { grid-template-columns: 1fr; }
  .pickup__main .ph { min-height: 200px; }

  .list-card { flex-direction: column; }
  .list-card__thumb { width: 100%; }

  .target-grid { grid-template-columns: 1fr; }

  .profile { flex-direction: column; align-items: flex-start; }
  .profile__photo { width: 100%; }

  .filter__row { flex-direction: column; gap: 6px; }
  .cond-item { flex-direction: column; gap: 4px; }
  .cond-item__key { width: auto; }
  .finder { padding: 16px; }
  .finder__group { flex-direction: column; gap: 6px; }
  .finder__group-label { width: auto; padding-top: 0; }
  .footer { margin: 16px 10px 20px; border-radius: 18px; }
  .footer__cols { justify-content: flex-start; gap: 32px; }
  .footer__brand { margin-right: 0; }
  .footer-lead__links { flex-direction: column; }
  .footer-lead__link { width: 100%; }
  .rank-list--2col { grid-template-columns: 1fr; column-gap: 0; }
  .event-feature { grid-template-columns: 1fr; }
  .event-feature__body { padding: 20px; }
  .event-card { flex-wrap: wrap; gap: 14px; }
  .event-card__date {
    width: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 8px;
    text-align: left;
    flex-basis: 100%;
  }
  .event-card__day { font-size: 20px; }
  .event-card__action { flex-basis: 100%; }
  .event-card__thumb { width: 100%; }
  .article__title { font-size: 22px; }
  .article__eyecatch .ph { min-height: 220px; }
  .section { padding: 96px 0; }
}

@media (max-width: 480px) {
  .header .container,
  .footer .container { padding-left: 20px; padding-right: 20px; }
}

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

/* 320px まで崩れないための微調整 */
@media (max-width: 400px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .header .container,
  .footer .container { padding-left: 16px; padding-right: 16px; }
  .logo__sub { font-size: 9px; }
  .header__inner { height: 58px; }
  .header__nav .gnav { top: 58px; }

  .hero { padding: 40px 0; }
  .hero__catch { font-size: 19px; }
  .page-head { padding: 40px 0 32px; }
  .page-head__title { font-size: 24px; }
  .page-head__label { font-size: 11px; margin-bottom: 10px; }
  .section { padding: 64px 0; }
  .section-head__title { font-size: 19px; }
  .about-block__en { font-size: 22px; }

  .cta { padding: 22px 16px; }
  .cta__btns { flex-direction: column; }
  .cta__btns .btn { width: 100%; }
  .finder { padding: 14px; }
  .event-card { padding: 16px; }
  .event-card__type { white-space: nowrap; }
  .org-card__body { padding: 16px 14px 14px; }
  .article { padding: 32px 16px 0; }
  .qa__q { font-size: 16px; }
  .footer-lead { padding: 48px 0 52px; }
  .footer-lead__title { font-size: 28px; }
  .cta__en { font-size: 28px; }
}
