/* ===== STRAND PARTNERS - Common Stylesheet ===== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0b111f;
  --navy-light: #1a2744;
  --gold: #8a93a6;          /* トップページと統一：スレートグレー（旧ゴールド） */
  --gold-light: #aab2c2;
  --gold-gradient: linear-gradient(135deg, #1a2744 0%, #0b111f 100%);  /* ボタン類はネイビー */
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #999;
  --bg-light: #f5f6f8;
  --bg-cream: #f8f9fb;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header.scrolled {
  background: rgba(11, 17, 31, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: 64px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.3s;
}
.header.scrolled .header-logo img { height: 22px; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-item > a, a.nav-item {
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
  letter-spacing: 1px; padding: 8px 14px; transition: color 0.3s;
  position: relative; display: block; white-space: nowrap;
}
.nav-item > a::after, a.nav-item::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-item > a:hover, a.nav-item:hover { color: #fff; }
.nav-item > a:hover::after, a.nav-item:hover::after { transform: scaleX(1); }
.nav-item > a.active, a.nav-item.active { color: var(--gold); }
.nav-item > a.active::after, a.nav-item.active::after { transform: scaleX(1); }

.header-cta {
  background: #fff !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  text-shadow: none !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.header-cta::after { display: none !important; }
.header-cta:hover {
  transform: translateY(-1px) !important;
  background: #fff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28) !important;
}
.header-cta .arrow { font-size: 16px; transition: transform 0.3s; }
.header-cta:hover .arrow { transform: translateX(3px); }

/* Mega Dropdown */
.has-dropdown { position: relative; }
.mega-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 420px; padding-top: 12px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}
.has-dropdown:hover .mega-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
}
.mega-dropdown-inner {
  background: rgba(11, 17, 31, 0.97);
  border: 1px solid rgba(11, 17, 31, 0.15);
  border-radius: 12px; padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.mega-link {
  display: block; padding: 12px 16px; border-radius: 8px;
  transition: background 0.3s;
}
.mega-link:hover { background: rgba(255,255,255,0.05); }
.mega-link-title {
  display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px;
}
.mega-link-desc {
  display: block; font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px; background: #fff; transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
  position: relative; padding: 140px 0 60px;
  background: var(--navy); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,17,31,0.95), rgba(26,39,68,0.9)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-en {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: 4px; margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Noto Serif JP', serif; font-size: 36px; font-weight: 600;
  color: #fff; line-height: 1.4;
}
.page-hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.6); margin-top: 12px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.6); transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .en-title {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Noto Serif JP', serif; font-size: 36px; font-weight: 600;
  color: var(--navy); margin-bottom: 20px; line-height: 1.4;
}
.section-header .divider {
  width: 40px; height: 2px; background: var(--gold-gradient); margin: 0 auto 20px;
}
.section-header p { font-size: 15px; color: var(--text-gray); max-width: 600px; margin: 0 auto; }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.filter-tag {
  padding: 9px 22px; border: 1px solid rgba(11,17,31,0.18); border-radius: 2px;
  font-size: 12px; font-weight: 500; color: var(--text-gray); letter-spacing: 0.08em;
  background: transparent; cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  font-family: inherit;
}
.filter-tag:hover { border-color: var(--gold); color: var(--navy); }
.filter-tag.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

/* ===== CARD GRID（罫線区切りのエディトリアル・グリッド） ===== */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(11,17,31,0.12);
  border-left: 1px solid rgba(11,17,31,0.12);
}
.card {
  background: #fff; overflow: hidden;
  transition: background 0.4s ease; display: block;
}
.card-grid > .card {
  border-right: 1px solid rgba(11,17,31,0.12);
  border-bottom: 1px solid rgba(11,17,31,0.12);
}
.card:hover { transform: none; box-shadow: none; }

