
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif; background: #f5f7fa; color: #333; line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

header { background: #1a1a2e; color: white; padding: 16px 0; }
.logo { font-size: 1.4rem; font-weight: bold; color: #e94560; }
.tagline { font-size: 0.85rem; color: #aaa; margin-top: 4px; }

.hero { background: linear-gradient(135deg, #1a1a2e, #16213e); color: white; padding: 48px 32px; border-radius: 12px; margin: 24px 0; text-align: center; }
.hero h1 { font-size: 1.8rem; margin-bottom: 12px; }
.hero p { color: #ccc; margin-bottom: 24px; }
.search-box input { width: 100%; max-width: 500px; padding: 14px 20px; border: none; border-radius: 50px; font-size: 1rem; outline: none; }

.filters { margin: 16px 0; }
.category-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-btn { padding: 6px 14px; border: 1px solid #ddd; background: white; border-radius: 20px; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.cat-btn:hover, .cat-btn.active { background: #e94560; color: white; border-color: #e94560; }

.fc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin: 20px 0; }
.fc-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.fc-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.fc-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.category-tag { background: #f0f4ff; color: #4a6cf7; padding: 3px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; }
.badge.warning { background: #fff3cd; color: #856404; padding: 3px 8px; border-radius: 8px; font-size: 0.7rem; }
.badge.no-recruit { background: #f0f0f0; color: #666; padding: 3px 8px; border-radius: 8px; font-size: 0.7rem; }
.badge.inquiry { background: #e8f4fd; color: #0c5460; padding: 3px 8px; border-radius: 8px; font-size: 0.7rem; }

/* ランクバッジ（カード用） */

/* ソートコントロール */
.sort-controls { margin-top: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sort-controls span { font-size: 0.85rem; color: #666; }
.sort-btn { padding: 4px 12px; border: 1px solid #ddd; background: white; border-radius: 16px; cursor: pointer; font-size: 0.8rem; }
.sort-btn:hover, .sort-btn.active { background: #1a1a2e; color: white; border-color: #1a1a2e; }

/* スコア表示（カード内） */
.stat .score-val { font-weight: 700; color: #e94560; }

/* スコアブロック（詳細ページ） */
.score-block { display: flex; align-items: center; gap: 16px; background: #f8f9fa; border-radius: 10px; padding: 14px 18px; margin: 12px 0; }
.score-block.score-na { color: #888; font-size: 0.9rem; }
.score-na-text { margin-left: 8px; }
.score-label { font-size: 0.8rem; color: #666; margin-right: 8px; }
.score-rank { font-size: 2rem; font-weight: 900; width: 52px; height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.score-rank.rank-S { background: #ffd700; color: #7a5800; }
.score-rank.rank-A { background: #28a745; color: white; }
.score-rank.rank-B { background: #007bff; color: white; }
.score-rank.rank-C { background: #ffc107; color: #333; }
.score-rank.rank-D { background: #dc3545; color: white; }
.score-rank.rank-E { background: #6c757d; color: white; }
.score-main { font-size: 1.6rem; font-weight: 700; color: #1a1a2e; }
.score-sub { font-size: 0.9rem; color: #888; font-weight: 400; }
.score-breakdown { font-size: 0.8rem; color: #666; margin-top: 3px; }
.fc-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.fc-card h3 a { color: #1a1a2e; text-decoration: none; }
.fc-card h3 a:hover { color: #e94560; }
.fc-desc { font-size: 0.82rem; color: #555; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fc-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.stat { background: #f8f9fa; padding: 8px; border-radius: 8px; text-align: center; }
.stat .label { font-size: 0.7rem; color: #888; display: block; }
.stat .value { font-size: 0.85rem; font-weight: 600; color: #333; display: block; margin-top: 2px; }
.detail-link { color: #e94560; text-decoration: none; font-size: 0.9rem; font-weight: 600; }

/* Detail page */
.fc-detail { padding: 24px 16px; }
.breadcrumb { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.breadcrumb a { color: #4a6cf7; text-decoration: none; }
.warning-banner { background: #fff3cd; border-left: 4px solid #ffc107; padding: 12px 16px; border-radius: 4px; margin-bottom: 20px; }
.fc-summary-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 24px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 12px; }
.stat-item { text-align: center; }
.stat-label { font-size: 0.75rem; color: #888; margin-bottom: 4px; }
.stat-value { font-size: 1rem; font-weight: 700; color: #1a1a2e; }
.meta { font-size: 0.8rem; color: #aaa; text-align: right; }
.fc-content { background: white; border-radius: 12px; padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.fc-content h1 { font-size: 1.8rem; color: #1a1a2e; margin-bottom: 8px; }
.fc-content h2 { font-size: 1.2rem; color: #1a1a2e; margin: 28px 0 12px; padding-bottom: 6px; border-bottom: 2px solid #f0f0f0; }
.fc-content h3 { font-size: 1rem; color: #333; margin: 16px 0 8px; }
.fc-content p { margin: 8px 0; }
.fc-content li { margin: 4px 0 4px 20px; }
.table-wrap { overflow-x: auto; margin: 12px 0; }
.fc-content table { width: 100%; border-collapse: collapse; }
.fc-content th, .fc-content td { padding: 8px 12px; border: 1px solid #e0e0e0; font-size: 0.9rem; }
.fc-content th { background: #f8f9fa; font-weight: 600; }
.fc-content hr { border: none; border-top: 1px solid #f0f0f0; margin: 24px 0; }
pre { background: #f4f4f4; padding: 16px; border-radius: 8px; overflow-x: auto; margin: 12px 0; }
code { font-size: 0.85rem; }
a { color: #4a6cf7; }

/* ヘッダーナビ */
.header-nav { display: flex; gap: 16px; margin-top: 8px; }
.header-nav a { color: #aaa; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.header-nav a:hover { color: #e94560; }

/* 問い合わせページ */
.contact-hero { background: linear-gradient(135deg, #1a1a2e, #16213e); color: white; padding: 48px 32px; border-radius: 12px; margin: 24px 0; text-align: center; }
.contact-hero h1 { font-size: 1.8rem; margin-bottom: 12px; }
.contact-hero p { color: #ccc; }
.contact-types { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.contact-type-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: center; }
.ct-icon { font-size: 2rem; margin-bottom: 8px; }
.contact-type-card h3 { font-size: 1rem; margin-bottom: 8px; color: #1a1a2e; }
.contact-type-card p { font-size: 0.85rem; color: #666; }

.contact-form { background: white; border-radius: 12px; padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin: 24px 0; max-width: 700px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: #333; }
.required { color: #e94560; }
.form-group input[type="text"], .form-group input[type="email"], .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #4a6cf7; outline: none; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-weight: normal; font-size: 0.85rem; cursor: pointer; }
.submit-btn { background: #e94560; color: white; border: none; padding: 14px 40px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.submit-btn:hover { background: #d63851; }
.contact-note { background: #f8f9fa; border-radius: 12px; padding: 24px; margin: 24px 0; }
.contact-note h3 { font-size: 1rem; margin-bottom: 12px; }
.contact-note ul { padding-left: 20px; }
.contact-note li { font-size: 0.85rem; color: #666; margin-bottom: 6px; }

/* インタビューページ */
.interview-hero { background: linear-gradient(135deg, #16213e, #0f3460); color: white; padding: 48px 32px; border-radius: 12px; margin: 24px 0; text-align: center; }
.interview-hero h1 { font-size: 1.8rem; margin-bottom: 12px; }
.interview-hero p { color: #ccc; }

.interview-why { margin: 32px 0; }
.interview-why h2 { font-size: 1.3rem; color: #1a1a2e; margin-bottom: 20px; }
.why-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.why-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.why-card h3 { font-size: 1rem; color: #1a1a2e; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: #555; line-height: 1.7; }

.interview-topics { margin: 32px 0; }
.interview-topics h2 { font-size: 1.3rem; color: #1a1a2e; margin-bottom: 20px; }
.topics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.topic-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); position: relative; }
.topic-num { position: absolute; top: 12px; right: 16px; font-size: 2rem; font-weight: 900; color: #f0f0f0; }
.topic-card h3 { font-size: 0.95rem; color: #1a1a2e; margin-bottom: 6px; }
.topic-card p { font-size: 0.8rem; color: #666; }

.interview-list { margin: 32px 0; }
.interview-list h2 { font-size: 1.3rem; color: #1a1a2e; margin-bottom: 16px; }
.coming-soon { color: #999; font-style: italic; padding: 32px; text-align: center; background: #f8f9fa; border-radius: 12px; }

.interview-cta { background: #1a1a2e; color: white; border-radius: 12px; padding: 48px 32px; margin: 32px 0; text-align: center; }
.interview-cta h2 { font-size: 1.4rem; margin-bottom: 12px; }
.interview-cta p { color: #ccc; margin-bottom: 24px; }
.cta-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; max-width: 700px; margin: 0 auto; }
.cta-card { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; }
.cta-card h3 { color: white; font-size: 1rem; margin-bottom: 8px; }
.cta-card p { color: #aaa; font-size: 0.85rem; margin-bottom: 16px; }
.cta-btn { display: inline-block; background: #e94560; color: white; padding: 10px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.cta-btn:hover { background: #d63851; color: white; }

/* 非公募FCセクション */
.no-recruit-section { margin: 48px 0 24px; padding: 32px; background: #f8f9fa; border-radius: 12px; }
.section-title { font-size: 1.2rem; color: #666; margin-bottom: 8px; }
.section-desc { font-size: 0.85rem; color: #999; margin-bottom: 20px; }
.no-recruit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.nr-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: white; border-radius: 8px; text-decoration: none; color: #333; border: 1px solid #e8e8e8; transition: all 0.2s; }
.nr-item:hover { border-color: #999; background: #fafafa; }
.nr-name { font-size: 0.9rem; font-weight: 500; }
.nr-note { font-size: 0.7rem; color: #999; }

footer { background: #1a1a2e; color: #aaa; padding: 24px 0; margin-top: 48px; text-align: center; font-size: 0.85rem; }
footer a { color: #e94560; }
.disclaimer { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 12px 16px; margin-bottom: 12px; }
.disclaimer p { font-size: 0.75rem; color: #888; line-height: 1.6; margin: 0; }

/* ブログ */
.blog-hero { background: linear-gradient(135deg, #1a1a2e, #16213e); color: white; padding: 48px 32px; border-radius: 12px; margin: 24px 0; text-align: center; }
.blog-hero h1 { font-size: 1.8rem; margin-bottom: 12px; }
.blog-hero p { color: #ccc; }

.blog-list { margin: 24px 0; }
.blog-card { background: white; border-radius: 12px; padding: 24px 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 20px; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; font-size: 0.8rem; color: #888; }
.blog-card-tag { background: #f0f4ff; color: #4a6cf7; padding: 3px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; }
.blog-card h2 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card h2 a { color: #1a1a2e; text-decoration: none; }
.blog-card h2 a:hover { color: #e94560; }
.blog-card p { font-size: 0.9rem; color: #555; margin-bottom: 12px; }

.blog-article { background: white; border-radius: 12px; padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin: 24px 0; }
.blog-article h1 { font-size: 1.6rem; color: #1a1a2e; margin-bottom: 16px; line-height: 1.5; }
.blog-article h2 { font-size: 1.25rem; color: #1a1a2e; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 2px solid #f0f0f0; }
.blog-article h3 { font-size: 1.05rem; color: #333; margin: 20px 0 10px; }
.blog-article p { margin: 10px 0; line-height: 1.85; }
.blog-article ul, .blog-article ol { margin: 10px 0 10px 24px; }
.blog-article li { margin: 6px 0; line-height: 1.7; }

.blog-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; font-size: 0.85rem; color: #888; }
.blog-author { color: #666; }
.blog-lead { background: #f8f9fa; border-left: 4px solid #e94560; padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; }
.blog-lead p { margin: 6px 0; color: #444; }

.blog-toc { background: #fafbfc; border: 1px solid #e8e8e8; border-radius: 10px; padding: 20px 24px; margin: 24px 0; }
.toc-title { font-weight: 700; font-size: 0.95rem; color: #1a1a2e; margin-bottom: 10px; }
.blog-toc ol { padding-left: 20px; }
.blog-toc li { margin: 6px 0; }
.blog-toc a { color: #4a6cf7; text-decoration: none; font-size: 0.9rem; }
.blog-toc a:hover { text-decoration: underline; }

.checklist-grid { margin: 20px 0; }
.checklist-item { display: flex; gap: 16px; background: #f8f9fa; border-radius: 10px; padding: 20px; margin-bottom: 14px; }
.check-num { flex-shrink: 0; width: 36px; height: 36px; background: #e94560; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; }
.checklist-item h3 { font-size: 1rem; color: #1a1a2e; margin-bottom: 8px; }
.checklist-item p { font-size: 0.9rem; color: #555; margin: 4px 0; }
.checklist-item ul { padding-left: 20px; margin: 6px 0; }
.checklist-item li { font-size: 0.9rem; color: #555; }

.blog-cta { background: #1a1a2e; color: white; border-radius: 12px; padding: 32px; margin: 28px 0; text-align: center; }
.blog-cta p { color: #ccc; margin-bottom: 20px; }
.blog-cta .cta-btn { display: inline-block; }

.blog-faq { margin-top: 32px; }
.faq-item { background: #f8f9fa; border-radius: 10px; padding: 20px 24px; margin-bottom: 14px; }
.faq-item h3 { font-size: 1rem; color: #1a1a2e; margin-bottom: 10px; }
.faq-item p { font-size: 0.9rem; color: #555; line-height: 1.8; }

@media (max-width: 768px) {
  .fc-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .fc-stats { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.4rem; }
  .blog-article { padding: 20px; }
  .checklist-item { flex-direction: column; gap: 10px; }
}
