@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon Child Theme
Theme URI: https://wp-cocoon.com/
Author: waihira
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/* ===========================================
   jitan-life.com - 5 Color Palette
   -------------------------------------------
   1. #667eea  - Primary (brand, headings, links, CTA)
   2. #333333  - Text
   3. #27ae60  - Action (affiliate CTA, positive)
   4. #e74c3c  - Price / accent
   5. #f7f8fc  - Background (alt sections)
   Neutrals: #666, #888, #e0e0e0, #fff
   =========================================== */

/* ===== SP-only line break ===== */
.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
}

/* ===== HERO SECTION ===== */
.jl-hero {
  background: #667eea;
  color: #fff !important;
  padding: 24px 20px 32px;
  text-align: center;
  margin: -20px -20px 0 -20px;
  position: relative;
  overflow: hidden;
}
.jl-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* No diagonal cut - clean straight edge */
.jl-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.jl-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  color: #fff !important;
}
.jl-hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #fff !important;
  letter-spacing: 0.02em;
  /* Override Cocoon h2 styles inside hero */
  border: none !important;
  border-left: none !important;
  padding-left: 0 !important;
  background: none !important;
}
/* Override ALL Cocoon h2/h3/h4 heading styles inside jl- sections */
.jl-hero h2, .jl-hero h3, .jl-hero h4,
.jl-section h2, .jl-section h3, .jl-section h4,
.jl-nav-card h3, .jl-nav-card-title,
.jl-mobile-card h3, .jl-mobile-card-name,
.entry-content .jl-hero h2,
.entry-content .jl-section h2,
.entry-content .jl-section h3,
.entry-content .jl-nav-card h3,
.entry-content .jl-nav-card-title {
  border: none !important;
  border-left: none !important;
  border-bottom: none !important;
  border-top: none !important;
  padding-left: 0 !important;
  padding: 0 !important;
  margin: 0 0 6px 0 !important;
  background: none !important;
  background-color: transparent !important;
  position: relative !important;
}
/* Kill Cocoon h3 ::before and ::after decorations */
.jl-hero h2::before, .jl-hero h2::after,
.jl-hero h3::before, .jl-hero h3::after,
.jl-section h2::before, .jl-section h2::after,
.jl-section h3::before, .jl-section h3::after,
.jl-nav-card h3::before, .jl-nav-card h3::after,
.entry-content .jl-nav-card h3::before,
.entry-content .jl-nav-card h3::after,
.entry-content .jl-section h3::before,
.entry-content .jl-section h3::after {
  display: none !important;
  content: none !important;
}
.jl-hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88) !important;
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 500;
}
.jl-hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}
.jl-stat-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.jl-stat-card-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff !important;
  line-height: 1.2;
}
.jl-stat-card-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  margin-top: 2px;
}
.jl-hero-cta-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8) !important;
}
.jl-hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.jl-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  color: #667eea !important;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.jl-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-decoration: none;
  color: #667eea !important;
}

/* ===== SECTION COMMON ===== */
.jl-section {
  padding: 32px 0;
}
.jl-section-alt {
  background: #f7f8fc;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.jl-section-title {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: #333 !important;
  border-left: 4px solid #667eea;
  padding-left: 12px;
}
.jl-section-title-accent {
  display: block;
  width: 36px;
  height: 3px;
  background: #667eea;
  border-radius: 2px;
  margin: 8px 0 12px;
}
.jl-section-lead {
  color: #666 !important;
  margin-bottom: 24px;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== CTA BUTTON ===== */
.jl-section-cta-btn {
  display: inline-block;
  color: #667eea !important;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 26px;
  border: 2px solid #667eea;
  border-radius: 50px;
  transition: all 0.25s;
  font-size: 0.88rem;
}
.jl-section-cta-btn:hover {
  background: #667eea;
  color: #fff !important;
  text-decoration: none;
}
.jl-section-more {
  text-align: center;
  margin-top: 18px;
}

/* ===== NAV CARDS (unified color) ===== */
.jl-nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.jl-nav-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  text-decoration: none;
  color: #333 !important;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.jl-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333 !important;
}
.jl-nav-card-header {
  display: none;
}
.jl-nav-card-body {
  padding: 0;
}
.jl-nav-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #333 !important;
  line-height: 1.5;
}
.jl-nav-card-desc {
  font-size: 0.8rem;
  color: #666 !important;
  line-height: 1.7;
  margin-bottom: 8px;
}
.jl-nav-card-articles {
  display: none;
}
.jl-nav-card-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  background: #f7f8fc;
  color: #667eea !important;
  transition: all 0.2s;
}
.jl-nav-card:hover .jl-nav-card-link {
  background: #667eea;
  color: #fff !important;
}

