/* ===== 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: #c5a55a;
  --gold-light: #d4b96e;
  --gold-gradient: linear-gradient(135deg, #c5a55a 0%, #e8d5a3 50%, #c5a55a 100%);
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #999;
  --bg-light: #f8f6f2;
  --bg-cream: #faf8f4;
  --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;
}
.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: var(--gold-gradient) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.header-cta::after { display: none !important; }
.header-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(197, 165, 90, 0.4) !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(197, 165, 90, 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: 8px 20px; border: 1px solid #ddd; border-radius: 50px;
  font-size: 13px; font-weight: 500; color: var(--text-gray);
  background: #fff; cursor: pointer; transition: var(--transition);
  font-family: inherit;
}
.filter-tag:hover { border-color: var(--gold); color: var(--gold); }
.filter-tag.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: block;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Story Card */
.story-card .card-header {
  background: var(--navy); padding: 20px 24px;
}
.story-card .career-path {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.story-card .career-from, .story-card .career-to {
  font-size: 12px; color: rgba(255,255,255,0.9); font-weight: 500;
}
.story-card .career-arrow { color: var(--gold); font-size: 14px; flex-shrink: 0; }
.story-card .career-meta { font-size: 11px; color: rgba(255,255,255,0.5); }
.story-card .card-body { padding: 24px; }
.story-card .card-title {
  font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 12px; line-height: 1.6;
}
.story-card .card-excerpt {
  font-size: 13px; color: var(--text-gray); line-height: 1.8;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.story-card .card-tag {
  display: inline-block; background: rgba(197,165,90,0.1); color: var(--gold);
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 4px; margin-top: 12px;
}

/* Guide Card */
.guide-grid { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.guide-card {
  display: flex; align-items: stretch; background: #fff;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.guide-card:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.guide-number {
  flex-shrink: 0; width: 80px; background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 700;
  color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.guide-card-body { padding: 24px 28px; flex: 1; }
.guide-card-title {
  font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.guide-card-desc { font-size: 13px; color: var(--text-gray); line-height: 1.7; margin-bottom: 8px; }
.guide-card-link { font-size: 13px; color: var(--gold); font-weight: 600; }

/* Column Card */
.column-grid { grid-template-columns: repeat(3, 1fr); }
.column-card { border-radius: 16px; 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.5s;
}
.column-card:hover .column-card-thumb img { transform: scale(1.05); }
.column-card-category {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: #fff; font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px; letter-spacing: 1px;
}
.column-card-body { padding: 20px 24px; }
.column-card-title {
  font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; line-height: 1.5;
}
.column-card-excerpt {
  font-size: 13px; color: var(--text-gray); line-height: 1.7;
  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: 16px;
}
.column-card-date { font-size: 12px; color: var(--text-light); }
.column-card-read { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ===== 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(197,165,90,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(197,165,90,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: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #eee; overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; transition: color 0.3s;
}
.faq-question h3 {
  font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.6; flex: 1;
}
.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(197,165,90,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(197,165,90,0.5);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s; pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta a {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold-gradient); color: #fff;
  font-size: 14px; font-weight: 700; padding: 16px 32px;
  border-radius: 50px; box-shadow: 0 6px 25px rgba(197,165,90,0.4);
  transition: var(--transition); text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.floating-cta a:hover {
  transform: translateY(-2px); box-shadow: 0 8px 35px rgba(197,165,90,0.5);
}

/* ===== 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-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(197,165,90,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(197,165,90,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;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card-grid { -ms-overflow-style: none; scrollbar-width: none; }
  .card-grid .card { flex: 0 0 85%; max-width: 85%; scroll-snap-align: start; }

  .guide-card { flex-direction: column; }
  .guide-number { width: 100%; height: 48px; font-size: 18px; }

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

  .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; }
}