/* Story Card（引用符・明朝・下部に経歴メタを罫線で区切る） */
.story-card {
  display: flex; flex-direction: column; height: 100%;
  padding: 0; overflow: hidden;
}
.story-card-thumb { order: 0; width: 100%; aspect-ratio: 16 / 8.8; overflow: hidden; }
.story-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.story-card:hover .story-card-thumb img { transform: scale(1.04); }
.story-card:hover { background: var(--bg-cream); }
.story-card .card-body {
  order: 1; padding: 24px 26px 10px; display: flex; flex-direction: column;
}
.story-card .card-body::before {
  content: '“'; font-family: 'Noto Serif JP', serif;
  font-size: 42px; line-height: 1; color: #718197; margin-bottom: 12px;
}
.story-card .card-title {
  font-family: 'Noto Serif JP', serif; font-size: 17px; font-weight: 600;
  color: var(--navy); margin-bottom: 14px; line-height: 1.7; letter-spacing: 0.03em;
}
.story-card .card-excerpt {
  font-size: 13px; color: var(--text-gray); line-height: 1.95;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.story-card .card-tag {
  display: inline-block; align-self: flex-start;
  border: 1px solid rgba(11,17,31,0.22); color: #52677f;
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  letter-spacing: 0.04em; margin-top: 16px;
}
.story-card .card-header {
  order: 3; margin: auto 26px 0; padding: 18px 0 24px;
  background: transparent; border-top: 1px solid rgba(11,17,31,0.1);
}
.story-card .career-path {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px;
}
.story-card .career-from, .story-card .career-to {
  font-size: 12.5px; color: var(--navy); font-weight: 500; letter-spacing: 0.03em;
}
.story-card .career-arrow { color: #718197; font-size: 12px; flex-shrink: 0; }
.story-card .career-meta { font-size: 11px; color: var(--text-gray); letter-spacing: 0.06em; }

/* Guide Card（罫線区切り・明朝の番号） */
.guide-grid {
  display: flex; flex-direction: column; max-width: 860px; margin: 0 auto;
  border-top: 1px solid rgba(11,17,31,0.12);
}
.guide-card {
  display: grid; grid-template-columns: 86px 1fr; gap: 28px; align-items: baseline;
  background: transparent; border-radius: 0; box-shadow: none;
  padding: 36px 8px; border-bottom: 1px solid rgba(11,17,31,0.12);
  transition: background 0.4s ease;
}
.guide-card:hover { transform: none; box-shadow: none; background: var(--bg-cream); }
.guide-number {
  width: auto; background: none; text-shadow: none;
  font-family: 'Noto Serif JP', serif; font-size: 42px; font-weight: 400;
  color: var(--gold); line-height: 1; letter-spacing: 0.02em;
  display: block; transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}
.guide-card:hover .guide-number { color: var(--navy); }
.guide-card-body { padding: 0; }
.guide-card-title {
  font-family: 'Noto Serif JP', serif; font-size: 19px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; letter-spacing: 0.03em;
}
.guide-card-desc { font-size: 13.5px; color: var(--text-gray); line-height: 1.95; margin-bottom: 10px; }
.guide-card-link { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; }

/* Column Card（雑誌的・細罫線・影なし） */
.column-grid {
  grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1100px; border: none;
}
.column-grid > .card { border: 1px solid rgba(11,17,31,0.12); }
.column-card { border-radius: 0; overflow: hidden; }
.column-card-thumb {
  position: relative; height: 200px; overflow: hidden;
}
.column-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.column-card:hover .column-card-thumb img { transform: scale(1.05); }
.column-card-category {
  position: absolute; top: 0; left: 0;
  background: rgba(11,17,31,0.88); color: #fff; font-size: 10px; font-weight: 600;
  padding: 6px 14px; letter-spacing: 1.5px;
}
.column-card-body { padding: 24px 26px 26px; }
.column-card-title {
  font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 12px; line-height: 1.6; letter-spacing: 0.02em;
}
.column-card-excerpt {
  font-size: 13px; color: var(--text-gray); line-height: 1.9;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.column-card-meta {
  display: flex; justify-content: space-between; align-items: center; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid rgba(11,17,31,0.08);
}
.column-card-date { font-size: 11px; color: var(--text-light); letter-spacing: 0.06em; }
.column-card-read { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start;
}
.article-main { min-width: 0; }

/* Story Summary Card */
.story-summary-card {
  background: var(--bg-cream); border-radius: 12px; padding: 28px; margin-bottom: 36px;
  border: 1px solid rgba(11,17,31,0.2);
}
.career-path-large {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 16px;
}
.career-box { text-align: center; }
.career-label { display: block; font-size: 11px; color: var(--text-light); margin-bottom: 4px; }
.career-value {
  display: block; font-family: 'Noto Serif JP', serif; font-size: 16px;
  font-weight: 600; color: var(--navy);
}
.career-arrow-large { color: var(--gold); font-size: 24px; flex-shrink: 0; }
.story-meta-row {
  display: flex; justify-content: center; gap: 24px;
  font-size: 13px; color: var(--text-gray);
}
.story-meta-item { display: flex; align-items: center; gap: 4px; }

/* Article Body */
.article-body h2 {
  font-family: 'Noto Serif JP', serif; font-size: 24px; font-weight: 600;
  color: var(--navy); margin: 40px 0 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-light); line-height: 1.5;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 18px; font-weight: 600; color: var(--navy);
  margin: 28px 0 12px; padding-left: 12px;
  border-left: 3px solid var(--gold); line-height: 1.5;
}
.article-body p {
  font-size: 15px; color: var(--text-dark); line-height: 2; margin-bottom: 16px;
}
.article-body ul, .article-body ol {
  margin: 16px 0; padding-left: 24px;
}
.article-body li {
  font-size: 15px; color: var(--text-dark); line-height: 2;
  margin-bottom: 8px; list-style: disc;
}
.article-body ol li { list-style: decimal; }
.article-note {
  font-size: 12px; color: var(--text-light); margin-top: 40px;
  padding-top: 20px; border-top: 1px solid #eee;
}

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; }
.sidebar-toc, .sidebar-cta, .sidebar-related {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.sidebar-toc h3, .sidebar-cta h3, .sidebar-related h3 {
  font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid #eee;
}
.sidebar-toc ul { display: flex; flex-direction: column; gap: 6px; }
.sidebar-toc li a {
  font-size: 13px; color: var(--text-gray); line-height: 1.6;
  padding: 4px 0; display: block; transition: color 0.3s;
}
.sidebar-toc li a:hover, .sidebar-toc li a.active { color: var(--gold); }
.sidebar-toc li.toc-sub a { padding-left: 16px; font-size: 12px; }
.sidebar-cta { background: var(--navy); }
.sidebar-cta h3 { color: #fff; border-bottom-color: rgba(255,255,255,0.1); }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.sidebar-cta-btn {
  display: block; text-align: center;
  background: var(--gold-gradient); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px; border-radius: 50px; text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.sidebar-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(11,17,31,0.4); }
.sidebar-related ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-related li a {
  font-size: 13px; color: var(--gold); line-height: 1.6;
  display: block; padding: 4px 0;
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid rgba(11,17,31,0.12); }
.faq-item {
  border-bottom: 1px solid rgba(11,17,31,0.12); overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 4px; cursor: pointer; transition: color 0.3s;
}
.faq-question:hover h3 { color: var(--gold); }
.faq-question h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.7; flex: 1; letter-spacing: 0.02em;
  transition: color 0.3s;
}
.faq-question .faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; margin-left: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold); transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px; padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14px; color: var(--text-gray); line-height: 1.9;
}

