/*
Theme Name: JobJepang ID Theme
Theme URI: https://www.jobjepang.com
Author: JobJepang
Author URI: https://www.jobjepang.com
Description: Custom theme for JobJepang.com (Indonesian version) - PT Garuda Baswara Internasional
Version: 2.5.48
License: Proprietary
Text Domain: jobjepang-id
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #0072b1;
  --primary-dark: #1C2B36;
  --cta: #FF6B35;
  --cta-hover: #e85a24;
  --wa: #25D366;
  --wa-hover: #1da851;
  --success: #10B981;
  --text: #1C2B36;
  --subtext: #718096;
  --border: #EEF1F3;
  --bg: #F7FAFE;
  --white: #ffffff;
  --header-bg: #0072b1;
  --footer-bg: #0072b1;
  --nav-text: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* @keyframes float — removed, replaced by pulse */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.jj-id-header {
  background: var(--header-bg, #0072b1);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.jj-id-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jj-id-logo {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.jj-id-logo span,
.jj-id-logo .logo-accent {
  color: #ffffff;
}




/* =============================================
   HEADER NAV (new structure)
   ============================================= */

/* Hamburger — mobile default */
.jj-id-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.jj-id-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* PC Nav hidden on mobile */
.jj-id-header__nav {
  display: none;
}

/* ===== PC (768px+) ===== */
@media (min-width: 768px) { }

/* ===== Mobile fullscreen nav ===== */
.jj-id-header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0072b1;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.jj-id-header.menu-open .jj-id-header__mobile-nav {
  display: flex;
}

.jj-id-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
}

.jj-id-mobile-menu a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.jj-id-mobile-menu a:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}

.jj-id-mobile-menu .sub-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 8px 24px;
}

.jj-id-mobile-menu .jj-id-header__cta {
  background: #FF6B35;
  color: #ffffff !important;
  margin-top: 8px;
  border-radius: 8px !important;
}

.jj-id-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.jj-id-mobile-close:hover {
  background: rgba(255,255,255,0.15);
}

/* =============================================
   HERO SECTION
   ============================================= */
.jj-id-hero {
  /* ヒーロー背景: 写真URLをここに入れる（例: url('/wp-content/uploads/hero.jpg')） */
  background: linear-gradient(135deg, #005a8c 0%, #0072b1 100%);
  /* 写真に変更する場合: background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,50,0.7)), url('') center/cover no-repeat; */
  color: var(--white);
  padding: 56px 16px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
  contain: paint;
  min-height: 680px;
}

@media (min-width: 768px) {
  .jj-id-hero {
    min-height: 520px;
  }
}

.jj-id-hero h1,
.jj-id-hero .hero-sub {
  font-size-adjust: 0.52;
}

.jj-id-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-lpk {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}

.jj-id-hero h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  animation: fadeUp 0.6s ease forwards;
}

.jj-id-hero .hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 16px;
  animation: fadeUp 0.6s 0.3s ease both;
}

@media (min-width: 768px) { }

/* =============================================
   STAT CARDS (Hero overlap)
   ============================================= */
.jj-id-stats-wrap {
  max-width: 900px;
  margin: -48px auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 10;
}

.jj-id-stat-card {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: countUp 0.5s ease forwards;
  border: 1px solid rgba(255,255,255,.8);
}

.jj-id-stat-card .stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  color: var(--primary);
}

.jj-id-stat-card .stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.jj-id-stat-card .stat-label {
  font-size: 11px;
  color: var(--subtext);
  font-weight: 600;
  line-height: 1.3;
}

@media (min-width: 480px) { }

/* =============================================
   SECTION COMMON
   ============================================= */
.jj-id-section {
  padding: 64px 16px;
}

.jj-id-section-alt {
  background: var(--bg);
}

.jj-id-container {
  max-width: 1100px;
  margin: 0 auto;
}

.jj-id-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
  line-height: 1.3;
}

.jj-id-section-sub {
  font-size: 14px;
  color: var(--subtext);
  margin-bottom: 32px;
  padding-left: 20px;
}

@media (min-width: 768px) { }

/* =============================================
   JOB CARDS
   ============================================= */
.jj-id-jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 540px) { }

@media (min-width: 960px) { }

.jj-id-job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.jj-id-job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.jj-id-job-card .job-industry {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--subtext);
  margin-bottom: 8px;
}

.jj-id-job-card .job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.jj-id-job-card .job-location {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.jj-id-job-card .job-salary {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.jj-id-job-card .job-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* =============================================
   BADGES
   ============================================= */
.jj-id-badge-tg {
  display: inline-block;
  background: #E6F1FB;
  color: #185FA5;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  line-height: 1.4;
}

.jj-id-badge-mg {
  display: inline-block;
  background: #EAF3DE;
  color: #3B6D11;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  line-height: 1.4;
}

.jj-id-badge-new {
  display: inline-block;
  background: #FFF0EB;
  color: #C94A1A;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  line-height: 1.4;
}

.jj-id-badge-warn {
  display: inline-block;
  background: #FFF7E6;
  color: #B45309;
  border: 1px solid #FCD34D;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  line-height: 1.4;
  margin-bottom: 8px;
}

.jj-id-badge-warn-link {
  text-decoration: none;
  transition: background 0.2s;
}

.jj-id-badge-warn-link:hover {
  background: #FEF3C7;
  text-decoration: none;
}

/* =============================================
   PROGRAM CARDS (homepage 3-card "Pilih Jalurmu")
   Reuses .jj-id-job-card base; extends with bullets + in-card CTA
   ============================================= */
.jj-id-program-card .job-industry {
  color: var(--primary);
}

.jj-id-program-card .job-title {
  font-size: 17px;
  margin-bottom: 12px;
}

.jj-id-program-target {
  display: inline-block;
  background: #F0F9FF;
  color: #075985;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.jj-id-program-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.jj-id-program-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.jj-id-program-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #10B981;
  font-weight: 800;
}

.jj-id-program-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cta, #FF6B35);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s;
}

.jj-id-program-cta:hover {
  gap: 10px;
  text-decoration: none;
}

.jobs-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 0;
  transition: gap 0.2s;
}

.jobs-more-link:hover {
  gap: 10px;
  text-decoration: none;
}

/* =============================================
   WHY CARDS
   ============================================= */
.jj-id-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { }

.jj-id-why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  animation: slideIn 0.5s ease forwards;
}

.jj-id-why-card:nth-child(2) { border-left-color: var(--cta); }
.jj-id-why-card:nth-child(3) { border-left-color: var(--success); }

.jj-id-why-card .why-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.jj-id-why-card .why-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.jj-id-why-card .why-desc {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.7;
}

/* =============================================
   PHOTO PLACEHOLDER
   ============================================= */
.jj-id-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/1;
  background: #E8EFF5;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtext);
  font-size: 14px;
  margin-bottom: 24px;
  overflow: hidden;
}

/* =============================================
   ALUMNI CARDS
   ============================================= */
.jj-id-alumni-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { }

.jj-id-alumni-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.jj-id-alumni-card:hover {
  box-shadow: var(--shadow-md);
}

.alumni-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E8EFF5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtext);
  font-size: 28px;
  overflow: hidden;
}

.alumni-info .alumni-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.alumni-info .alumni-meta {
  font-size: 12px;
  color: var(--subtext);
  margin-bottom: 8px;
}

.alumni-info .alumni-quote {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

/* =============================================
   SNS CARDS
   ============================================= */
.jj-id-sns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) { }

.jj-id-sns-card {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  padding: 28px 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.jj-id-sns-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.jj-id-sns-card.sns-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.jj-id-sns-card.sns-tiktok {
  background: #010101;
}

.jj-id-sns-card.sns-yt {
  background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.jj-id-sns-card .sns-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}

.jj-id-sns-card .sns-name {
  font-size: 18px;
  font-weight: 700;
}

.jj-id-sns-card .sns-handle {
  font-size: 13px;
  opacity: 0.85;
}

.jj-id-sns-card .sns-cta {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: auto;
}

/* =============================================
   WARNING SECTION
   ============================================= */
.jj-id-warning {
  background: #FFF7ED;
  border-left: 4px solid var(--cta);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin: 0 auto;
  max-width: 800px;
}

.jj-id-warning .warning-title {
  font-size: 18px;
  font-weight: 700;
  color: #9A3412;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jj-id-warning .warning-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.jj-id-warning .warning-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--cta);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.jj-id-warning .warning-link:hover {
  text-decoration: underline;
}

/* =============================================
   STEPS
   ============================================= */
.jj-id-steps-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.jj-id-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.jj-id-step:last-child {
  padding-bottom: 0;
}

.jj-id-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.jj-id-step.step-final .step-num {
  background: var(--success);
}

.step-body {
  padding-top: 8px;
}

.step-body .step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.step-body .step-desc {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.6;
}

/* =============================================
   CTA BUTTONS
   ============================================= */
.jj-id-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--wa) 0%, #1da851 50%, var(--wa) 100%);
  background-size: 200% auto;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background-position 0.4s, box-shadow 0.3s;
  animation: shimmer 3s linear infinite;
  text-decoration: none;
  min-width: 240px;
}

.jj-id-cta-wa:hover {
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  color: var(--white);
}

.jj-id-cta-wa .wa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* =============================================
   CTA BLOCK (hero-style)
   ============================================= */
.jj-id-cta-block {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 64px 16px;
  text-align: center;
}

.jj-id-cta-block h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.jj-id-cta-block .cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

/* WA FLOATING BUTTON — moved to animation section below */

/* =============================================
   PAGE CONTENT /* =============================================
   PAGE CONTENT (Sub pages)
   ============================================= */
.jj-id-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}

.jj-id-page-content h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.jj-id-page-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 12px;
}

.jj-id-page-content p {
  margin-bottom: 16px;
  line-height: 1.9;
}

/* =============================================
   FOOTER
   ============================================= */
.jj-id-footer {
  background: var(--footer-bg, #0072b1);
  color: rgba(255,255,255,.8);
  padding: 40px 16px;
}

.jj-id-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.jj-id-footer .footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.jj-id-footer .footer-brand span {
  color: #ffffff;
}

.jj-id-footer .footer-lpk {
  font-size: 13px;
  margin-bottom: 4px;
}

.jj-id-footer .footer-reg {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 16px;
}

.jj-id-footer .footer-loc {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.jj-id-footer-sns {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.jj-id-footer-sns a {
  color: rgba(255,255,255,.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
}

.jj-id-footer-sns a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  text-decoration: none;
}

.jj-id-footer-sns svg {
  width: 18px;
  height: 18px;
}

.jj-id-footer .footer-copy {
  font-size: 12px;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 15px;
  margin-top: 4px;
}

/* =============================================
   BLOG INDEX
   ============================================= */
.jj-id-blog-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}

.jj-id-blog-list h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

.jj-id-post-card {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.jj-id-post-card .post-date {
  font-size: 12px;
  color: var(--subtext);
  margin-bottom: 6px;
}

.jj-id-post-card .post-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.jj-id-post-card .post-title a {
  color: var(--text);
}

.jj-id-post-card .post-title a:hover {
  color: var(--primary);
}

.jj-id-post-card .post-excerpt {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.7;
}

/* =============================================
   SINGLE POST
   ============================================= */
.jj-id-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}

.jj-id-single h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.jj-id-single .post-meta {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.jj-id-single .entry-content p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.jj-id-single .entry-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }



/* =============================================
   CATEGORY LABEL BADGE (blog post cards)
   ============================================= */
.jj-id-post-cat {
  display: inline-block;
  background: #E6F1FB;
  color: #0072b1;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  line-height: 1.4;
  text-decoration: none;
}
.jj-id-post-cat:hover {
  background: #0072b1;
  color: #fff;
  text-decoration: none;
}

/* =============================================
   ARTICLE CARDS GRID (TOPページ recent posts)
   ============================================= */
.jj-id-article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .jj-id-article-grid {
    grid-template-columns: 1fr;
  }
}
.jj-id-article-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.jj-id-article-card .article-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  flex: 1;
}
.jj-id-article-card .article-title a {
  color: var(--text);
}
.jj-id-article-card .article-title a:hover {
  color: var(--primary);
  text-decoration: none;
}
.jj-id-article-card .article-excerpt {
  font-size: 13px;
  color: var(--subtext);
  line-height: 1.6;
  margin-bottom: 12px;
}
.jj-id-article-card .article-date {
  font-size: 12px;
  color: var(--subtext);
}

/* =============================================
   BREADCRUMB
   ============================================= */
.jj-id-breadcrumb {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 24px;
  line-height: 1.5;
}

.jj-id-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.jj-id-breadcrumb a:hover {
  text-decoration: underline;
}

.jj-id-breadcrumb span[aria-hidden] {
  margin: 0 6px;
  color: var(--border);
}

.jj-id-breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

/* =============================================
   ARTICLE CTA (after blog post)
   ============================================= */
.jj-id-article-cta {
  margin-top: 48px;
  padding: 32px 24px;
  background: var(--bg);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
}

.jj-id-article-cta p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
}

.jj-id-article-cta .jj-id-cta-wa {
  font-size: 15px;
  padding: 14px 28px;
}

.jj-id-article-cta .wa-icon {
  width: 20px;
  height: 20px;
}

/* =============================================
   ALUMNI AVATAR INITIALS
   ============================================= */
