/* ==============================================
   THE JOB HOPPERS サイト構造CSS
   カラー: #2c3e50（紺） / #e74c3c（赤） / #2ecc71（緑）
   ============================================== */

/* ===== ヘッダーナビ: 比較ページボタン強調 ===== */
#navi .menu-item a[href*="taishoku-daikou-osusume"] {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 20px !important;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
#navi .menu-item a[href*="taishoku-daikou-osusume"]:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

/* ===== トップページ ===== */
.jh-top {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
}
.jh-top h2 {
  font-size: 22px;
  font-weight: 800;
  color: #2c3e50;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #e74c3c;
}

/* --- Hero --- */
.jh-top-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 56px 28px 48px;
  text-align: center;
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.jh-top-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(231,76,60,0.08);
  border-radius: 50%;
}
.jh-top-hero > * {
  position: relative;
  z-index: 1;
}
.jh-top-hero-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 16px;
}
.jh-top-hero-title em {
  font-style: normal;
  color: #e74c3c;
}
.jh-top-hero-sub {
  font-size: 15px;
  opacity: 0.92;
  margin: 0 0 28px;
  line-height: 1.7;
}
.jh-top-hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff !important;
  font-size: 18px;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
  transition: all 0.3s;
}
.jh-top-hero-cta:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(231, 76, 60, 0.5);
  color: #fff !important;
}
.jh-cta-micro {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 4px;
}
.jh-top-hero-points {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.85;
}

/* --- お悩み共感 --- */
.jh-top-worries {
  background: #fdf2f2;
  border: 1px solid #f5c6cb;
  border-radius: 12px;
  padding: 36px 28px;
  margin-bottom: 40px;
}
.jh-top-worries h2 {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.jh-top-worries-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.jh-top-worries-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 15px;
  color: #555;
  border-bottom: 1px solid #f5c6cb;
}
.jh-top-worries-list li:last-child { border-bottom: none; }
.jh-top-worries-list li::before {
  content: "\2713";
  position: absolute;
  left: 4px;
  top: 12px;
  color: #e74c3c;
  font-weight: 700;
  font-size: 14px;
}
.jh-top-worries-solution {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}
.jh-top-worries-solution strong {
  color: #e74c3c;
}

/* --- カテゴリ --- */
.jh-top-categories {
  margin-bottom: 48px;
}
.jh-top-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.jh-top-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
  background: #fff;
  border: 2px solid #e8edf2;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s;
}
.jh-top-cat-card:hover {
  border-color: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.1);
}
.jh-top-cat-icon {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}
.jh-top-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
}
.jh-top-cat-desc {
  font-size: 12px;
  color: #888;
  text-align: center;
}

/* --- 中間CTA --- */
.jh-top-mid-cta {
  text-align: center;
  margin-bottom: 40px;
  padding: 32px 20px;
  background: #fdf2f2;
  border-radius: 12px;
  border: 1px dashed #f5c6cb;
}

/* --- 最新記事 --- */
.jh-top-articles {
  margin-bottom: 48px;
}
.jh-top-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jh-top-latest-card {
  display: block;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.2s;
}
.jh-top-latest-card:hover {
  border-color: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.jh-top-latest-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.jh-top-latest-nothumb {
  width: 100%;
  height: 140px;
  background: #e8edf2;
}
.jh-top-latest-body {
  padding: 12px 14px;
}
.jh-top-latest-cat {
  display: inline-block;
  background: #fdf2f2;
  color: #e74c3c;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.jh-top-latest-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

/* --- BottomCTA --- */
.jh-top-bottom-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 48px 28px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 24px;
}
.jh-top-bottom-cta h2 {
  color: #fff;
  border-bottom: none;
  font-size: 22px;
  margin: 0 0 12px;
  padding: 0;
}
.jh-top-bottom-cta p {
  font-size: 15px;
  opacity: 0.92;
  margin: 0 0 24px;
  line-height: 1.7;
}

/* ===== カテゴリページヘッダー ===== */
.jh-cat-header {
  background: #fdf2f2;
  border: 1px solid #f5c6cb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.jh-cat-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 16px;
}
.jh-cat-cta a {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.25);
}
.jh-cat-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.35);
}

/* ===== サイドバーCTA ===== */
.jh-sidebar-cta a {
  display: block;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff !important;
  text-align: center;
  border-radius: 12px;
  padding: 24px 16px;
  text-decoration: none !important;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.2);
}
.jh-sidebar-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.3);
}
.jh-sidebar-cta-badge {
  display: inline-block;
  background: rgba(231, 76, 60, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.jh-sidebar-cta-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.jh-sidebar-cta-desc {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 12px;
}
.jh-sidebar-cta-btn {
  display: block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* ===== トップページ: Cocoon不要要素非表示 ===== */
.front-top-page .sns-share,
.front-top-page .sns-follow,
.front-top-page .date-tags,
.front-top-page .author-info,
.front-top-page .footer-meta,
.front-top-page .entry-title,
.front-top-page .article-header,
.front-top-page .eye-catch-wrap {
  display: none !important;
}
.front-top-page #sidebar {
  display: none !important;
}
.front-top-page #main {
  margin: 0 auto !important;
  float: none !important;
  width: 100% !important;
  max-width: 960px !important;
  padding: 0 !important;
}
.front-top-page #content-in {
  display: block !important;
  max-width: 960px;
  margin: 0 auto;
}
.front-top-page .article {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.front-top-page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .jh-top-hero { padding: 40px 20px 36px; }
  .jh-top-hero-title { font-size: 24px; }
  .jh-top-hero-cta { font-size: 16px; padding: 16px 36px; }
  .jh-top-hero-points { flex-direction: column; gap: 6px; }
  .jh-top-worries { padding: 28px 20px; }
  .jh-top-worries-list li { font-size: 14px; }
  .jh-top-cat-grid { grid-template-columns: 1fr; }
  .jh-top-cat-card { padding: 20px 12px; }
  .jh-top-bottom-cta { padding: 36px 20px; }
  .jh-top-bottom-cta h2 { font-size: 19px; }
  .jh-top-latest-grid { grid-template-columns: repeat(2, 1fr); }
  .jh-top-latest-card img { height: 110px; }
  #navi .menu-item a[href*="taishoku-daikou-osusume"] {
    padding: 6px 14px !important;
    font-size: 12px;
  }
}

/* === 体育会系特集セクション === */
.jh-top-feature {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
  border: 1px solid #c0d4ff;
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.jh-top-feature h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}
.jh-top-feature p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 20px;
}
.jh-top-feature-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.jh-top-feature-sub {
  color: #2b70ef;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.jh-top-feature-sub:hover {
  text-decoration: underline;
}