/* ===== TABLE ===== */
.info-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
}
.info-table th, .info-table td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid #eee;
  font-size: 14px; line-height: 1.7;
}
.info-table th {
  width: 160px; font-weight: 600; color: var(--navy);
  background: var(--bg-cream); white-space: nowrap;
}
.info-table td { color: var(--text-dark); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(11,17,31,0.95), rgba(26,39,68,0.95)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  padding: 60px 0; text-align: center;
}
.cta-banner h3 {
  font-family: 'Noto Serif JP', serif; font-size: 24px; color: #fff;
  margin-bottom: 24px; font-weight: 500;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold-gradient); color: #fff;
  font-size: 16px; font-weight: 700; padding: 18px 48px;
  border-radius: 50px; letter-spacing: 1px; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(11,17,31,0.3);
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cta-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(11,17,31,0.5);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.45s, transform 0.45s; pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
/* --- rich consult popup card --- */
.floating-cta .fcta-dot {
  position: absolute; top: -5px; right: -5px; width: 13px; height: 13px;
  border-radius: 50%; background: #ffb703; border: 2px solid #fff; z-index: 3;
  box-shadow: 0 0 0 0 rgba(255,183,3,0.6); animation: fctaPulse 2s infinite;
}
@keyframes fctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,183,3,0.6); }
  70% { box-shadow: 0 0 0 11px rgba(255,183,3,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,183,3,0); }
}
.fcta-card {
  width: 312px; background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 14px 48px rgba(11,17,31,0.38), 0 2px 10px rgba(11,17,31,0.18);
}
.fcta-head {
  position: relative; display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #c1121f 0%, #8d0801 100%); color: #fff;
  padding: 14px 44px 14px 18px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.fcta-head svg { flex-shrink: 0; }
.fcta-close {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  width: 26px; height: 26px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.22); color: #fff; cursor: pointer;
  font-size: 15px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.fcta-close:hover { background: rgba(255,255,255,0.4); }
.fcta-body { padding: 16px 18px 18px; }
.fcta-lead { font-size: 12.5px; line-height: 1.8; color: var(--text-dark); margin: 0 0 12px; }
.fcta-live {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--navy);
  background: var(--bg-cream); border: 1px solid rgba(11,17,31,0.1);
  padding: 8px 12px; border-radius: 6px; margin-bottom: 12px; letter-spacing: 0.03em;
}
.fcta-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2ea44f; flex-shrink: 0;
  animation: fctaBlink 1.6s infinite;
}
@keyframes fctaBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.fcta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: linear-gradient(135deg, #c1121f 0%, #8d0801 100%); color: #fff;
  font-size: 14.5px; font-weight: 700; padding: 14px 16px; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(141,8,1,0.35); letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: var(--transition);
}
.fcta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(141,8,1,0.45); }
.fcta-note { font-size: 10.5px; color: var(--text-light); text-align: center; margin-top: 10px; letter-spacing: 0.03em; }
/* --- collapsed mini pill (after close) --- */
.fcta-mini {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #c1121f 0%, #8d0801 100%); color: #fff;
  font-size: 14px; font-weight: 700; padding: 16px 32px;
  border-radius: 50px; box-shadow: 0 6px 25px rgba(141,8,1,0.4);
  transition: var(--transition); text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.fcta-mini:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(141,8,1,0.5); }