/* ===== HIGHLIGHT BANNER ===== */
.jl-highlight-banner {
  background: #f7f8fc;
  border: 2px solid #667eea;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.jl-highlight-banner-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #333 !important;
  line-height: 1.5;
}
.jl-highlight-banner-text strong {
  color: #e74c3c !important;
}

/* ===== COMPARE TABLE ===== */
.jl-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 960px;
}
.jl-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.jl-compare-table thead th {
  background: #667eea;
  color: #fff !important;
  padding: 11px 12px;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  text-align: center;
  border: none;
}
.jl-compare-table thead th:first-child { border-radius: 12px 0 0 0; }
.jl-compare-table thead th:last-child { border-radius: 0 12px 0 0; }
.jl-compare-table tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  vertical-align: middle;
  color: #333 !important;
}
.jl-compare-table tbody tr:last-child td { border-bottom: none; }
.jl-compare-table tbody tr:hover { background: #f7f8fc; }
.jl-compare-table tbody tr.jl-row-gold {
  background: #f7f8fc;
}
.jl-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.8rem;
  color: #fff !important;
}
.jl-rank-1 { background: #667eea; }
.jl-rank-2 { background: #aaa; }
.jl-rank-3 { background: #cba36a; }
.jl-price {
  font-weight: 900;
  color: #e74c3c !important;
  font-size: 1.05rem;
}
.jl-feature-tag {
  display: inline-block;
  background: #f7f8fc;
  color: #667eea !important;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
}
.jl-table-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.jl-table-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.jl-table-btn-primary {
  background: #27ae60;
  color: #fff !important;
}
.jl-table-btn-primary:hover {
  background: #219a52;
  color: #fff !important;
}
.jl-table-btn-secondary {
  background: #f7f8fc;
  color: #667eea !important;
  border: 2px solid #667eea;
}
.jl-table-btn-secondary:hover {
  background: #667eea;
  color: #fff !important;
}
.jl-stars { color: #667eea; font-size: 0.95rem; letter-spacing: 1px; }
.jl-stars-dim { color: #e0e0e0; }

/* ===== MOBILE CARDS ===== */
.jl-cards-mobile { display: none; max-width: 960px; margin: 0 auto; }
.jl-mobile-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}
.jl-mobile-card-rank { margin-bottom: 8px; }
.jl-mobile-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #333 !important;
  margin-bottom: 6px;
}
.jl-mobile-card-price { margin-bottom: 6px; }
.jl-mobile-card-feature { margin-bottom: 6px; }
.jl-mobile-card-rec {
  font-size: 0.8rem;
  color: #666 !important;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ===== NEW ARTICLES (Cocoon new_list shortcode) ===== */
.jl-section-alt .widget-entry-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 !important;
}
.jl-section-alt .widget-entry-cards .widget-entry-card-content {
  padding: 8px 4px;
}
.jl-section-alt .widget-entry-cards .widget-entry-card-link {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.jl-section-alt .widget-entry-cards .widget-entry-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.jl-section-alt .widget-entry-card-thumb {
  width: 100% !important;
  height: auto !important;
}
.jl-section-alt .widget-entry-card-title {
  font-size: 0.82rem !important;
  font-weight: 700;
  line-height: 1.5;
  color: #333 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Legacy grid (unused now) */
.jl-new-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.jl-article-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #333 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.jl-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333 !important;
}
.jl-article-card-thumb-placeholder {
  width: 100%;
  height: 120px;
  background: #f7f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 1.2rem;
}
.jl-article-card-body { padding: 10px 12px 14px; }
.jl-article-card-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 5px;
  background: #f7f8fc;
  color: #667eea !important;
}
.jl-article-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== ABOUT SECTION ===== */
.jl-about-section { text-align: center; }
.jl-about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.9;
  color: #666 !important;
  font-size: 0.88rem;
}
.jl-about-content p { margin-bottom: 10px; }
.jl-trust-metrics {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 20px auto;
  flex-wrap: nowrap;
  max-width: 600px;
}
.jl-trust-metric {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1;
}
.jl-trust-metric-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #667eea !important;
  line-height: 1.2;
}
.jl-trust-metric-label {
  font-size: 0.72rem;
  color: #888 !important;
  font-weight: 500;
}
.jl-about-author {
  background: #f7f8fc;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
.jl-about-author-name {
  font-size: 1rem;
  font-weight: 800;
  color: #333 !important;
  margin-bottom: 6px;
}
.jl-about-author-desc {
  font-size: 0.82rem;
  color: #666 !important;
  line-height: 1.8;
}
.jl-policy-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.jl-policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #666 !important;
}

/* ===== CATEGORY NAV ===== */
.jl-quick-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}
.jl-quick-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #667eea !important;
  text-decoration: none;
  transition: all 0.2s;
}
.jl-quick-nav-btn:hover {
  background: #667eea;
  border-color: #667eea;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== FRONT PAGE OVERRIDES ===== */
.front-top-page .appeal-in,
.front-top-page .appeal,
.front-top-page .carousel-in,
.front-top-page .carousel,
.front-top-page .entry-title,
.front-top-page .eye-catch-wrap,
.front-top-page .date-tags,
.front-top-page .article-header,
.front-top-page .carousel-wrap,
.front-top-page #carousel,
.front-top-page .recommended,
.front-top-page .recommended-in,
.front-top-page .skinadd-topmv-scroll,
.front-top-page .scroll-hint,
.front-top-page [class*="scroll"] {
  display: none !important;
}
/* front-top-page header handled by global rules above */
.front-top-page .grayish_topmv_dot,
.front-top-page .grayish_topmv_whovlay {
  display: none !important;
}
/* header bg handled globally */
/* mobile-menu-buttons handled by global mobile rules */

/* Grayish skin overrides */
.skin-grayish.front-top-page .container .header-container .header {
  height: auto !important;
  min-height: auto !important;
  background-size: 0 !important;
  background-image: none !important;
}
.skin-grayish.front-top-page .container .header-container .header .grayish_topmv_whovlay,
.skin-grayish.front-top-page .container .header-container .header .grayish_topmv_dot {
  display: none !important;
}
.skin-grayish.front-top-page .header .header-in { height: auto !important; }
.skin-grayish.front-top-page #header-container,
.skin-grayish.front-top-page .header-container,
.skin-grayish.front-top-page .header-container-in,
.skin-grayish.front-top-page #header,
.skin-grayish.front-top-page .header {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}
.skin-grayish.front-top-page #navi,
.skin-grayish.front-top-page .navi {
  background-color: transparent !important;
  background: transparent !important;
}
/* ===== GLOBAL HEADER ===== */
@media (min-width: 1024px) {
  #header-container,
  .header-container {
    position: relative !important;
    z-index: 100 !important;
    background: #fff !important;
    min-height: 0 !important;
    height: auto !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }
  .header-container.fixed-header,
  .header-container-in.fixed-header {
    position: relative !important;
    top: auto !important;
  }
}
/* Front page header: desktop only */
@media (min-width: 1024px) {
  .skin-grayish.front-top-page .header-container-in.hlt-top-menu {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
  }
  .skin-grayish.front-top-page .header-container-in > header#header {
    order: 0 !important;
    flex: 0 0 auto !important;
  }
  .skin-grayish.front-top-page .header-container-in > nav#navi {
    order: 1 !important;
    flex: 1 1 auto !important;
  }
}
@media (min-width: 1024px) {
  .skin-grayish.front-top-page .container .header-container .header {
    display: flex !important;
    align-items: center !important;
    background-image: none !important;
    background: transparent !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: unset !important;
  }
  .skin-grayish.front-top-page .header .header-in {
    min-height: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
  }
}
/* Desktop only: override grayish navi positioning */
@media (min-width: 1024px) {
  .skin-grayish .navi,
  .skin-grayish #navi {
    position: static !important;
    height: auto !important;
    width: auto !important;
    top: auto !important;
    left: auto !important;
  }
  .skin-grayish #navi-in {
    background-color: transparent !important;
    width: auto !important;
  }
  .skin-grayish.front-top-page .navi-in > ul {
    height: auto !important;
    padding: 0 !important;
  }
  .skin-grayish.front-top-page .navi-in > ul > li {
    height: auto !important;
    padding: 8px 14px !important;
    line-height: 1.4 !important;
  }
}
/* Mobile: clean header for ALL pages */
@media (max-width: 1023px) {
  /* Hide Cocoon's default header-container on mobile (all pages) */
  #header-container,
  .header-container {
    display: none !important;
  }
  /* Show mobile-header-menu-buttons as top bar (all pages) */
  .mobile-header-menu-buttons {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
    padding: 8px 14px !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0 !important;
    list-style: none !important;
    height: 44px !important;
  }
  /* Logo: always show via ::before, hide Cocoon's logo-menu-button to avoid duplicate */
  .mobile-header-menu-buttons::before {
    content: '時短ライフ' !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    color: #333 !important;
    letter-spacing: 0.02em !important;
  }
  .mobile-header-menu-buttons .logo-menu-button {
    display: none !important;
  }
  /* Search button styling */
  .mobile-header-menu-buttons .search-menu-button {
    list-style: none !important;
  }
  .mobile-header-menu-buttons .menu-button {
    list-style: none !important;
  }
  .mobile-header-menu-buttons .navi-menu-button {
    margin-right: auto !important;
  }
  .mobile-header-menu-buttons .menu-button-in {
    color: #333 !important;
    font-size: 0.7rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1px !important;
  }
  .mobile-header-menu-buttons .menu-icon {
    font-size: 1.05rem !important;
  }
  .mobile-header-menu-buttons .menu-caption {
    font-size: 0.6rem !important;
    display: none !important;
  }
  /* Slide-in menu drawer */
  .navi-menu-content,
  #navi-menu-content {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 80vw !important;
    max-width: 300px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 99999 !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15) !important;
    overflow-y: auto !important;
    padding-top: 50px !important;
  }
  .navi-menu-content .menu-drawer {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .navi-menu-content .menu-drawer li {
    border-bottom: 1px solid #f0f0f0 !important;
  }
  .navi-menu-content .menu-drawer li a {
    display: block !important;
    padding: 14px 20px !important;
    color: #333 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }
  .navi-menu-close-button {
    position: absolute !important;
    top: 10px !important;
    right: 14px !important;
    font-size: 1.3rem !important;
    color: #666 !important;
    z-index: 100000 !important;
    cursor: pointer !important;
  }
  #navi-menu-close {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.4) !important;
    z-index: 99998 !important;
  }
  /* Content offset for fixed header bar */
  #content, .content {
    padding-top: 44px !important;
  }
  /* Front page: hero absorbs the offset */
  .front-top-page #content,
  .front-top-page .content {
    padding-top: 0 !important;
  }
  .front-top-page .jl-hero {
    padding-top: 54px !important;
  }
  /* Front page: hide footer logo */
  .front-top-page .footer-bottom-logo,
  .front-top-page .footer .logo-text {
    display: none !important;
  }
  .front-top-page #footer { padding-top: 0; }
  .front-top-page .footer-bottom { padding: 8px 0; }
}
.tagline { display: none !important; }
@media (min-width: 1024px) {
  .site-name-text {
    color: #333 !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    text-align: left !important;
  }
  .site-name-text a { color: #333 !important; text-decoration: none !important; }
  .site-name-text-link { text-align: left !important; display: block !important; }
  .logo.logo-header.logo-text {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
/* Nav: right, inline with logo */
#navi, .navi {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}
#navi .navi-in, .navi .navi-in {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
.navi-in .menu-header {
  display: flex !important;
  gap: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.navi-in .menu-header .menu-item a {
  color: #333 !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  display: block !important;
}
.navi-in .menu-header .menu-item a:hover {
  color: #667eea !important;
}
/* Grayish skin: kill MV overlay, dot pattern, scroll icon on front */
.skin-grayish .grayish_topmv_whovlay,
.skin-grayish .grayish_topmv_dot,
.skin-grayish .skinadd-topmv-scroll {
  display: none !important;
}
@media (min-width: 1024px) {
  .skin-grayish #header-container,
  .skin-grayish .header-container {
    background: #fff !important;
    min-height: 0 !important;
    height: auto !important;
  }
  .skin-grayish .header-container-in {
    background: transparent !important;
    min-height: 0 !important;
  }
  .skin-grayish .header,
  .skin-grayish .header-in {
    background: transparent !important;
    background-image: none !important;
    min-height: 0 !important;
    height: auto !important;
  }
}

/* Content spacing */
.front-top-page .jl-hero { margin-top: 0 !important; }
.front-top-page #content { margin-top: 0 !important; padding-top: 0 !important; }
.front-top-page .main { padding-top: 0 !important; }
.front-top-page .entry-content { margin-top: 0 !important; padding-top: 0 !important; }
.front-top-page .article { padding-top: 0 !important; }
/* No sticky header */

/* Share icons hide on pages */
.page .sns-share,
.page .sns-follow { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Hero: full-bleed on mobile */
  .jl-hero {
    padding: 24px 16px 30px;
    margin: 0 -16px;
    border-radius: 0;
  }
  .jl-hero-title { font-size: 1.35rem; line-height: 1.45; }
  .jl-hero-sub { font-size: 0.82rem; margin-bottom: 14px; }
  .jl-hero-stats { gap: 6px; margin-bottom: 14px; }
  .jl-stat-card { padding: 8px 6px; }
  .jl-stat-card-num { font-size: 1.3rem; }
  .jl-stat-card-label { font-size: 0.68rem; }
  .jl-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 7px;
  }
  .jl-hero-btn {
    width: 80%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  /* Nav cards: single column */
  .jl-nav-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* Tighter section spacing on mobile */
  .jl-section { padding: 24px 0; }
  .jl-section-alt {
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 16px;
  }
  /* Section title: no left border on mobile, use bottom accent only */
  .jl-section-title {
    font-size: 1.1rem;
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
  .jl-section-title-accent {
    margin: 6px auto 10px;
  }
  /* Mobile: hide table, show cards */
  .jl-table-wrap { display: none !important; }
  .jl-cards-mobile { display: block !important; }
  /* New articles: list layout */
  .jl-section-alt .widget-entry-cards {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .jl-section-alt .widget-entry-cards .widget-entry-card-link {
    display: flex;
    flex-direction: row;
  }
  .jl-section-alt .widget-entry-card-thumb {
    width: 90px !important;
    flex-shrink: 0;
  }
  .jl-new-articles-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .jl-article-card {
    display: flex;
    flex-direction: row;
  }
  .jl-article-card-thumb-placeholder {
    width: 90px;
    height: auto;
    min-height: 70px;
    flex-shrink: 0;
  }
  .jl-article-card-body {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .jl-article-card-title {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }
  .jl-highlight-banner {
    flex-direction: column;
    text-align: center;
    padding: 10px 12px;
  }
  .jl-quick-nav {
    flex-direction: column;
    align-items: center;
  }
  .jl-quick-nav-btn {
    width: 80%;
    justify-content: center;
  }
  .jl-trust-metrics { gap: 6px; }
  .jl-trust-metric { padding: 10px 6px; }
  .jl-trust-metric-num { font-size: 1.2rem; }
  .jl-trust-metric-label { font-size: 0.68rem; }
  /* About section tighter */
  .jl-about-author { padding: 14px; margin-top: 14px; }
  /* About section tighter */
  .jl-about-author { padding: 14px; margin-top: 14px; }
}