.jj-id-alumni-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

/* =============================================
   WA FLOAT PULSE ANIMATION
   ============================================= */
.jj-id-wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: box-shadow 0.3s;
  text-decoration: none;
}

.jj-id-wa-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: waPulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* =============================================
   SECTION FADE-IN ON SCROLL
   ============================================= */
.jj-id-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.jj-id-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Also apply to CTA block and stats wrap */
.jj-id-cta-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.jj-id-cta-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   REDUCED MOTION: disable all custom animations
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .jj-id-wa-float::before {
    animation: none;
  }
  .jj-id-wa-float {
    animation: none;
  }
  .jj-id-section,
  .jj-id-cta-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =============================================
   v1.6.0 — NEW TOP PAGE SECTIONS (append only)
   ============================================= */

.jj-id-dream-card {
  border: 0.5px solid #EEF1F3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.jj-id-dream-card__photo {
  height: 140px;
  background: linear-gradient(135deg, #1a5276, #2980b9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.jj-id-dream-card__body {
  padding: 12px 14px;
}
.jj-id-dream-card__achievement {
  font-size: 14px;
  font-weight: 500;
  color: #1C2B36;
  margin-bottom: 4px;
}
.jj-id-dream-card__quote {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  font-style: italic;
}
.jj-id-dream-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.jj-id-dream-card__meta-name {
  font-size: 13px;
  font-weight: 500;
  color: #1C2B36;
}
.jj-id-dream-card__meta-info {
  font-size: 11px;
  color: #718096;
}
.jj-id-dream-link {
  text-align: center;
  margin-top: 8px;
}
.jj-id-dream-link a {
  font-size: 13px;
  color: #0072b1;
  font-weight: 500;
  text-decoration: none;
}
.jj-id-alumni-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, #002a4a, #0072b1, #00B4D8, #2EC4A0, #0072b1, #002a4a);
  padding: 2.5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jj-id-alumni-avatar__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #0072b1;
}
.jj-id-why-section {
  background: #f0f8ff;
  border-radius: 12px;
  padding: 16px;
}
.jj-id-why-section h2 {
  font-size: 16px;
  font-weight: 500;
  color: #1C2B36;
  margin: 0 0 12px;
}
.jj-id-why-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.jj-id-why-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  background: #0072b1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.jj-id-why-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1C2B36;
  margin-bottom: 2px;
}
.jj-id-why-text span {
  font-size: 12px;
  color: #6B7280;
}
.jj-id-warning-section {
  background: #FFF7ED;
  border-radius: 0 12px 12px 0;
  padding: 14px;
  border-left: 3px solid #FF6B35;
}
.jj-id-warning-section h3 {
  font-size: 14px;
  font-weight: 500;
  color: #7C2D12;
  margin: 0 0 4px;
}
.jj-id-warning-section p {
  font-size: 12px;
  color: #9A3412;
  line-height: 1.5;
  margin: 0 0 8px;
}
.jj-id-step-line {
  width: 1px;
  height: 12px;
  background: #ddd;
  margin-left: 20px;
}
.jj-id-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.jj-id-step-circle--blue { background: #0072b1; }
.jj-id-step-circle--green { background: #10B981; }

/* Section fade-in animation */
.jj-id-section,
.jj-id-cta-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.jj-id-section.is-visible,
.jj-id-cta-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .jj-id-section,
  .jj-id-cta-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
   v1.6.0 fix — missing classes
   ============================================= */
.hero-sub2 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.jj-id-dream-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 640px) { }

.jj-id-dream-card__profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.jj-id-dream-card__title {
  font-size: 14px;
  font-weight: 500;
  color: #1C2B36;
  margin-bottom: 4px;
  line-height: 1.3;
}

.jj-id-why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 640px) { }
/* =============================================
   v1.7.0 — DREAM CARDS REDESIGN
   ============================================= */