.floating-cta .fcta-mini { display: none; }
.floating-cta.collapsed .fcta-card, .floating-cta.collapsed .fcta-dot { display: none; }
.floating-cta.collapsed .fcta-mini { display: flex; }
@media (max-width: 480px) {
  .floating-cta { right: 12px; bottom: 12px; }
  .fcta-card { width: min(312px, calc(100vw - 24px)); }
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 60px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-brand-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-license { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.8; letter-spacing: 0.04em; margin-top: 14px; }
.footer-col-title {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8);
  margin-bottom: 16px; letter-spacing: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.3s;
}
.footer-col li a:hover { color: var(--gold); }
.footer-cta-btn {
  display: inline-block; margin-top: 16px;
  background: var(--gold-gradient); color: #fff;
  font-size: 12px; font-weight: 700; padding: 8px 20px;
  border-radius: 50px; text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.footer-cta-btn:hover { transform: translateY(-1px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.3);
}

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-dark); margin-bottom: 6px;
}
.form-group label .required {
  font-size: 10px; background: #e74c3c; color: #fff;
  padding: 1px 6px; border-radius: 3px; font-weight: 700;
}
.form-group label .optional {
  font-size: 10px; background: #ccc; color: #fff;
  padding: 1px 6px; border-radius: 3px; font-weight: 700;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #e0ddd8; border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s; background: #faf9f7;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(11,17,31,0.1); background: #fff;
}
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox {
  display: flex; align-items: center; gap: 10px; margin: 24px 0;
  font-size: 13px; color: var(--text-gray);
}
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); }
.form-checkbox a { color: var(--gold); text-decoration: underline; }
.form-submit {
  width: 100%; padding: 16px; background: var(--gold-gradient);
  color: #fff; font-size: 16px; font-weight: 700; border: none;
  border-radius: 50px; cursor: pointer; letter-spacing: 2px;
  transition: var(--transition); text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  font-family: inherit;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,17,31,0.4); }

/* ===== MEMBER CARDS ===== */
.member-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.member-card { text-align: center; transition: var(--transition); }
.member-card:hover { transform: translateY(-6px); }
.member-photo {
  width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 20px;
  overflow: hidden; border: 3px solid var(--bg-light);
  box-shadow: var(--shadow-md); position: relative;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.member-card:hover .member-photo img { transform: scale(1.08); }
.member-position {
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;
}
.member-name {
  font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.member-name-en {
  font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-light);
  letter-spacing: 1px; margin-bottom: 12px;
}
.member-career { font-size: 12px; color: var(--text-gray); line-height: 1.7; padding: 0 8px; }
.member-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 12px; }
.member-tags span {
  font-size: 10px; background: var(--bg-light); color: var(--text-gray);
  padding: 3px 10px; border-radius: 20px; font-weight: 500;
}

/* ===== SCROLL HINT ===== */
.scroll-hint {
  display: none; align-items: center; justify-content: center;
  gap: 6px; font-size: 11px; color: var(--text-light); margin-top: 16px; letter-spacing: 1px;
}
.scroll-hint svg {
  width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2;
  animation: swipeHint 1.5s ease-in-out infinite;
}
@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ===== LISTING SECTION ===== */
.listing-section { background: var(--bg-cream); }

/* ===== MISSION ===== */
.mission-text {
  font-family: 'Noto Serif JP', serif; font-size: 22px; font-weight: 500;
  color: var(--navy); line-height: 2; text-align: center;
  max-width: 700px; margin: 0 auto 60px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-dropdown { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .header-nav {
    display: none; position: fixed; inset: 0; background: rgba(11,17,31,0.98);
    flex-direction: column; justify-content: center; align-items: center; gap: 8px;
    padding: 80px 40px;
  }
  .header-nav.mobile-open { display: flex; }
  .header-nav .nav-item > a, .header-nav a.nav-item {
    font-size: 18px; padding: 12px 20px;
  }
  .header-nav .header-cta { margin-top: 16px; }
  .hamburger { display: flex; }

  .page-hero { padding: 120px 0 40px; }
  .page-hero-title { font-size: 26px; }
  .section-padding { padding: 60px 0; }
  .section-header h2 { font-size: 26px; }

  .card-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 16px;
    margin: 0 -24px; padding-left: 24px; padding-right: 24px;
    border: none; max-width: none;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card-grid { -ms-overflow-style: none; scrollbar-width: none; }
  .card-grid > .card {
    flex: 0 0 82%; max-width: 82%; scroll-snap-align: start;
    border: 1px solid rgba(11,17,31,0.12);
  }
  .story-card { padding: 0; }

  .guide-card { grid-template-columns: 1fr; gap: 6px; padding: 28px 4px; }
  .guide-number { font-size: 34px; }

  .column-grid { gap: 16px; border: none; }

  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: block; }
  .article-body h2 { font-size: 20px; }

  .member-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .member-photo { width: 150px; height: 150px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .scroll-hint { display: flex; }

  .info-table th { width: 100px; font-size: 13px; }
  .info-table td { font-size: 13px; }
}


/* ===== GLOBAL HEADER (2段・ドロップダウン) ===== */
.gh { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; box-shadow: 0 1px 0 rgba(11,17,31,0.08); }
.gh-inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.gh-top { background: var(--navy); height: 60px; }
.gh-top .gh-inner { height: 100%; }
.gh-logo { display: flex; align-items: center; gap: 16px; }
.gh-logo img { height: 22px; width: auto; filter: brightness(0) invert(1); }
.gh-tag { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; border-left: 1px solid rgba(255,255,255,0.25); padding-left: 16px; line-height: 1.3; white-space: nowrap; }
.gh-top-right { display: flex; align-items: center; gap: 22px; }
.gh-top-link { font-size: 12px; color: rgba(255,255,255,0.8); letter-spacing: 0.04em; white-space: nowrap; transition: color 0.3s; }
.gh-top-link:hover { color: #fff; }
.gh-cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--navy); font-size: 13px; font-weight: 700; padding: 9px 22px 9px 8px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.04em; transition: transform 0.3s, box-shadow 0.3s; }
.gh-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.28); }
.gh-cta-free { background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 50px; letter-spacing: 0.06em; }
.gh-cta .arrow { font-size: 15px; }
.gh-cta-mobile { display: none; }
.gh-nav { background: #fff; height: 50px; }
.gh-nav .gh-inner { height: 100%; }
.gh-menu { display: flex; align-items: stretch; height: 100%; margin: 0; padding: 0; list-style: none; gap: 4px; }
.gh-item { position: relative; display: flex; align-items: stretch; }
.gh-item > a { display: flex; align-items: center; gap: 6px; padding: 0 18px; font-size: 13.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; white-space: nowrap; position: relative; transition: color 0.3s; }
.gh-item > a::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px; background: var(--navy); transform: scaleX(0); transition: transform 0.3s; }
.gh-item:hover > a::after, .gh-item > a.active::after { transform: scaleX(1); }
.gh-caret { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.6; }
.gh-dd { position: absolute; top: 100%; left: 0; min-width: 560px; padding-top: 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s; pointer-events: none; z-index: 1001; }
.gh-dd-narrow { min-width: 260px; }
.gh-item.has-dd:hover .gh-dd { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.gh-dd-inner { background: #fff; border: 1px solid rgba(11,17,31,0.12); border-top: 2px solid var(--navy); box-shadow: 0 12px 36px rgba(11,17,31,0.14); padding: 20px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; }
.gh-dd-narrow .gh-dd-inner { grid-template-columns: 1fr; }
.gh-dd-col { display: flex; flex-direction: column; }
.gh-dd-h { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--gold); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid rgba(11,17,31,0.1); }
.gh-dd-col > a { font-size: 13px; color: var(--text-dark); padding: 7px 4px 7px 14px; position: relative; line-height: 1.5; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.gh-dd-col > a::before { content: ''; position: absolute; left: 2px; top: 50%; width: 5px; height: 5px; border-right: 1.5px solid var(--gold); border-top: 1.5px solid var(--gold); transform: translateY(-50%) rotate(45deg); }
.gh-dd-col > a:hover { color: var(--navy); background: var(--bg-cream); }
.gh-dd-all { margin-top: 6px; font-weight: 700; color: var(--navy) !important; }
.gh-dd-all::before { display: none !important; }
.gh-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.gh-burger span { width: 24px; height: 2px; background: #fff; transition: 0.3s; display: block; }
.gh-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gh-burger.active span:nth-child(2) { opacity: 0; }
.gh-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* body offset (2段ヘッダー分) */
body { padding-top: 110px; }
.page-hero { padding-top: 60px; }
@media (max-width: 1100px) { .gh-tag { display: none; } .gh-item > a { padding: 0 12px; font-size: 13px; } }
@media (max-width: 1024px) {
  body { padding-top: 60px; }
  .gh-top-right { display: none; }
  .gh-burger { display: flex; }
  .gh-nav { position: fixed; top: 60px; left: 0; right: 0; bottom: 0; height: auto; background: #fff; overflow-y: auto; display: none; padding: 16px 0 40px; }
  .gh-nav.mobile-open { display: block; }
  .gh-nav .gh-inner { flex-direction: column; align-items: stretch; height: auto; padding: 0; }
  .gh-menu { flex-direction: column; height: auto; gap: 0; }
  .gh-item { flex-direction: column; border-bottom: 1px solid rgba(11,17,31,0.08); }
  .gh-item > a { padding: 16px 24px; font-size: 15px; justify-content: space-between; }
  .gh-item > a::after { display: none; }
  .gh-caret { transform: rotate(45deg); transition: transform 0.3s; }
  .gh-item.dropdown-open .gh-caret { transform: rotate(-135deg); }
  .gh-dd { position: static; min-width: 0; opacity: 1; visibility: visible; transform: none; pointer-events: auto; display: none; }
  .gh-item.dropdown-open .gh-dd { display: block; }
  .gh-dd-inner { border: none; box-shadow: none; padding: 0 24px 12px 32px; grid-template-columns: 1fr; gap: 0; background: var(--bg-cream); }
  .gh-dd-h { margin-top: 12px; }
  .gh-dd-col > a { white-space: normal; padding: 9px 4px 9px 14px; }
  .gh-cta-mobile { display: inline-flex; margin: 20px 24px 0; justify-content: center; background: var(--navy); color: #fff; }
  .gh-cta-mobile .gh-cta-free { background: #fff; color: var(--navy); }
  .page-hero { padding-top: 40px; }
}

/* アンカー着地時に固定ヘッダーで見出しが隠れないように */
[id] { scroll-margin-top: 132px; }
@media (max-width:1024px){ [id] { scroll-margin-top: 84px; } }