.jj-id-dream-card--male {
  background: linear-gradient(135deg, #0072b1, #00B4D8, #2EC4A0);
}
.jj-id-dream-card--male-alt {
  background: linear-gradient(135deg, #00B4D8, #2EC4A0, #0072b1);
}
.jj-id-dream-card--male-alt2 {
  background: linear-gradient(135deg, #2EC4A0, #0072b1, #00B4D8);
}
.jj-id-dream-card--female {
  background: linear-gradient(135deg, #00B4D8, #2EC4A0, #0072b1);
}
.jj-id-dream-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.5) 100%);
  border-radius: 16px;
}
.jj-id-dream-card__content {
  position: relative;
  z-index: 1;
}
.jj-id-dream-avatar--male {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, #002a4a, #0072b1, #00B4D8, #7DD3FC, #0072b1, #002a4a);
  padding: 2.5px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.jj-id-dream-avatar--female {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, #993556, #D4537E, #ED93B1, #F4C0D1, #D4537E, #993556);
  padding: 2.5px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.jj-id-dream-avatar__inner--male {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: #0072b1;
}
.jj-id-dream-avatar__inner--female {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: #993556;
}
.jj-id-dream-card__name {
  font-size: 14px; font-weight: 500; color: #fff;
}
.jj-id-dream-card__period {
  font-size: 11px; color: rgba(255,255,255,0.7);
}

/* v1.7.0 — DREAM CARD LAYOUT OVERRIDE */
.jj-id-dream-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  margin-bottom: 12px;
}

/* v1.7.0 — WHY SECTION OVERRIDE */
.jj-id-why-section {
  background: #f0f8ff; border-radius: 12px; padding: 16px;
}
.jj-id-why-section h2 {
  font-size: 16px; font-weight: 500; color: #1C2B36; margin: 0 0 12px;
}
.jj-id-why-list {
  display: flex; flex-direction: column; gap: 0;
}
.jj-id-why-item {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px;
}
.jj-id-why-icon {
  width: 20px; height: 20px; min-width: 20px; flex-shrink: 0;
  background: #0072b1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; line-height: 1;
}
.jj-id-why-text strong {
  display: block; font-size: 14px; font-weight: 500; color: #1C2B36; margin-bottom: 2px;
}
.jj-id-why-text span {
  font-size: 12px; color: #6B7280;
}
.jj-id-why-link {
  text-align: center; margin-top: 4px;
}
.jj-id-why-link a {
  font-size: 12px; color: #0072b1; font-weight: 500; text-decoration: none;
}

/* v1.7.0 — WARNING SECTION */
.jj-id-warning-section {
  background: #FFF7ED; border-radius: 0 12px 12px 0; padding: 14px; border-left: 3px solid #FF6B35;
}
.jj-id-warning-section h3 {
  font-size: 14px; font-weight: 500; color: #7C2D12; margin: 0 0 4px;
}
.jj-id-warning-section p {
  font-size: 12px; color: #9A3412; line-height: 1.5; margin: 0 0 8px;
}
.jj-id-warning-section a {
  font-size: 12px; color: #FF6B35; font-weight: 500; text-decoration: none;
}

/* v1.7.0 — STEP ITEMS */
.jj-id-step-item {
  display: flex; gap: 12px; padding: 10px 0;
}
.jj-id-step-line {
  width: 1px; height: 12px; background: #ddd; margin-left: 20px;
}
.jj-id-step-circle {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 500; flex-shrink: 0;
}
.jj-id-step-circle--blue { background: #0072b1; }
.jj-id-step-circle--green { background: #10B981; }
.jj-id-step-title {
  font-size: 13px; font-weight: 500; color: #1C2B36;
}
.jj-id-step-desc {
  font-size: 12px; color: #718096;
}

/* v1.7.0 — HERO SUB2 OVERRIDE */
.hero-sub2 {
  font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px;
}

/* v1.7.0 — Section fade-in (override) */
.jj-id-section, .jj-id-cta-block {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.jj-id-section.is-visible, .jj-id-cta-block.is-visible {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .jj-id-section, .jj-id-cta-block {
    opacity: 1; transform: none; transition: none;
  }
}
/* =============================================
   v1.7.1 — Dream Card color fix + PC 3-column
   ============================================= */
.jj-id-dream-card--male {
  background: linear-gradient(135deg, #38BDF8, #7DD3FC, #BAE6FD) !important;
}
.jj-id-dream-card--male-alt {
  background: linear-gradient(135deg, #7DD3FC, #BAE6FD, #38BDF8) !important;
}
.jj-id-dream-card--male-alt2 {
  background: linear-gradient(135deg, #BAE6FD, #38BDF8, #7DD3FC) !important;
}
.jj-id-dream-card--female {
  background: linear-gradient(135deg, #7DD3FC, #BAE6FD, #38BDF8) !important;
}
.jj-id-dream-card__overlay {
  background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.55) 100%) !important;
}

/* PC 3-column layout */
@media (min-width: 768px) { }

/* =============================================
   v1.7.2 — Dream Card final color
   ============================================= */
.jj-id-dream-card--male {
  background: linear-gradient(135deg, #004e7c, #0072b1, #0090d9) !important;
}
.jj-id-dream-card--male-alt {
  background: linear-gradient(135deg, #0072b1, #0090d9, #004e7c) !important;
}
.jj-id-dream-card--male-alt2 {
  background: linear-gradient(135deg, #005a8c, #0080c6, #004e7c) !important;
}
.jj-id-dream-card--female {
  background: linear-gradient(135deg, #0072b1, #004e7c, #0090d9) !important;
}
.jj-id-dream-card__overlay {
  background: linear-gradient(to bottom, transparent 15%, rgba(0,0,0,0.6) 100%) !important;
}

/* =============================================
   v1.8.0 — Dream Card clean white design
   ============================================= */
.jj-id-dream-card {
  background: #fff !important;
  border-radius: 12px !important;
  border: 0.5px solid #E5E7EB !important;
  padding: 16px !important;
  display: flex !important;
  gap: 12px !important;
  align-items: flex-start !important;
  flex-direction: row !important;
  min-height: auto !important;
  position: relative !important;
  overflow: visible !important;
  margin-bottom: 12px;
}
.jj-id-dream-card--male {
  border-left: 4px solid #0072b1 !important;
  background: #fff !important;
  border-radius: 0 12px 12px 0 !important;
}
.jj-id-dream-card--male-alt,
.jj-id-dream-card--male-alt2 {
  border-left: 4px solid #0072b1 !important;
  background: #fff !important;
  border-radius: 0 12px 12px 0 !important;
}
.jj-id-dream-card--female {
  border-left: 4px solid #D4537E !important;
  background: #fff !important;
  border-radius: 0 12px 12px 0 !important;
}
.jj-id-dream-card__overlay {
  display: none !important;
}
.jj-id-dream-card__content {
  flex: 1;
  position: static !important;
}
.jj-id-dream-card__meta {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  margin-bottom: 4px !important;
  gap: 0 !important;
}
.jj-id-dream-card__name {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #1C2B36 !important;
}
.jj-id-dream-card__period {
  font-size: 11px !important;
  color: #9CA3AF !important;
}
.jj-id-dream-card__achievement {
  font-size: 14px !important;
  font-weight: 800 !important;
  margin-bottom: 4px !important;
}
.jj-id-dream-card--male .jj-id-dream-card__achievement,
.jj-id-dream-card--male-alt .jj-id-dream-card__achievement,
.jj-id-dream-card--male-alt2 .jj-id-dream-card__achievement {
  color: #0072b1 !important;
}
.jj-id-dream-card--female .jj-id-dream-card__achievement {
  color: #D4537E !important;
}
.jj-id-dream-card__quote {
  font-size: 12px !important;
  color: #6B7280 !important;
  line-height: 1.5 !important;
  font-style: italic !important;
}
.jj-id-dream-avatar--male,
.jj-id-dream-avatar--female {
  flex-shrink: 0 !important;
}

@media (min-width: 768px) { }

/* =============================================
   v1.8.1 — Section heading center + underline
   ============================================= */
.jj-id-section-title {
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #1C2B36 !important;
  margin-bottom: 6px !important;
  border-left: none !important;
  padding-left: 0 !important;
}
.jj-id-section-title::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 3px !important;
  background: #0072b1 !important;
  border-radius: 2px !important;
  margin: 8px auto 0 !important;
}
.jj-id-section-sub {
  text-align: center !important;
  font-size: 13px !important;
  color: #9CA3AF !important;
  margin-bottom: 20px !important;
}

/* =============================================
   v1.8.2 — CTA gradient card
   ============================================= */
.jj-id-cta-block {
  background: transparent !important;
}
.jj-id-cta-card {
  background: linear-gradient(135deg, #004e7c, #0072b1, #0090d9);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.jj-id-cta-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.jj-id-cta-heading {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 0 6px !important;
}
.jj-id-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
}
.jj-id-cta-card .jj-id-cta-wa {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #25D366 !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  margin-bottom: 16px !important;
  animation: none !important;
  background-size: auto !important;
  min-width: auto !important;
}
.jj-id-cta-card .jj-id-cta-wa:hover {
  background: #20bd5a !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.4) !important;
}
.jj-id-cta-divider {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.jj-id-cta-sns {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.jj-id-cta-sns-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.jj-id-cta-sns-icon:hover {
  background: rgba(255,255,255,0.25);
}

/* =============================================
   v1.8.3 — WA float icon color fix
   ============================================= */
.jj-id-wa-float {
  color: #fff !important;
}
.jj-id-wa-float svg {
  width: 28px !important;
  height: 28px !important;
  fill: #fff !important;
}

/* =============================================
   v1.8.4 — Dream Card avatar size up + PC horizontal layout
   ============================================= */
.jj-id-dream-avatar__inner--male,
.jj-id-dream-avatar__inner--female {
  width: 64px !important;
  height: 64px !important;
  font-size: 20px !important;
}
@media (min-width: 768px) { }

/* =============================================
   v1.8.5 — Hero image
   ============================================= */
.jj-id-hero__img {
  display: block !important;
  width: 100% !important;
  max-width: 480px !important;
  height: auto !important;
  border-radius: 16px !important;
  margin: 0 auto 20px !important;
}

/* ==============================================
   v1.8.6 - Footer offices / Alumni cards / SNS global
   ============================================== */

/* Footer: オフィス住所 */
.footer-offices{display:flex;flex-direction:column;gap:12px;margin:16px 0;text-align:left;max-width:480px;margin-left:auto;margin-right:auto}
.footer-office__label{font-size:12px;font-weight:700;color:#a0c4e8;margin-bottom:2px}
.footer-office__addr{font-size:12px;color:#cce0f5;line-height:1.6}
@media(min-width:768px){ }

/* Footer: ブランド名 .com */
.footer-brand span{color:#90caf9}

/* Alumni page: 大カード（1カラム） */
.jj-alumni-list{display:flex;flex-direction:column;gap:20px;max-width:680px;margin:0 auto}
.jj-alumni-card{display:flex;align-items:flex-start;gap:20px;background:#fff;border-radius:16px;padding:24px;box-shadow:0 2px 12px rgba(0,114,177,.08);border:1px solid #e8f0fe}
.jj-alumni-card__avatar{flex-shrink:0;width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:800;color:#fff}
.jj-alumni-card__avatar--male{background:linear-gradient(135deg,#0072b1,#005a8c)}
.jj-alumni-card__avatar--female{background:linear-gradient(135deg,#e91e8c,#c2185b)}
.jj-alumni-card__name{font-size:18px;font-weight:700;color:#1C2B36;margin-bottom:4px}
.jj-alumni-card__meta{font-size:13px;color:#718096;margin-bottom:10px}
.jj-alumni-card__quote{font-size:15px;color:#2d3748;line-height:1.7;margin:0;font-style:italic}
@media(min-width:768px){ }



/* =============================================
   SNS Section — subpage spacing (v1.8.6)
   ============================================= */
.jj-id-sns-section {
    padding: 48px 16px;
    background: #F8FAFC;
}
@media (min-width: 768px) { }


/* =============================================
   Footer spacing fixes (2026-04-11)
   ============================================= */
.footer-offices {
    gap: 20px;
}
@media (min-width: 768px) { }
.jj-id-footer-sns {
    margin-top: 28px;
}
.footer-copy--sub {
    margin-top: 2px;
    font-size: 12px;
    opacity: 0.7;
}


/* =============================================
   SNS STORIES BAR (header直下)
   ============================================= */
.jj-id-sns-stories {
  background: #ffffff;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.jj-id-story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.jj-id-story-item:hover { text-decoration: none; }
.jj-id-story-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.jj-id-story-item:hover .jj-id-story-ring {
  transform: scale(1.08);
}
.story-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.story-tiktok {
  background: linear-gradient(135deg, #25F4EE, #000000, #FE2C55);
}
.story-yt {
  background: #FF0000;
}
.story-maps {
  background: linear-gradient(135deg, #34A853, #4285F4, #EA4335);
}
.jj-id-story-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jj-id-story-label {
  font-size: 10px;
  color: #666666;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) { }

/* =============================================
   NAV FIX: PC表示でモバイルナビ・サブメニュー非表示確保
   ============================================= */
@media (min-width: 768px) { }


/* =============================================
   v1.8.9 — Sticky stories + WA story + float WA hide
   ============================================= */

/* Stories bar: separate sticky below header */
.jj-id-sns-stories {
  position: sticky;
  top: 60px;
  z-index: 999;
}

/* 5-icon layout: smaller for mobile fit */
.jj-id-sns-stories {
  gap: 12px;
  padding: 10px 12px;
}
.jj-id-story-ring {
  width: 48px;
  height: 48px;
}
.jj-id-story-label {
  font-size: 9px;
}
@media (min-width: 768px) { }

/* WhatsApp story ring */
.story-wa {
  background: #25D366;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.story-wa-label {
  color: #25D366 !important;
  font-weight: 600;
}

/* Hide floating WA button (replaced by stories bar WA) */
.jj-id-wa-float {
  display: none !important;
}


/* =============================================
   v1.9.0 — Logo favicon cube in header
   ============================================= */
.jj-id-logo {
  display: flex !important;
  align-items: center !important;
}
.jj-id-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  margin-right: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 768px) { }


/* =============================================
   v1.9.1 — Google Maps ring: official 4-color gradient
   ============================================= */
.story-maps {
  background: linear-gradient(135deg, #34A853 0%, #4285F4 33%, #FBBC04 66%, #EA4335 100%) !important;
}


/* =============================================
   v1.9.2 — Google Maps ring: conic-gradient 4-color
   ============================================= */
.story-maps {
  background: conic-gradient(from 180deg, #4285F4, #34A853, #FBBC04, #EA4335, #4285F4) !important;
}


/* =============================================
   v1.9.3 — Footer navigation links
   ============================================= */
.jj-id-footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.jj-id-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.jj-id-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jj-id-footer-col ul li {
  margin-bottom: 8px;
}
.jj-id-footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.jj-id-footer-col ul a:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 480px) {
  .jj-id-footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
}

/* =============================================
   LANDING PAGE STYLES (v1.9.4)
   ============================================= */

/* Hero for subpages (post_content) */
.jj-id-hero--page {
  background: linear-gradient(135deg, #0072b1 0%, #005a8e 100%);
  padding: 64px 16px 80px;
  text-align: center;
  color: #fff;
  position: relative;
}
.jj-id-hero--page h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  max-width: 700px;
  margin-bottom: 16px;
}
.jj-id-hero--page .hero-sub {
  font-size: 16px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .jj-id-hero--page { padding: 48px 16px 64px; }
  .jj-id-hero--page h1 { font-size: 22px; }
  .jj-id-hero--page .hero-sub { font-size: 15px; }
}

/* Stats wrap for subpages */
.jj-id-stats-wrap--page {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
  margin: -40px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .jj-id-stats-wrap--page { gap: 8px; }
}

/* Feature grid */
.jj-id-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 600px) {
  .jj-id-feature-grid { grid-template-columns: 1fr; gap: 16px; }
}

.jj-id-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.jj-id-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.jj-id-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.jj-id-feature-icon svg {
  width: 48px;
  height: 48px;
}
.jj-id-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1C2B36;
  margin: 0 0 8px;
}
.jj-id-feature-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

/* FAQ list */
.jj-id-faq-list {
  max-width: 700px;
  margin: 32px auto 0;
}
.jj-id-faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.jj-id-faq-q {
  font-size: 17px;
  font-weight: 700;
  color: #0072b1;
  margin: 0 0 8px;
}
.jj-id-faq-a {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.8;
  margin: 0;
}
.jj-id-faq-a a {
  color: #0072b1;
  text-decoration: underline;
}

/* Mid-page CTA */
.jj-id-cta-block--mid {
  padding: 40px 16px;
}

/* Override page.php wrapper when landing page sections break out */
/* DISABLED: .jj-id-page-content .entry-content > .jj-id-hero--page, */
/* DISABLED: .jj-id-page-content .entry-content > .jj-id-stats-wrap--page, */
/* DISABLED: .jj-id-page-content .entry-content > .jj-id-section, */
/* DISABLED: .jj-id-page-content .entry-content > .jj-id-cta-block { */
/* DISABLED:   margin-left: calc(-50vw + 50%); */
/* DISABLED:   margin-right: calc(-50vw + 50%); */
/* DISABLED:   width: 100vw; */
/* DISABLED:   max-width: 100vw; */
/* DISABLED: } */
/* =============================================
   LANDING PAGE STYLES — BIAYA & CARA MEMILIH (v1.9.5)
   ============================================= */

/* Biaya list items */
.jj-id-biaya-list {
  max-width: 700px;
  margin: 0 auto;
}
.jj-id-biaya-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.jj-id-biaya-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.jj-id-biaya-icon svg {
  width: 40px;
  height: 40px;
}
.jj-id-biaya-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1C2B36;
  margin: 0 0 4px;
}
.jj-id-biaya-item p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}
.jj-id-biaya-note {
  max-width: 700px;
  margin: 24px auto 0;
  background: #EFF6FF;
  border-left: 4px solid #0072b1;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: #1C2B36;
  line-height: 1.7;
}

/* Dana Talangan note */
.jj-id-dana-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #F0FDF4;
  border-left: 4px solid #10B981;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
}

/* Warning list (Cara Memilih LPK) */
.jj-id-warning-list {
  max-width: 700px;
  margin: 32px auto 0;
}
.jj-id-warning-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FFF7ED;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-left: 4px solid #F59E0B;
}
.jj-id-warning-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.jj-id-warning-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #92400E;
  margin: 0 0 4px;
}
.jj-id-warning-item p {
  font-size: 15px;
  color: #78350F;
  line-height: 1.7;
  margin: 0;
}
/* =============================================
   COMPANY INFO, COMPARE TABLE, KEN OPINIONS (v1.9.6)
   ============================================= */

/* Company info table */
.jj-id-company-info {
  max-width: 700px;
  margin: 32px auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.jj-id-company-row {
  display: flex;
  padding: 14px 24px;
  border-bottom: 1px solid #F3F4F6;
}
.jj-id-company-row:last-child { border-bottom: none; }
.jj-id-company-label {
  flex: 0 0 160px;
  font-weight: 700;
  color: #0072b1;
  font-size: 14px;
}
.jj-id-company-value {
  flex: 1;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .jj-id-company-row { flex-direction: column; gap: 4px; padding: 12px 16px; }
  .jj-id-company-label { flex: none; }
}

/* Comparison table */
.jj-id-compare-table-wrap {
  max-width: 750px;
  margin: 32px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.jj-id-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  font-size: 15px;
}
.jj-id-compare-table th {
  background: #0072b1;
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  text-align: left;
  font-size: 15px;
}
.jj-id-compare-table th:first-child { background: #005a8e; }
.jj-id-compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #F3F4F6;
  color: #374151;
  vertical-align: top;
  line-height: 1.6;
}
.jj-id-compare-table td:first-child {
  background: #F8FAFC;
  font-weight: 600;
  color: #1C2B36;
  white-space: nowrap;
}
.jj-id-compare-table small {
  display: block;
  color: #9CA3AF;
  font-size: 13px;
}
.jj-id-compare-table tr:last-child td { border-bottom: none; }

/* Ken opinion cards */
.jj-id-ken-opinions {
  max-width: 700px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jj-id-ken-card {
  background: #EFF6FF;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #0072b1;
}
.jj-id-ken-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1C2B36;
  margin: 0 0 8px;
}
.jj-id-ken-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin: 0;
}
.jj-id-ken-card--highlight {
  background: linear-gradient(135deg, #0072b1 0%, #005a8e 100%);
  border-left-color: #10B981;
}
.jj-id-ken-card--highlight h3 { color: #fff; }
.jj-id-ken-card--highlight p { color: rgba(255,255,255,.9); }

/* ===== Mobile Logo in Slide Menu ===== */
.jj-id-mobile-logo {
  text-align: center;
  padding: 24px 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 8px;
}
.jj-id-mobile-logo-img {
  max-width: 160px;
  height: auto;
  display: inline-block;
}

/* ===== WhatsApp Green for Hubungi CTA ===== */
.jj-id-header__cta,
a.jj-id-header__cta {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}
.jj-id-header__cta:hover,
a.jj-id-header__cta:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
}
.jj-id-mobile-menu .jj-id-header__cta {
  background: #25D366 !important;
  color: #ffffff !important;
}
.jj-id-mobile-menu .jj-id-header__cta:hover {
  background: #1da851 !important;
}


/* ===== Fix WA CTA icon alignment (wpautop br removal) ===== */
.jj-id-cta-wa br {
  display: none;
}
.jj-id-cta-wa svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.entry-content .jj-id-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


/* ===== Fix: hero subtext / stats-wrap overlap ===== */
.jj-id-hero--page .hero-sub {
  padding-bottom: 16px;
}

/* =============================================
   v1.9.21 — SIM Card page styles (from template)
   ============================================= */
.jjm-hero{background:linear-gradient(135deg,#0072b1 0%,#005a8e 100%);color:#fff;padding:48px 16px 0;position:relative;overflow:hidden;text-align:left}
.jjm-hero-inner{max-width:700px;margin:0 auto;position:relative;min-height:220px;padding-bottom:20px}
.jjm-hero h1{font-size:24px;font-weight:800;line-height:1.3;margin:0 0 8px}
.jjm-hero .hero-sub{font-size:16px;opacity:.9;margin:0 0 20px}
.jjm-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:6px 14px;font-size:13px;font-weight:700;margin-bottom:16px;backdrop-filter:blur(4px)}
.jjm-badge-dot{width:8px;height:8px;border-radius:50%;background:#10B981}
.jjm-hero-cutout{position:absolute;right:-15px;bottom:auto;top:60px;width:240px;pointer-events:none}
@media(max-width:600px){.jjm-hero-cutout{width:160px;right:-5px}.jjm-hero h1{font-size:20px;padding-right:140px}}
.jjm-hero+.jj-id-stats-wrap--page{margin-top:-20px}
.jjm-grid6{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media(max-width:600px){.jjm-grid6{grid-template-columns:repeat(2,1fr)}}
.jjm-feat{background:#fff;border-radius:12px;padding:16px;text-align:center;box-shadow:0 1px 4px rgba(0,0,0,.06)}
.jjm-feat-icon{font-size:28px;margin-bottom:6px}
.jjm-feat-icon svg{width:32px;height:32px}
.jjm-need-icon svg{width:22px;height:22px}
.jjm-feat-title{font-size:14px;font-weight:700;color:#1C2B36}
.jjm-feat-desc{font-size:12px;color:#6B7280;margin-top:2px}
.jjm-rec-banner{text-align:center;padding:20px 16px;font-size:15px;line-height:1.7;color:#1C2B36}
.jjm-rec-wrap{max-width:700px;margin:0 auto;padding:0 16px}
.jjm-rec-card{display:flex;align-items:center;gap:0;border-radius:16px;padding:0;margin-bottom:16px;overflow:hidden;position:relative}
.jjm-rec-card--blue{border:2px solid #0072b1}
.jjm-rec-card--orange{border:2px solid #FF6B35}
.jjm-rec-card-photo{flex-shrink:0;width:120px}
.jjm-rec-card-photo img{width:100%;height:auto;display:block}
.jjm-rec-card-content{flex:1;text-align:center;padding:20px 16px}
.jjm-rec-card-badge{display:inline-block;font-size:12px;font-weight:700;padding:4px 12px;border-radius:999px;margin-bottom:8px}
.jjm-rec-card-badge--blue{background:#E6F1FB;color:#0072b1}
.jjm-rec-card-badge--orange{background:#FFF0E8;color:#FF6B35}
.jjm-rec-card-name{font-size:15px;font-weight:700;color:#1C2B36}
.jjm-rec-card-gb{font-size:32px;font-weight:800;color:#0072b1}
.jjm-rec-card-price{font-size:16px;font-weight:700;color:#1C2B36;margin-top:4px}
.jjm-plan{border-radius:12px;padding:20px;text-align:center;background:#fff}
.jjm-plan--blue{border:2px solid #0072b1}
.jjm-plan--orange{border:2px solid #FF6B35}
.jjm-plan-badge{display:inline-block;font-size:11px;font-weight:700;padding:3px 10px;border-radius:999px;margin-bottom:8px}
.jjm-plan-badge--blue{background:#E6F1FB;color:#0072b1}
.jjm-plan-badge--orange{background:#FFF0E8;color:#FF6B35}
.jjm-plan-name{font-size:14px;font-weight:700;color:#1C2B36}
.jjm-plan-gb{font-size:28px;font-weight:800;color:#0072b1}
.jjm-plan-price{font-size:15px;font-weight:700;color:#1C2B36;margin-top:4px}
.jjm-notice{max-width:700px;margin:20px auto;padding:14px 20px;background:#E6F1FB;border-left:4px solid #0072b1;border-radius:0 8px 8px 0;font-size:14px;color:#1C2B36}
.jjm-need-wrap{position:relative;overflow:hidden}
.jjm-need-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media(max-width:600px){.jjm-need-grid{padding-right:0!important}}
.jjm-need-item{display:flex;align-items:center;gap:8px;font-size:14px;color:#1C2B36;background:#F8FAFC;border-radius:8px;padding:10px 12px}
.jjm-need-icon{font-size:20px;flex-shrink:0}
.jjm-allplans{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media(max-width:600px){.jjm-allplans{grid-template-columns:repeat(2,1fr)}}
.jjm-allplan{border:1px solid #E2E8F0;border-radius:12px;padding:16px;text-align:center;background:#fff}
.jjm-allplan--blue{border:2px solid #0072b1}
.jjm-allplan--orange{border:2px solid #FF6B35}
.jjm-cost-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:600px){.jjm-cost-grid{grid-template-columns:1fr}}
.jjm-cost-card{background:#F8FAFC;border-radius:12px;padding:20px}
.jjm-cost-card h4{margin:0 0 8px;font-size:15px;color:#0072b1}
.jjm-cost-card p{margin:4px 0;font-size:14px;color:#1C2B36}
.jjm-comp-header{background:#0072b1;color:#fff;padding:12px 16px;border-radius:12px 12px 0 0;font-weight:700;font-size:15px;text-align:center}
.jjm-comp-table{width:100%;border-collapse:collapse;font-size:13px}
.jjm-comp-table th,.jjm-comp-table td{padding:10px 8px;text-align:center;border-bottom:1px solid #E2E8F0}
.jjm-comp-table th{background:#F8FAFC;font-weight:700;color:#1C2B36}
.jjm-comp-table td:first-child{text-align:left;font-weight:600}
.jjm-check{color:#10B981;font-weight:700}
.jjm-cross{color:#EF4444;font-weight:700}

.jjm-terms{max-width:700px;margin:0 auto;padding:16px;font-size:11px;color:#999;line-height:1.6}

/* =============================================
   v1.9.22 — SIM Card page enhancements
   ============================================= */
html{scroll-behavior:smooth}

/* Hero bright variant */
.jjm-hero--bright{background:linear-gradient(135deg,#0084cc 0%,#00a1e4 50%,#0072b1 100%)}
.jjm-hero--bright::after{content:'';position:absolute;top:0;right:0;width:50%;height:100%;background:linear-gradient(135deg,transparent 40%,rgba(255,107,53,.12) 100%);pointer-events:none}

/* Micro copy */
.jjm-micro-copy{text-align:center;padding:16px 16px 0;font-size:15px;font-weight:600;color:#0072b1;letter-spacing:.3px}

/* See all plans button */
.jjm-see-all-wrap{text-align:center;padding:8px 16px 16px}
.jjm-see-all-btn{display:inline-block;padding:12px 32px;border:2px solid #0072b1;border-radius:999px;color:#0072b1;font-size:15px;font-weight:700;text-decoration:none;background:#fff;transition:all .2s ease}
.jjm-see-all-btn:hover{background:#0072b1;color:#fff}

/* Share section */
.jjm-share-section{padding:32px 16px;background:#F0FFF4;border-top:1px solid #C6F6D5;border-bottom:1px solid #C6F6D5}
.jjm-share-heading{font-size:18px;font-weight:700;color:#1C2B36;margin:0 0 4px}
.jjm-share-sub{font-size:14px;color:#6B7280;margin:0 0 16px}
.jjm-share-wa{display:inline-flex;align-items:center;gap:8px;background:#25D366;color:#fff;padding:14px 28px;border-radius:999px;font-weight:700;font-size:16px;text-decoration:none;transition:box-shadow .2s ease}
.jjm-share-wa:hover{box-shadow:0 4px 12px rgba(37,211,102,.4)}
/* v1.9.23 — scroll offset for fixed header + SNS bar */
#semua-paket{scroll-margin-top:120px}

/* v1.9.24 — SIM stat cards: equal sizing */
.jjm-hero+.jj-id-stats-wrap--page{display:flex;justify-content:center;gap:12px;padding:16px}
.jjm-hero+.jj-id-stats-wrap--page .jj-id-stat-card{flex:1;max-width:33.33%;min-height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:14px 8px}
.jjm-hero+.jj-id-stats-wrap--page .stat-icon svg{width:28px;height:28px}
.jjm-hero+.jj-id-stats-wrap--page .stat-num{font-size:16px;font-weight:800;white-space:nowrap}
.jjm-hero+.jj-id-stats-wrap--page .stat-label{font-size:11px;color:#64748b;white-space:nowrap}

/* v1.9.25 — Indonesian text line-breaking optimization */
h1,h2,h3,h4,.jj-id-section-title,.jjm-hero h1,.stat-num{text-wrap:balance}
p,li,.jj-id-faq-a,.stat-label,.hero-sub{text-wrap:pretty}
body{overflow-wrap:break-word;word-break:normal}
p,li{hyphens:auto;-webkit-hyphens:auto}

/* ── v1.9.26 – SIM card page section band backgrounds ── */
.jjm-band{padding:48px 0}
.jjm-band--white{background-color:#fff}
.jjm-band--blue{background-color:#f0f7fc}
.jjm-band--grey{background-color:#f5f6f8}
.jjm-band--cta{text-align:center;padding:32px 16px}
.jj-id-section.jjm-band--blue{background:#f0f7fc}
.jj-id-section.jjm-band--white{background:#fff}
.jj-id-section.jjm-band--grey{background:#f5f6f8}
.jjm-share-section.jjm-band--grey{background:#f5f6f8}
.jj-id-cta-block.jjm-band--blue{background:#f0f7fc}
@media(max-width:768px){.jjm-band{padding:36px 0}}

/* ── v1.9.27 – Fix stat cards equal sizing inside band wrapper ── */
.jjm-band .jj-id-stats-wrap--page{display:flex;justify-content:center;gap:12px;padding:16px}
.jjm-band .jj-id-stats-wrap--page .jj-id-stat-card{flex:1;max-width:33.33%;min-height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:14px 8px}
.jjm-band .jj-id-stats-wrap--page .stat-icon svg{width:28px;height:28px}
.jjm-band .jj-id-stats-wrap--page .stat-num{font-size:16px;font-weight:800;white-space:nowrap}
.jjm-band .jj-id-stats-wrap--page .stat-label{font-size:11px;color:#64748b;white-space:nowrap}

/* ── v1.9.28 – Enlarge hero cutout photo ── */
.jjm-hero-cutout{width:280px;top:20px}
@media(max-width:600px){.jjm-hero-cutout{width:190px;top:25px}}

/* ── v1.9.29 – Hero cutout: larger + reach top edge via negative margin ── */
.jjm-hero-cutout{width:280px;top:0;margin-top:-30px}
@media(max-width:600px){.jjm-hero-cutout{width:190px;top:0;margin-top:-20px}}

/* ── v1.9.30 – Hero layout: badge up + stats overlap hero ── */
.jjm-badge{margin-top:-16px;margin-bottom:12px}
.jjm-band--white .jj-id-stats-wrap--page{position:relative;z-index:10;margin-top:-48px;padding:0 16px}
.jjm-band--white .jj-id-stats-wrap--page .jj-id-stat-card{background:rgba(255,255,255,.92);backdrop-filter:blur(8px);border-radius:14px;box-shadow:0 2px 12px rgba(0,0,0,.08);border:1px solid rgba(255,255,255,.6)}
@media(max-width:600px){.jjm-band--white .jj-id-stats-wrap--page{margin-top:-36px;gap:8px}.jjm-band--white .jj-id-stats-wrap--page .jj-id-stat-card{padding:10px 6px;min-height:80px}}

/* ── v1.9.31 – Stats inside hero: absolute bottom + badge up ── */
.jjm-hero{padding:32px 16px 0;padding-bottom:100px}
.jjm-hero .jj-id-stats-wrap--page{position:absolute;bottom:16px;left:16px;right:16px;z-index:10;display:flex;justify-content:center;gap:12px;padding:0;margin:0}
.jjm-hero .jj-id-stats-wrap--page .jj-id-stat-card{flex:1;max-width:33.33%;min-height:80px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:12px 8px;background:rgba(255,255,255,.95);backdrop-filter:blur(8px);border-radius:14px;box-shadow:0 2px 12px rgba(0,0,0,.1);border:1px solid rgba(255,255,255,.6)}
.jjm-hero .jj-id-stats-wrap--page .stat-icon svg{width:24px;height:24px;color:#0072b1}
.jjm-hero .jj-id-stats-wrap--page .stat-num{font-size:15px;font-weight:800;color:#1C2B36;white-space:nowrap}
.jjm-hero .jj-id-stats-wrap--page .stat-label{font-size:11px;color:#64748b;white-space:nowrap}
.jjm-band--white .jj-id-stats-wrap--page{margin-top:0}
@media(max-width:600px){.jjm-hero{padding-bottom:80px}.jjm-hero .jj-id-stats-wrap--page{bottom:10px;left:10px;right:10px;gap:6px}.jjm-hero .jj-id-stats-wrap--page .jj-id-stat-card{padding:8px 4px;min-height:68px;border-radius:10px}.jjm-hero .jj-id-stats-wrap--page .stat-num{font-size:13px}.jjm-hero .jj-id-stats-wrap--page .stat-label{font-size:10px}}

/* ── v1.9.32 – Inline SVG icons replacing emoji ── */
.jjm-h2-icon{display:inline-block;width:22px;height:22px;vertical-align:-3px;margin-right:4px;flex-shrink:0}
.jjm-flag-icon{display:inline-block;width:20px;height:20px;vertical-align:-3px}
.jjm-arrow-icon{display:inline-block;width:16px;height:16px;vertical-align:-2px;margin-left:4px}
@media(max-width:600px){.jjm-h2-icon{width:18px;height:18px;vertical-align:-2px}.jjm-arrow-icon{width:14px;height:14px}}

/* ── v1.9.33 – Fix oversized SVG icons ── */
.jjm-h2-icon,.jjm-flag-icon,.jjm-arrow-icon{display:inline-block !important;vertical-align:-3px;flex-shrink:0}
.jjm-h2-icon{width:22px !important;height:22px !important;max-width:22px !important;max-height:22px !important;margin-right:4px}
.jjm-flag-icon{width:20px !important;height:20px !important;max-width:20px !important;max-height:20px !important}
.jjm-arrow-icon{width:16px !important;height:16px !important;max-width:16px !important;max-height:16px !important;margin-left:4px;vertical-align:-2px}
@media(max-width:600px){.jjm-h2-icon{width:18px !important;height:18px !important;max-width:18px !important;max-height:18px !important}.jjm-arrow-icon{width:14px !important;height:14px !important;max-width:14px !important;max-height:14px !important}}


/* ── v1.9.34 – Rec banner two-line + SVG sizing ── */
.jjm-rec-banner svg{display:inline-block;width:20px !important;height:20px !important;max-width:20px !important;max-height:20px !important;vertical-align:-4px}
@media(max-width:600px){.jjm-rec-card-photo{width:90px}.jjm-rec-card-gb{font-size:26px}.jjm-rec-card-price{font-size:14px}.jjm-rec-card-name{font-size:13px}}

/* ── v1.9.35 – Rec card photo larger + bottom-aligned ── */
.jjm-rec-card{align-items:stretch;min-height:160px}
.jjm-rec-card-photo{width:140px;display:flex;align-items:flex-end;padding:8px 0 0}
.jjm-rec-card-photo img{width:100%;height:auto;max-height:100%;object-fit:contain;object-position:bottom}
.jjm-rec-card-content{display:flex;flex-direction:column;align-items:center;justify-content:center}
@media(max-width:600px){.jjm-rec-card{min-height:130px}.jjm-rec-card-photo{width:110px;padding:6px 0 0}}

/* ── v1.9.36 – Rec card photo enlarge + center-shift ── */
.jjm-rec-card{min-height:180px}
.jjm-rec-card-photo{position:relative;overflow:visible}
.jjm-rec-card-photo img{position:absolute;bottom:0;width:160%;max-width:none;height:auto}
.jjm-rec-card--blue .jjm-rec-card-photo img{right:-12px;left:auto}
.jjm-rec-card--orange .jjm-rec-card-photo img{left:-12px;right:auto}
@media(max-width:600px){.jjm-rec-card{min-height:140px}.jjm-rec-card-photo img{width:140%}.jjm-rec-card--blue .jjm-rec-card-photo img{right:-8px}.jjm-rec-card--orange .jjm-rec-card-photo img{left:-8px}}

/* ── v1.9.37 – Fix photo shift direction (was reversed) ── */
.jjm-rec-card--blue .jjm-rec-card-photo img{right:auto;left:-12px}
.jjm-rec-card--orange .jjm-rec-card-photo img{left:auto;right:-12px}
@media(max-width:600px){.jjm-rec-card--blue .jjm-rec-card-photo img{left:-8px}.jjm-rec-card--orange .jjm-rec-card-photo img{right:-8px}}

/* ── v1.9.38 – Photo shift center more (-12→-24px) ── */
.jjm-rec-card--blue .jjm-rec-card-photo img{left:-24px !important}
.jjm-rec-card--orange .jjm-rec-card-photo img{right:-24px !important}
@media(max-width:600px){.jjm-rec-card--blue .jjm-rec-card-photo img{left:-16px !important}.jjm-rec-card--orange .jjm-rec-card-photo img{right:-16px !important}}

/* ── v1.9.39 – Fix photo shift: negative→positive values ── */
.jjm-rec-card--blue .jjm-rec-card-photo img{left:24px !important}
.jjm-rec-card--orange .jjm-rec-card-photo img{right:24px !important}
@media(max-width:600px){.jjm-rec-card--blue .jjm-rec-card-photo img{left:16px !important}.jjm-rec-card--orange .jjm-rec-card-photo img{right:16px !important}}

/* ── v1.9.40 – See-all button inside white band ── */
.jjm-band--white .jjm-see-all-wrap{text-align:center;margin-top:16px;padding-bottom:8px}

/* ── v1.9.41 – Card background + badge border colors ── */
.jjm-rec-card--blue{background:#E6F1FB}
.jjm-rec-card--orange{background:#FFF0E8}
.jjm-rec-card-badge--blue{border:1.5px solid #0072b1}
.jjm-rec-card-badge--orange{border:1.5px solid #FF6B35}

/* =============================================
   MOBILE-FIRST CENTRAL COLUMN LAYOUT (Phase 1)
   ============================================= */

/* Site wrapper: モバイルファーストで中央カラム */
.site-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  position: relative;
  min-height: 100vh;
}

/* ヘッダーを中央カラム内に収める */
.site-wrapper .jj-id-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ヘッダー内部の max-width を 480px に合わせる */
.site-wrapper .jj-id-header-inner {
  max-width: 480px;
}

/* SNS stories bar もカラム内 */
.site-wrapper .jj-id-sns-stories {
  position: sticky;
  top: 60px;
  z-index: 999;
}

/* PC表示時: body背景を水色に */
@media (min-width: 481px) {
  body {
    background-color: #87CEEB !important;
  }

  /* 中央カラムに影を付けてカード感を出す */
  .site-wrapper {
    box-shadow: 0 0 24px rgba(0,0,0,.08);
  }
}

/* スマホ: 白背景（デフォルト通り）*/
@media (max-width: 480px) {
  body {
    background: var(--white) !important;
  }

  /* モバイルでは全幅 */
  .site-wrapper {
    max-width: 100%;
    box-shadow: none;
  }
}

/* =============================================
   PC SIDE PANELS (Phase 1: 空の構造のみ)
   ============================================= */

/* モバイルファースト: デフォルトで非表示 */
.pc-side-left,
.pc-side-right {
  display: none;
}

/* 1300px以上でのみ表示 */
@media (min-width: 1300px) {
  .pc-side-left,
  .pc-side-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 210px;
    z-index: 100;
  }

  .pc-side-left {
    left: calc((100vw - 480px) / 2 - 210px - 80px);
  }

  .pc-side-right {
    right: calc((100vw - 480px) / 2 - 210px - 80px);
  }
}

/* =============================================
   EXISTING LAYOUT OVERRIDES FOR CENTRAL COLUMN
   ============================================= */

/* container系のmax-widthを480pxに合わせる */
.site-wrapper .jj-id-container {
  max-width: 480px !important;
  padding-left: 16px;
  padding-right: 16px;
}

.site-wrapper .jj-id-page-content {
  max-width: 480px !important;
}

/* ヒーロー幅もカラム内 */
.site-wrapper .jj-id-hero {
  width: 100%;
}

/* フッターもカラム内 */
.site-wrapper .jj-id-footer {
  width: 100%;
}

/* フッター内リンクレイアウト: 480px内では1列 */
.site-wrapper .jj-id-footer-links {
  flex-direction: column;
}

/* WAフローティングボタン: カラム内に配置 */
@media (min-width: 481px) {
  .jj-id-wa-float {
    right: calc((100vw - 480px) / 2 + 16px) !important;
  }
}

/* モバイルではデフォルト位置のまま */
@media (max-width: 480px) {
  .jj-id-wa-float {
    right: 16px !important;
  }
}

/* =============================================
   PHASE 3: BACKGROUND LOGO PATTERN (1300px+)
   ============================================= */
@media (min-width: 1300px) {
  body {
    background-color: #87CEEB !important;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='20 12 35 34' width='80' height='80'><path fill='white' opacity='0.07' d='M37.5 28.96L26.4 22.55 37.5 16.14 48.6 22.55Z'/><path fill='white' opacity='0.04' d='M37.5 28.96V41.78L26.4 35.37V22.55Z'/><path fill='white' opacity='0.06' d='M48.6 22.55V35.37L37.5 41.78V28.96Z'/></svg>") !important;
    background-size: 200px 200px !important;
    background-repeat: repeat !important;
  }
}

/* =============================================
   PHASE 2: SIDE PANEL CARD STYLES
   ============================================= */

/* --- Shared Card Base --- */
.side-card {
  display: block;
  border-radius: 14px;
  text-decoration: none !important;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  text-decoration: none !important;
}

/* --- Logo Card --- */
.side-card--logo {
  background: #ffffff;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.side-card--logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SNS Cards (shared) --- */
.side-card--ig,
.side-card--tiktok,
.side-card--yt {
  padding: 16px;
  color: #ffffff !important;
}

.side-card__icon {
  margin-bottom: 8px;
}

.side-card__icon svg {
  display: block;
}

.side-card__handle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.side-card__cta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.02em;
}

/* Instagram Card */
.side-card--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* TikTok Card */
.side-card--tiktok {
  background: #000000;
}

/* YouTube Card */
.side-card--yt {
  background: #FF0000;
}

/* --- QR Code Card --- */
.side-card--qr {
  background: #ffffff;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.side-card__qr-label {
  font-size: 11px;
  font-weight: 600;
  color: #718096;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.side-card__qr-wrap {
  display: block;
}

.side-card__qr-wrap svg {
  display: block;
  margin: 0 auto;
}

.side-card__qr-sub {
  font-size: 12px;
  font-weight: 600;
  color: #0072b1;
  margin-top: 8px;
}

/* --- Partner Recruitment Card --- */
.side-card--partner {
  background: linear-gradient(135deg, #1a2a3a, #0d1b2a);
  padding: 20px 16px;
  color: #ffffff !important;
}

.side-card__partner-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.side-card__partner-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.side-card__partner-stat {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}

.side-card__partner-cta {
  display: inline-block;
  background: #FF6B35;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}

.side-card--partner:hover .side-card__partner-cta {
  background: #e85a24;
}

/* =============================================
   FIX 1: ロゴカード コンパクト化 (v1.9.44-fix1)
   ============================================= */
.side-card--logo {
  padding: 8px 12px !important;
}
.side-card--logo img {
  max-height: 50px !important;
  width: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

/* =============================================
   BACKGROUND PATTERN: 新ロゴ差し替え (v1.9.46-fix)
   ============================================= */
   BACKGROUND PATTERN: SVGロゴ半透明パターン
   ============================================= */
@media (min-width: 1300px) {
  body {
    background-color: #87CEEB !important;
    background-image: none !important;
    position: relative;
  }
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/jobjepang-id-theme/assets/logo-bg-pattern.svg');
    background-size: 220px 220px;
    background-repeat: repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
  }
}

/* ── PC Logo Top-Left (fixed, 1300px+ only) ── */
.pc-logo-topleft {
  display: none;
}

@media (min-width: 1300px) {
  .pc-logo-topleft {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 101;
  }
  .pc-logo-topleft img {
    height: 60px;
    width: auto;
  }
}

/* ── JJ Mobile SIM Card (side panel) ── */
.side-card--jjmobile {
  background: linear-gradient(135deg, #0072b1 0%, #005a8e 100%);
  padding: 16px;
  color: #ffffff !important;
}
.side-card__jjm-logo-wrap {
  display: block;
  margin-bottom: 8px;
}
.side-card__jjm-logo {
  height: 24px;
  width: auto;
  display: block;
}
.side-card--jjmobile .side-card__title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}
.side-card--jjmobile .side-card__sub {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.side-card--jjmobile .side-card__cta {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  opacity: .9;
}
.side-card--jjmobile:hover {
  opacity: .92;
  text-decoration: none;
}

/* ── Partner Card v2 (white, Indonesian) ── */
.side-card--partner-v2 {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1C2B36;
  padding: 20px 18px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.side-card--partner-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
}
.side-card__partner-heading {
  font-size: 15px;
  font-weight: 700;
  color: #1C2B36;
  line-height: 1.4;
}
.side-card__partner-number {
  font-size: 36px;
  font-weight: 900;
  color: #0072b1;
  line-height: 1;
  margin: 4px 0;
}
.side-card__partner-list {
  font-size: 12px;
  color: #718096;
  line-height: 1.5;
}
.side-card__partner-cta-btn {
  display: inline-block;
  background: #FF6B35;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  transition: background 0.2s ease;
}
.side-card--partner-v2:hover .side-card__partner-cta-btn {
  background: #e85a24;
}

/* ── Mitra Partner page styles ── */
.partner-msg {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 24px;
}
.partner-msg__photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #718096;
  font-size: 12px;
  text-align: center;
}
.partner-msg__body p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #1C2B36;
  font-size: 15px;
}
.partner-msg__sign {
  margin-top: 20px;
  text-align: right;
}
.partner-msg__sign strong {
  display: block;
  font-weight: 700;
  color: #0072b1;
}
.partner-msg__sign span {
  font-size: 13px;
  color: #718096;
}
.partner-msg--sub .partner-msg__photo-placeholder {
  width: 90px;
  height: 90px;
}
.partner-discuss-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.partner-discuss-list li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid #eef1f3;
  position: relative;
  line-height: 1.6;
}
.partner-discuss-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #0072b1;
  font-weight: 900;
  font-size: 18px;
}
.partner-discuss-list li:last-child {
  border-bottom: none;
}

/* ── JJ Mobile story ring ── */
.story-jjmobile {
  background: linear-gradient(135deg, #0072b1 0%, #005a8e 100%);
}
.jj-id-story-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.9);
  transform-origin: center center;
  border-radius: 50%;
}

/* ── SIM card hero: text stroke + z-index layering ── */
.jjm-hero h1,
.jjm-hero .hero-sub {
  -webkit-text-stroke: 1px #000000;
  text-stroke: 1px #000000;
  paint-order: stroke fill;
}

/* ── Partner card v2 link style ── */
.side-card__partner-link {
  font-size: 13px;
  font-weight: 700;
  color: #0072b1;
  margin-top: 4px;
  line-height: 1.4;
}
.side-card--partner-v2:hover .side-card__partner-link {
  color: #005a8e;
}

/* ── Hero text z-index (no image changes) ── */
.jjm-hero h1,
.jjm-hero .hero-sub,
.jjm-hero .jjm-badge {
  position: relative;
  z-index: 5;
}

/* ── Allplan cards: badge absolute to align content ── */
.jjm-allplan {
  position: relative;
  padding-top: 36px;
}
.jjm-plan-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
}
/* ── Plan name: single line, smaller font ── */
.jjm-allplan .jjm-plan-name {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Data Usage Section ===== */
.jjm-data-usage {
  margin-bottom: 24px;
}
.jjm-data-list {
  background: #f0f4f8;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jjm-data-row {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.jjm-data-app {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.jjm-data-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jjm-data-icon svg {
  width: 22px;
  height: 22px;
}
.jjm-data-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.jjm-data-name {
  font-size: 14px;
  font-weight: 700;
  color: #1C2B36;
  line-height: 1.3;
}
.jjm-data-detail {
  font-size: 11px;
  color: #718096;
  margin-top: 2px;
}
.jjm-data-num {
  text-align: right;
  flex-shrink: 0;
}
.jjm-data-hour {
  font-size: 14px;
  font-weight: 900;
  color: #0072b1;
  white-space: nowrap;
}
.jjm-data-month {
  font-size: 11px;
  color: #FF6B35;
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}
.jjm-data-disclaimer {
  font-size: 11px;
  color: #718096;
  text-align: center;
  margin-top: 8px;
}

/* Brand colors for icons */
.jjm-data-icon.ic-tiktok { background: #000000; }
.jjm-data-icon.ic-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.jjm-data-icon.ic-wa { background: #25D366; }
.jjm-data-icon.ic-yt { background: #FF0000; }
.jjm-data-icon.ic-game { background: #6C5CE7; }
.jjm-data-icon.ic-netflix { background: #E50914; }

/* ===== 30GB Hero Card ===== */
.jjm-30gb-hero {
  position: relative;
  background: #E6F1FB;
  border: 2px solid #0072b1;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 16px;
  min-height: 180px;
  display: flex;
  align-items: center;
}
.jjm-30gb-text {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 14px 0 14px 36px;
}
.jjm-30gb-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0072b1;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.jjm-30gb-headline {
  font-size: 18px;
  font-weight: 900;
  color: #1C2B36;
  line-height: 1.2;
  margin-bottom: 4px;
  -webkit-text-stroke: 0.5px #1C2B36;
  text-stroke: 0.5px #1C2B36;
}
.jjm-30gb-headline strong {
  color: #FF6B35;
  font-size: 24px;
  font-weight: 900;
  margin-left: 4px;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}
.jjm-30gb-sub {
  font-size: 11px;
  color: #1C2B36;
  line-height: 1.4;
  margin: 8px 0;
  opacity: 0.85;
}
.jjm-30gb-price {
  font-size: 18px;
  font-weight: 900;
  color: #FF6B35;
  margin-top: 6px;
}
.jjm-30gb-model {
  position: absolute;
  width: 50%;
  max-width: 220px;
  bottom: -10%;
  right: 19px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-20deg);
  transform-origin: center center;
}
.jjm-30gb-model img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .jjm-30gb-hero {
    min-height: 140px;
  }
  .jjm-30gb-text {
    padding: 12px 0 12px 32px;
    width: 58%;
  }
  .jjm-30gb-badge {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 8px;
  }
  .jjm-30gb-headline {
    font-size: 15px;
  }
  .jjm-30gb-headline strong {
    font-size: 20px;
  }
  .jjm-30gb-sub {
    font-size: 10px;
    margin: 6px 0;
  }
  .jjm-30gb-price {
    font-size: 15px;
  }
  .jjm-30gb-model {
    width: 45%;
    max-width: 180px;
    right: 10px;
  }
}
/* ===== Free notice ===== */
.jjm-free-notice {
  background: #fff8e1;
  border: 1px solid #ffd54f;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  color: #5d4e00;
  line-height: 1.6;
  margin-bottom: 24px;
}
.jjm-free-notice strong {
  color: #b86e00;
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.jjm-free-notice span {
  font-weight: 500;
  font-size: 12px;
  color: #856404;
}

/* ===== Sudah di Jepang? Section ===== */
.jjm-sudah-section {
  background: #EFF6FF;
  border: 2px solid #93C5FD;
  border-radius: 16px;
  padding: 18px 16px;
  margin-bottom: 16px;
}
.jjm-sudah-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e5e7eb;
}
.jjm-sudah-flag {
  font-size: 28px;
  flex-shrink: 0;
}
.jjm-sudah-title-wrap {
  flex: 1;
}
.jjm-sudah-title {
  font-size: 15px;
  font-weight: 900;
  color: #0072b1;
  line-height: 1.3;
}
.jjm-sudah-sub {
  font-size: 11px;
  color: #718096;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.4;
}
.jjm-sudah-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}
.jjm-sudah-step {
  flex: 1;
  text-align: center;
}
.jjm-sudah-step-num {
  width: 32px;
  height: 32px;
  background: #0072b1;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 6px;
}
.jjm-sudah-step-text {
  font-size: 11px;
  color: #1C2B36;
  font-weight: 700;
  line-height: 1.3;
}
.jjm-sudah-arrow {
  color: #0072b1;
  font-size: 18px;
  align-self: center;
  margin-top: -10px;
  flex-shrink: 0;
}
.jjm-sudah-cta {
  display: block;
  background: #0072b1;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.jjm-sudah-cta:hover {
  background: #005a8e;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 480px) {
  .jjm-sudah-title {
    font-size: 14px;
  }
  .jjm-sudah-sub {
    font-size: 10px;
  }
  .jjm-sudah-step-text {
    font-size: 10px;
  }
  .jjm-sudah-arrow {
    font-size: 16px;
  }
}

/* ===== No.1 Docomo Card (オーバーラップ) ===== */
.jjm-no1-wrap {
  position: relative;
  z-index: 5;
  padding: 0 16px;
  margin: -70px 0 16px;
}
.jjm-no1-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}
.jjm-no1-badge { flex-shrink: 0; text-align: center; }
.jjm-no1-rank {
  font-family: "Anton", sans-serif;
  color: #0072b1;
  line-height: 0.9;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: baseline;
}
.jjm-no1-rank .jjm-n { font-size: 36px; }
.jjm-no1-rank .jjm-o { font-size: 20px; }
.jjm-no1-rank .jjm-dot { font-size: 36px; }
.jjm-no1-rank .jjm-one { font-size: 56px; margin-left: 1px; }
.jjm-no1-bottom {
  font-size: 9px;
  font-weight: 800;
  color: #FF6B35;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}
.jjm-no1-text {
  flex: 1;
  border-left: 1px solid #e5e7eb;
  padding-left: 14px;
}
.jjm-no1-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: #0072b1;
  letter-spacing: 1px;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.jjm-no1-title {
  font-size: 23px;
  font-weight: 900;
  color: #1C2B36;
  line-height: 1.2;
  margin-bottom: 2px;
}
.jjm-no1-sub { font-size: 15px; color: #555; line-height: 1.4; }

/* Main USPs */
.jjm-main-usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 16px 0;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}
.jjm-main-usp {
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  border-left: 3px solid #FF6B35;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.jjm-main-usp--green { border-left-color: #25D366; }
.jjm-main-usp-icon { margin-bottom: 6px; line-height: 1; }
.jjm-main-usp-title {
  font-size: 13px;
  font-weight: 900;
  color: #1C2B36;
  line-height: 1.2;
  margin-bottom: 3px;
}
.jjm-main-usp-desc { font-size: 10.5px; color: #555; line-height: 1.4; }
.jjm-main-usp--orange .jjm-main-usp-desc strong { color: #FF6B35; font-weight: 700; }
.jjm-main-usp--green .jjm-main-usp-desc strong { color: #0072b1; font-weight: 700; }

/* Other Strengths */
.jjm-other-strengths {
  padding: 16px 16px 22px;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}
.jjm-other-strengths-title {
  font-size: 11px;
  font-weight: 800;
  color: #555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.jjm-other-strengths-title::before, .jjm-other-strengths-title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #ddd;
  vertical-align: middle;
  margin: 0 8px;
}
.jjm-strength-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.jjm-strength {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
}
.jjm-strength-icon {
  margin-bottom: 4px;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.jjm-strength-title {
  font-size: 11px;
  font-weight: 900;
  color: #1C2B36;
  line-height: 1.2;
  margin-bottom: 2px;
}
.jjm-strength-sub { font-size: 9px; color: #718096; line-height: 1.2; }

/* Ready band */
.jjm-ready-band {
  background: linear-gradient(135deg, #F7FAFC, #f0f4f8);
  border-left: 4px solid #FF6B35;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 668px;
  margin: 0 auto 20px;
  box-sizing: border-box;
}
.jjm-ready-icon { flex-shrink: 0; display: flex; align-items: center; }
.jjm-ready-text { flex: 1; }
.jjm-ready-title {
  font-size: 13px;
  font-weight: 900;
  color: #1C2B36;
  line-height: 1.3;
}
.jjm-ready-sub { font-size: 11px; color: #856404; margin-top: 2px; }

/* SP用 */
@media (max-width: 600px) {
  .jjm-no1-card { padding: 14px 16px; gap: 12px; }
  .jjm-no1-rank .jjm-n { font-size: 32px; }
  .jjm-no1-rank .jjm-o { font-size: 18px; }
  .jjm-no1-rank .jjm-dot { font-size: 32px; }
  .jjm-no1-rank .jjm-one { font-size: 50px; }
  .jjm-no1-title { font-size: 20px; }
  .jjm-no1-sub { font-size: 14px; }
}

/* h1 と hero-sub を5px下に移動 */
.jjm-hero h1,
.jjm-hero .hero-sub {
  transform: translateY(15px);
}

/* No.1 card 99% highlight */
.jjm-no1-sub strong {
  font-weight: 900;
  color: #FF6B35;
}

/* ===== Berapa GB - 2列グリッド ===== */
.jjm-gb-sub {
  font-size: 13px;
  color: #718096;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -8px;
}
.jjm-gb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 668px;
  margin: 0 auto;
}
.jjm-gb-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  box-sizing: border-box;
}
.jjm-gb-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.jjm-gb-name {
  font-size: 13px;
  font-weight: 900;
  color: #1C2B36;
  line-height: 1.2;
  margin-bottom: 1px;
}
.jjm-gb-desc {
  font-size: 10px;
  color: #718096;
  margin-bottom: 6px;
  line-height: 1.2;
}
.jjm-gb-rate {
  font-size: 14px;
  font-weight: 800;
  color: #0072b1;
  line-height: 1.1;
}
.jjm-gb-month {
  font-size: 9px;
  color: #718096;
  margin-top: 2px;
}
.jjm-gb-footnote {
  font-size: 10px;
  color: #a0aec0;
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}
@media (max-width: 480px) {
  .jjm-gb-card { padding: 12px 8px; }
  .jjm-gb-name { font-size: 12px; }
  .jjm-gb-rate { font-size: 13px; }
  .jjm-gb-desc { font-size: 9px; }
}

/* ============================
   Magang 2027 Alert Bar
   ============================ */
.magang-2027-alert {
  background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 2px 8px rgba(255,107,53,0.25);
}
.magang-2027-alert__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-right: 32px;
}
.magang-2027-alert strong {
  font-weight: 800;
  display: inline-block;
  margin-right: 4px;
}
.magang-2027-alert a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 6px;
}
.magang-2027-alert__close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.magang-2027-alert__close:hover {
  background: rgba(255,255,255,0.2);
}
@media (max-width: 600px) {
  .magang-2027-alert {
    font-size: 13px;
    padding: 12px 40px 12px 12px;
  }
  .magang-2027-alert__inner {
    padding-right: 0;
  }
}
.magang-2027-alert.is-hidden { display: none; }

/* ============================
   Criteria Satisfaction Badge
   ============================ */
.criteria-badge {
  margin-top: 12px;
  padding: 12px 14px;
  background: #E8F4FD;
  border-left: 4px solid #0072b1;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #0c4a6e;
  line-height: 1.5;
}
.criteria-badge strong {
  color: #0072b1;
  font-weight: 700;
}
.criteria-badge .check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #0072b1;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: 800;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .criteria-badge {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* ===== Brand Message: Kamu juga bisa + Bridge (2026-04-18) ===== */
.jj-id-kamu-bisa {
  background: linear-gradient(135deg, #0072b1 0%, #005a8c 100%);
  color: #fff;
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  margin: 48px auto;
  max-width: 720px;
  box-shadow: 0 8px 24px rgba(0,114,177,0.2);
}
.jj-id-kamu-bisa__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.jj-id-kamu-bisa__sub {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  opacity: 0.95;
}
.jj-id-kamu-bisa .jj-id-cta-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
}
.jj-id-kamu-bisa .jj-id-cta-btn:hover {
  transform: translateY(-2px);
}
.jj-id-bridge {
  text-align: center;
  font-size: 18px;
  color: #1C2B36;
  margin: 32px auto 16px;
  max-width: 600px;
  padding: 0 16px;
  line-height: 1.6;
}
.jj-id-bridge strong {
  color: #0072b1;
  font-weight: 700;
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .jj-id-kamu-bisa { padding: 56px 48px; }
  .jj-id-kamu-bisa__title { font-size: 36px; }
  .jj-id-kamu-bisa__sub { font-size: 18px; }
  .jj-id-bridge { font-size: 22px; margin-top: 48px; }
  .jj-id-bridge strong { font-size: 32px; }
}

/* ===== LIVE Session (Instagram community) 2026-04-18 ===== */
.jj-id-live-session {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
  padding: 48px 16px;
  margin: 48px auto;
  max-width: 900px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(131, 58, 180, 0.25);
}
.jj-id-live-session__inner {
  max-width: 720px;
  margin: 0 auto;
}
.jj-id-live-session__header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 14px;
}
.jj-id-live-dot {
  width: 10px;
  height: 10px;
  background: #ff3b30;
  border-radius: 50%;
  display: inline-block;
  animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.jj-id-live-session__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #fff;
}
.jj-id-live-session__desc {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  opacity: 0.95;
}
.jj-id-live-session__desc strong {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  opacity: 1;
}
.jj-id-live-session__instruction {
  font-size: 14px;
  margin: 0 0 16px;
  opacity: 0.9;
}
.jj-id-live-session__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #833AB4;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.jj-id-live-session__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.jj-id-live-session__btn svg {
  fill: #833AB4;
}
.jj-id-live-session__note {
  margin: 16px 0 0;
  font-size: 13px;
  opacity: 0.85;
}
@media (min-width: 768px) {
  .jj-id-live-session {
    padding: 64px 48px;
    margin: 64px auto;
  }
  .jj-id-live-session__title {
    font-size: 32px;
  }
  .jj-id-live-session__desc {
    font-size: 17px;
  }
  .jj-id-live-session__btn {
    padding: 16px 36px;
    font-size: 18px;
  }
}

/* ============================================
   余白統一ルール (2026-04-19)
   通常(B): モバイル24px / PC 32px
   強調(A): モバイル16px / PC 24px
   Hero: 画面いっぱい
   ============================================ */
:root {
  --jj-spacing-normal-mobile: 24px;
  --jj-spacing-normal-pc: 32px;
  --jj-spacing-feature-mobile: 16px;
  --jj-spacing-feature-pc: 24px;
}

/* 強調要素 (A) */
.jj-id-kamu-bisa,
.jj-id-live-session,
.jj-id-cta-block {
  margin-left: var(--jj-spacing-feature-mobile);
  margin-right: var(--jj-spacing-feature-mobile);
}

@media (min-width: 768px) {
  .jj-id-kamu-bisa,
  .jj-id-live-session,
  .jj-id-cta-block {
    margin-left: auto;
    margin-right: auto;
  }
}

/* 通常要素 (B) - カード・セクション型 */
.jj-id-section-inner,
.jj-id-alumni-card,
.jj-id-sns-card,
.jj-id-article-card,
.jj-id-job-card,
.jj-id-faq-item,
.jj-id-bridge,
.jj-id-dream-card,
.jj-id-step-card,
.jj-id-warning,
.jj-id-section > .container,
.jj-id-section > .jj-id-container {
  margin-left: var(--jj-spacing-normal-mobile);
  margin-right: var(--jj-spacing-normal-mobile);
}

@media (min-width: 768px) {
  .jj-id-section-inner,
  .jj-id-alumni-card,
  .jj-id-sns-card,
  .jj-id-article-card,
  .jj-id-job-card,
  .jj-id-faq-item,
  .jj-id-bridge,
  .jj-id-dream-card,
  .jj-id-step-card,
  .jj-id-warning,
  .jj-id-section > .container,
  .jj-id-section > .jj-id-container {
    margin-left: var(--jj-spacing-normal-pc);
    margin-right: var(--jj-spacing-normal-pc);
  }
}

/* Hero は画面いっぱい維持 */
.jj-id-hero {
  margin-left: 0;
  margin-right: 0;
}

/* =============================================
   v1.9.0 — Hero mobile spacing optimization
   (Fix: unnatural vertical whitespace on mobile TOP)
   Scope: max-width:767px only, PC untouched.
   ============================================= */
@media (max-width: 767px) {
  .jj-id-hero {
    padding: 32px 16px 64px;
    min-height: auto;
  }
  .jj-id-hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.25;
  }
  .jj-id-hero .hero-sub {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .jj-id-hero__img {
    margin: 0 auto 16px !important;
  }
}

/* =============================================
   v2.2.0 — Dream Card photo + link variant (2026-04-21)
   Alumni real photos (DAMAI / Yudi) with clickable card to /cerita-alumni/#anchor
   ============================================= */
.jj-id-dream-grid--two {
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .jj-id-dream-grid--two {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.jj-id-dream-card--link {
  display: flex !important;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  border-left: 4px solid #0072b1 !important;
  border-radius: 0 12px 12px 0 !important;
}
.jj-id-dream-card--link:hover {
  border-color: #005a8c !important;
  box-shadow: 0 4px 12px rgba(0,114,177,0.15);
  transform: translateY(-2px);
}
.jj-id-dream-avatar--photo {
  width: 72px !important;
  height: 72px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #f0f8ff;
}
.jj-id-dream-avatar__img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}
.jj-id-dream-card__location {
  font-size: 11px !important;
  color: #9CA3AF !important;
  line-height: 1.4;
}
.jj-id-dream-card--link .jj-id-dream-card__achievement {
  color: #0072b1 !important;
}

/* =============================================
   v2.3.1 — Emergency fix: remove char-by-char breaks, single-col everywhere (2026-04-21)
   Root cause: .site-wrapper .jj-id-container forced to 480px + 3-col grid at L2962
   = cards ~148px → word-break:break-word triggered char-level splits (D/A/M/A/I vertical)
   Fix: single-col grid PC+mobile, widen Mimpi container to 720px, remove word-break
   ============================================= */
.jj-id-dream-card__meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  margin-bottom: 12px !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
.jj-id-dream-card__location {
  font-size: 12px !important;
  color: #6B7280 !important;
  line-height: 1.4 !important;
  display: block !important;
}
/* Single-column grid both mobile and PC (3 cards stacked vertically) */
.jj-id-dream-grid,
.jj-id-dream-grid--three {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  max-width: 640px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Widen Mimpi section container beyond 480px site-wide cap (1 size up: 480 → 720) */
.site-wrapper .jj-id-section:has(.jj-id-dream-grid) .jj-id-container,
.site-wrapper .jj-id-section:has(.jj-id-dream-grid--three) .jj-id-container {
  max-width: 720px !important;
}

/* =============================================
   v2.3.2 — Female card left-border color (2026-04-21)
   BUNGA card uses pink border to visually distinguish gender (DAMAI/Yudi = blue)
   Overrides v1.7.0 `.jj-id-dream-card--female{border-left:4px solid #D4537E}` via source order
   ============================================= */
.jj-id-dream-card--link.jj-id-dream-card--female {
  border-left-color: #EC4899 !important;
}

/* =============================================
   v2.3.3 — SNS section container widening to match Mimpi (2026-04-21)
   Previously SNS section was capped at 480px by site-wide override (L2962).
   Now unified with Mimpi: 720px container, 1-column grid both Mobile and PC.
   ============================================= */
.jj-id-sns-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.site-wrapper .jj-id-section:has(.jj-id-sns-grid) .jj-id-container {
  max-width: 720px !important;
}

/* =============================================
   v2.5.8b — Targeted Section Width Adjustment (2026-05-06)
   Mimpi mereka jadi nyata + Jangan Salah Pilih LPK! の mobile container を
   選択的に広げる。他 6 セクションは normal 24px のまま、PC は無変更。
   :has() で 2 セクションだけ targeting、HTML 変更なし。
   ============================================= */
@media (max-width: 767px) {
  .site-wrapper .jj-id-section:has(.jj-id-dream-grid) > .jj-id-container,
  .site-wrapper .jj-id-section:has(.jj-id-warning) > .jj-id-container {
    margin-left: 4px;
    margin-right: 4px;
  }
}

/* =============================================
   v2.3.8 — SNS card centering fix (2026-04-23)
   L4354-4355 の「通常要素 (B)」ルールが .jj-id-sns-card に margin 24/32px を
   付与し、親 .jj-id-sns-grid(max-width:720px + margin:auto)内でカードを右ズレさせていた。
   カードは親 grid で既に中央寄せされているので、カード自身の左右マージンは不要。
   ============================================= */
.jj-id-sns-card {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 768px) {
  .jj-id-sns-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* =============================================
   ANXIETY RELIEF — Card Grid (v2.5.2)
   ============================================= */
.jj-id-anxiety-grid {
  background: #FAFBFC;
  padding: 56px 16px;
}

.jj-id-anxiety-grid__head {
  text-align: center;
  margin-bottom: 32px;
}

.jj-id-anxiety-grid__title {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.3;
}

.jj-id-anxiety-grid__sub {
  font-size: 14px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

.jj-id-anxiety-grid__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.jj-id-anxiety-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 18px;
}

.jj-id-anxiety-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.jj-id-anxiety-card__icon--amber {
  background: #FEF3C7;
  color: #92400E;
}

.jj-id-anxiety-card__icon--blue {
  background: #DBEAFE;
  color: #1E40AF;
}

.jj-id-anxiety-card__icon--green {
  background: #DCFCE7;
  color: #15803D;
}

.jj-id-anxiety-card__body {
  flex: 1;
  min-width: 0;
}

.jj-id-anxiety-card__q {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
  line-height: 1.4;
}

.jj-id-anxiety-card__a {
  font-size: 13px;
  color: #64748B;
  margin: 0;
  line-height: 1.55;
}

.jj-id-anxiety-grid__punch {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.jj-id-anxiety-grid__punch-text {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 16px;
  line-height: 1.3;
}

.jj-id-anxiety-grid__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.1s ease;
}

.jj-id-anxiety-grid__cta:hover {
  background: #1FB855;
  color: #FFFFFF;
}

.jj-id-anxiety-grid__cta:active {
  transform: scale(0.98);
}

.jj-id-anxiety-grid__cta-note {
  font-size: 12px;
  color: #94A3B8;
  margin: 12px 0 0;
}

@media (max-width: 480px) {
  .jj-id-anxiety-grid {
    padding: 40px 16px;
  }
  .jj-id-anxiety-grid__title {
    font-size: 20px;
  }
  .jj-id-anxiety-grid__sub {
    font-size: 13px;
  }
  .jj-id-anxiety-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .jj-id-anxiety-card__icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .jj-id-anxiety-card__q {
    font-size: 14px;
  }
  .jj-id-anxiety-card__a {
    font-size: 12.5px;
  }
  .jj-id-anxiety-grid__punch-text {
    font-size: 19px;
  }
  .jj-id-anxiety-grid__cta {
    font-size: 15px;
    padding: 13px 24px;
    width: calc(100% - 8px);
    max-width: 320px;
  }
}

/* =============================================
   LPK COMPARISON TABLE (v2.5.3, Sprint 2)
   ============================================= */
.jj-id-lpk-compare { background: #FAFBFC; padding: 56px 16px; }
.jj-id-lpk-compare__head { text-align: center; margin-bottom: 28px; }
.jj-id-lpk-compare__title { font-size: 24px; font-weight: 700; color: #0F172A; margin: 0 0 8px; line-height: 1.3; }
.jj-id-lpk-compare__sub { font-size: 14px; color: #64748B; margin: 0; line-height: 1.5; }
.jj-id-lpk-compare__table { max-width: 480px; margin: 0 auto 24px; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden; background: #FFFFFF; }
.jj-id-lpk-compare__row { display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; border-bottom: 1px solid #E5E7EB; }
.jj-id-lpk-compare__row:last-child { border-bottom: none; }
.jj-id-lpk-compare__row--header { background: #F1F5F9; }
.jj-id-lpk-compare__cell { padding: 12px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 4px; font-size: 12px; line-height: 1.4; }
.jj-id-lpk-compare__cell--label { align-items: flex-start; text-align: left; padding-left: 12px; font-weight: 700; color: #0F172A; font-size: 12.5px; background: #FAFBFC; }
.jj-id-lpk-compare__cell--bad { color: #64748B; background: #FFFFFF; }
.jj-id-lpk-compare__cell--good { color: #15803D; background: #F0FDF4; }
.jj-id-lpk-compare__col-title { font-size: 11.5px; font-weight: 700; line-height: 1.3; }
.jj-id-lpk-compare__row--header .jj-id-lpk-compare__cell--bad .jj-id-lpk-compare__col-title { color: #94A3B8; }
.jj-id-lpk-compare__row--header .jj-id-lpk-compare__cell--good .jj-id-lpk-compare__col-title { color: #15803D; }
.jj-id-lpk-compare__x { color: #DC2626; font-weight: 700; font-size: 14px; line-height: 1; }
.jj-id-lpk-compare__check { color: #15803D; font-weight: 700; font-size: 14px; line-height: 1; }
.jj-id-lpk-compare__txt { font-size: 11.5px; line-height: 1.35; }
.jj-id-lpk-compare__txt--bold { font-weight: 700; }
.jj-id-lpk-compare__quote-short { text-align: center; font-size: 14px; font-style: italic; color: #475569; margin: 0 auto 24px; max-width: 420px; line-height: 1.6; }
.jj-id-lpk-compare__quote-block { max-width: 480px; margin: 0 auto 24px; background: #FFFFFF; border-left: 4px solid #25D366; border-radius: 0; padding: 20px 24px; }
.jj-id-lpk-compare__quote-line { font-size: 14px; font-style: italic; color: #334155; margin: 0 0 8px; line-height: 1.6; }
.jj-id-lpk-compare__quote-line:last-of-type { margin-bottom: 12px; }
.jj-id-lpk-compare__quote-author { font-size: 12px; font-weight: 700; color: #64748B; text-align: right; }
.jj-id-lpk-compare__cta-wrap { text-align: center; margin-top: 16px; }
.jj-id-lpk-compare__link { display: inline-block; color: #185FA5; text-decoration: none; font-size: 15px; font-weight: 700; padding: 10px 16px; transition: color 0.2s ease; }
.jj-id-lpk-compare__link:hover { color: #0C447C; text-decoration: underline; }

/* =============================================
   ARTIKEL PILIHAN (homepage compact, v2.5.3)
   ============================================= */
.jj-id-blog-compact { background: #FFFFFF; padding: 40px 16px 32px; }
.jj-id-blog-compact__title { font-size: 14px; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.06em; text-align: center; margin: 0 0 20px; }
.jj-id-blog-compact__list { list-style: none; margin: 0 auto; padding: 0; max-width: 480px; }
.jj-id-blog-compact__item { border-top: 1px solid #E5E7EB; }
.jj-id-blog-compact__item:last-child { border-bottom: 1px solid #E5E7EB; }
.jj-id-blog-compact__link { display: flex; flex-direction: column; gap: 6px; padding: 16px 4px; text-decoration: none; transition: background 0.15s ease; }
.jj-id-blog-compact__link:hover { background: #FAFBFC; }
.jj-id-blog-compact__cat { display: inline-block; width: fit-content; font-size: 10.5px; font-weight: 700; color: #185FA5; background: #DBEAFE; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.jj-id-blog-compact__cat--warn { color: #92400E; background: #FEF3C7; }
.jj-id-blog-compact__heading { font-size: 15px; font-weight: 700; color: #0F172A; line-height: 1.4; }
.jj-id-blog-compact__meta { font-size: 12px; color: #94A3B8; }
.jj-id-blog-compact__all { text-align: center; margin: 20px 0 0; }
.jj-id-blog-compact__all-link { color: #185FA5; text-decoration: none; font-size: 13px; font-weight: 700; }
.jj-id-blog-compact__all-link:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .jj-id-lpk-compare { padding: 40px 12px; }
    .jj-id-lpk-compare__title { font-size: 20px; }
    .jj-id-lpk-compare__row { grid-template-columns: 1fr 1fr 1.1fr; }
    .jj-id-lpk-compare__cell { padding: 10px 6px; }
    .jj-id-lpk-compare__cell--label { padding-left: 8px; font-size: 11.5px; }
    .jj-id-lpk-compare__col-title { font-size: 10.5px; }
    .jj-id-lpk-compare__txt { font-size: 10.5px; }
    .jj-id-lpk-compare__quote-line { font-size: 13px; }
    .jj-id-blog-compact { padding: 32px 12px 24px; }
    .jj-id-blog-compact__heading { font-size: 14px; }
}

/* =============================================
   STORIES BAR — WA 2-LAYER PULSE EFFECT (v2.5.4)
   Outer ring: ::after pulse expansion
   Inner: SVG icon heartbeat scale
   Scope: only .jj-id-stories__wa--pulse (story-bar WA item)
   ============================================= */
.jj-id-stories__wa--pulse {
  position: relative;
  overflow: visible;
}
.jj-id-stories__wa--pulse .jj-id-story-ring {
  position: relative;
  overflow: visible;
}
.jj-id-stories__wa--pulse .jj-id-story-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #25D366;
  pointer-events: none;
  z-index: 0;
  animation: waPulseRing 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.jj-id-stories__wa--pulse .jj-id-story-inner {
  position: relative;
  z-index: 1;
}
.jj-id-stories__wa--pulse .jj-id-story-inner svg {
  animation: waHeartbeat 1.4s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}
@keyframes waPulseRing {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes waHeartbeat {
  0%, 40%, 100% { transform: scale(1); }
  20%           { transform: scale(1.15); }
  60%           { transform: scale(1.15); }
  80%           { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .jj-id-stories__wa--pulse .jj-id-story-ring::after { animation: none; opacity: 0; }
  .jj-id-stories__wa--pulse .jj-id-story-inner svg { animation: none; }
}

/* ============================================================
   SIM Card LP v2.5.19 Phase 1 — Hero icons + WA CTA + trust badges
   Date: 2026-04-29
   Scope: page-sim-card-jepang.php only (.jjm-hero--phase1, .jjm-trust-badges)
   ============================================================ */

/* Emotional sub-copy in Hero */
.jjm-hero--phase1 .jjm-hero-sub-emo {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 14px;
  padding-right: 150px;
  color: #fff;
  text-wrap: pretty;
}
@media (min-width: 601px) {
  .jjm-hero--phase1 .jjm-hero-sub-emo {
    padding-right: 0;
    max-width: 460px;
    font-size: 19px;
  }
}
@media (max-width: 360px) {
  .jjm-hero--phase1 .jjm-hero-sub-emo { font-size: 15px; padding-right: 130px; }
}

/* 3 icons row inside Hero */
.jjm-hero--phase1 .jjm-hero-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  padding-right: 150px;
}
@media (min-width: 601px) {
  .jjm-hero--phase1 .jjm-hero-icons { padding-right: 0; }
}
@media (max-width: 360px) {
  .jjm-hero--phase1 .jjm-hero-icons { padding-right: 130px; gap: 5px; }
}
.jjm-hero--phase1 .jjm-hero-icons > span[role="listitem"] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.jjm-hero--phase1 .jjm-hero-icon-emoji {
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 360px) {
  .jjm-hero--phase1 .jjm-hero-icons > span[role="listitem"] { font-size: 11px; padding: 5px 9px; }
}

/* WhatsApp CTA inside Hero */
.jjm-hero--phase1 .jjm-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  z-index: 2;
  min-height: 48px;
  box-sizing: border-box;
}
.jjm-hero--phase1 .jjm-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}
.jjm-hero--phase1 .jjm-hero-cta svg { flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) {
  .jjm-hero--phase1 .jjm-hero-cta:hover { transform: none; }
}

/* Hero padding-bottom override for new content (icons + CTA) */
.jjm-hero--phase1 { padding-bottom: 24px; }
@media (max-width: 600px) {
  .jjm-hero--phase1 { padding: 28px 16px 24px; }
}

/* Trust Badges (replaces .jjm-main-usps for SIM card LP) */
.jjm-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 16px 0;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}
.jjm-trust-badge {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #1C2B36;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.jjm-trust-badge svg { color: #0072b1; flex-shrink: 0; }
.jjm-trust-badge span { display: block; }
@media (max-width: 360px) {
  .jjm-trust-badge { font-size: 10px; padding: 10px 6px; min-height: 72px; }
  .jjm-trust-badge svg { width: 18px; height: 18px; }
}

/* ============================================================
   SIM Card LP v2.5.20 HOTFIX (2026-04-29)
   - Hero女性写真をモバイルで下部に移動 (テキストとの重なり完全解消)
   - Hero icons → features (中黒区切りテキスト、絵文字撤去)
   - Trust badges SVG削除
   - Docomo Card 簡素化 (No.1/99%/JARINGAN TERKUAT 撤去)
   - 比較表 Bisa/Tidak テキスト化
   ============================================================ */

/* Hero v2.5.20: 写真をモバイルで下部に移動、PCでは右配置維持 */
.jjm-hero--v2520 .jjm-hero-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: auto;
}
.jjm-hero--v2520 .jjm-badge,
.jjm-hero--v2520 h1,
.jjm-hero--v2520 .jjm-hero-sub-emo,
.jjm-hero--v2520 .jjm-hero-features,
.jjm-hero--v2520 .jjm-hero-cta {
  position: relative;
  z-index: 2;
}

/* Hero h1 — padding-rightを撤廃 (重なり源を排除) */
.jjm-hero--v2520 h1 {
  padding-right: 0;
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 12px;
}
@media (max-width: 600px) {
  .jjm-hero--v2520 h1 { font-size: 22px; padding-right: 0; }
}
@media (max-width: 360px) {
  .jjm-hero--v2520 h1 { font-size: 20px; }
}

/* Hero sub emo — padding-rightを撤廃 */
.jjm-hero--v2520 .jjm-hero-sub-emo {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 14px;
  padding-right: 0;
  color: #fff;
}
@media (min-width: 601px) {
  .jjm-hero--v2520 .jjm-hero-sub-emo { font-size: 19px; max-width: 460px; }
}
@media (max-width: 360px) {
  .jjm-hero--v2520 .jjm-hero-sub-emo { font-size: 15px; }
}

/* Hero features — 中黒区切り横並びテキスト (1行維持) */
.jjm-hero--v2520 .jjm-hero-features {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding-right: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.jjm-hero--v2520 .jjm-hero-features > span[role="listitem"] {
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  display: inline;
}
.jjm-hero--v2520 .jjm-hero-features .jjm-sep {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  padding: 0 2px;
}
@media (max-width: 360px) {
  .jjm-hero--v2520 .jjm-hero-features { font-size: 13px; gap: 6px; }
}

/* Hero CTA — 引き続き緑、視認性UP */
.jjm-hero--v2520 .jjm-hero-cta {
  display: inline-flex;
  align-self: flex-start;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  margin: 4px 0 12px;
  align-items: center;
  gap: 8px;
}
.jjm-hero--v2520 .jjm-hero-cta svg { flex-shrink: 0; }
.jjm-hero--v2520 .jjm-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
@media (prefers-reduced-motion: reduce) {
  .jjm-hero--v2520 .jjm-hero-cta:hover { transform: none; }
}

/* 写真: モバイル=下部に独立配置 / PC=右絶対配置維持 */
@media (max-width: 600px) {
  .jjm-hero--v2520 .jjm-hero-cutout {
    position: static;
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 16px auto 0;
    display: block;
    top: auto;
    right: auto;
  }
}
@media (min-width: 601px) {
  .jjm-hero--v2520 .jjm-hero-cutout {
    position: absolute;
    right: 0;
    top: 30px;
    width: 240px;
    height: auto;
    margin: 0;
  }
  .jjm-hero--v2520 .jjm-hero-inner { padding-right: 260px; min-height: 280px; }
}

/* Heroセクション padding統一 */
.jjm-hero--v2520 { padding: 28px 16px 32px; }
@media (min-width: 601px) {
  .jjm-hero--v2520 { padding: 48px 16px 40px; }
}

/* Docomo Card 簡素版 (No.1誇張ブロック削除に対応) */
.jjm-no1-card--simple {
  display: block !important;
  text-align: center;
  padding: 18px 22px;
}
.jjm-no1-card--simple .jjm-no1-text {
  border-left: 0;
  padding-left: 0;
}
.jjm-no1-card--simple .jjm-no1-title {
  font-size: 22px;
  font-weight: 900;
  color: #1C2B36;
  margin-bottom: 6px;
}
.jjm-no1-card--simple .jjm-no1-sub {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
}

/* Trust Badges v2.5.20: SVGアイコン削除に対応、min-height縮小 */
.jjm-trust-badge svg { display: none !important; }
.jjm-trust-badge {
  min-height: 64px;
  padding: 14px 8px;
  gap: 0;
}
@media (max-width: 360px) {
  .jjm-trust-badge { min-height: 58px; padding: 12px 6px; font-size: 10px; }
}

/* 比較表 Bisa/Tidak テキスト化 */
.jjm-comp-table .jjm-bisa {
  color: #10B981;
  font-weight: 800;
  font-size: 13px;
}
.jjm-comp-table .jjm-tidak {
  color: #94A3B8;
  font-weight: 600;
  font-size: 13px;
}
.jjm-comp-table th,
.jjm-comp-table td {
  padding: 10px 12px;
}

/* Berapa GB grid: v2.5.21 でロゴSVG復活、display:none を解除 */
/* (v2.5.20 で .jjm-gb-card .jjm-gb-icon { display: none } を削除) */
.jjm-gb-card { padding-top: 14px !important; }

/* ============================================================
   SIM Card LP v2.5.21 ICON RESTORATION (2026-04-29)
   - 配送タイムライン: Bayar/eSIM/Pengiriman SVG 復活
   - Indonesia vs Jepang: 国旗 + 施設 + WA/Telepon SVG 復活
   - Nomor Jepang 6機能カード: SVGアイコン復活
   - Berapa GB: TikTok/IG/WA/YT/Game/Netflix ブランドロゴ復活
   ============================================================ */
