/* ============================================
   Bright Me!! BPO — fujiko-san.com style
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --accent-yellow: #fde047;
  --accent-yellow-soft: #fef9c3;
  --orange: #e8701a;
  --orange-light: #fff7ed;
  --navy: #111827;
  --text: #374151;
  --text-sub: #6b7280;
  --bg: #ffffff;
  --bg-gray: #f8f9fb;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.pc { display: inline; }
@media (max-width: 768px) { .pc { display: none; } }

/* ========================
   Header
   ======================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 72px;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  margin-right: auto;
}
.logo span {
  font-weight: 600;
  color: var(--text-sub);
  font-size: 1.05rem;
  margin-left: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 24px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.2s;
}
.nav a:hover { color: var(--navy); }
.header-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary);
  padding: 10px 28px;
  border-radius: 100px;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--primary-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

/* ========================
   Hero — full-bleed bg image
   ======================== */
.hero {
  min-height: 100vh;
  background:
    url('hero.png') no-repeat right bottom / auto 100%,
    #fff;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 56px;
  width: 100%;
}
.hero-content > * {
  max-width: 52%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-yellow-soft);
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-badge span {
  background: #f97316;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero h1 span { display: block; }
.hero h1 span.no-break { white-space: nowrap; }
.hero-catch {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 22px;
  line-height: 1.7;
}
.hero-catch-pop {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.hero-catch-support {
  display: inline-block;
  font-size: 1.15em; /* 少しだけ大きく強調 */
  font-weight: 900;
  color: var(--orange);
}
.hero-price {
  font-family: 'Inter', sans-serif;
  font-size: 2.0rem;
  font-weight: 900;
  color: var(--orange);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--primary);
  padding: 20px 64px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  transition: background 0.2s, box-shadow 0.2s;
}
.hero-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(37,99,235,0.4);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-sub);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-light);
}
.hero-trust span::before {
  content: '★';
  color: #f97316;
  font-size: 0.85rem;
}

/* ========================
   Section Common
   ======================== */
.section { padding: 96px 0; }
.section-white { background: var(--bg); }
.section-gray { background: var(--bg-gray); }
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-en {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.5;
}
.section-lead {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-sub);
  line-height: 2.1;
  max-width: 780px;
  margin: 0 auto;
}
.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-sub);
  margin-bottom: 56px;
}

/* ========================
   Feature
   ======================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-image {
  width: 100%;
  height: 140px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image svg {
  width: 100%;
  height: 100%;
  display: block;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); }
.feature-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ========================
   Service
   ======================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-item {
  text-align: center;
  padding: 18px 18px;
  background: var(--bg-gray);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.service-item:hover { box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.service-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-item p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Service -> Plan spacing (LPの余白を詰める) */
#service.section { padding-bottom: 60px; }
#plan.section { padding-top: 60px; }

/* ========================
   Table (Comparison + Plan)
   ======================== */
.table-wrap {
  overflow-x: auto;
  margin-top: 40px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
  min-width: 640px;
}
thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  padding: 16px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}
thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}
thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}
.th-hl { background: var(--primary); }
td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.td-label {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-gray);
  white-space: nowrap;
}
.td-hl {
  background: var(--primary-light);
  color: var(--navy);
  font-weight: 600;
}

/* Plan table specifics */
.plan-table thead th { font-size: 0.95rem; }
.plan-th-trial {
  background: var(--orange);
}
.plan-th-rec {
  background: var(--primary);
}
.plan-label-trial,
.plan-label-rec {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  opacity: 0.85;
}
.plan-td-trial { background: var(--orange-light); }
.plan-td-rec { background: var(--primary-light); }
.plan-price-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}
.plan-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-top: 24px;
}
.plan-cta {
  text-align: center;
  margin-top: 36px;
}

/* ========================
   CTA Button (large)
   ======================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--primary);
  padding: 16px 56px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--primary-dark); }
.cta-btn-full { width: 100%; max-width: 400px; display: block; margin: 0 auto; }

/* ========================
   Voice
   ======================== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.voice-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}
.voice-card:hover { box-shadow: var(--shadow-lg); }
.voice-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.voice-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.voice-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.voice-meta {
  font-size: 0.8rem;
  color: var(--text-sub);
}
.voice-body {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
}
.voice-result {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.voice-result span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-sub);
  background: var(--bg-gray);
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 10px;
}

/* ========================
   Flow
   ======================== */
.flow-grid {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-gray);
  border-radius: var(--radius);
}
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.flow-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
}
.flow-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 48px;
  color: var(--text-sub);
  font-size: 1.2rem;
}
.flow-arrow::after { content: '→'; }

/* ========================
   FAQ
   ======================== */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  padding: 24px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--text-sub);
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
  content: '−';
}
.faq-q:hover { color: var(--primary); }
.faq-a {
  display: none;
  padding-bottom: 20px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 2;
}

/* ========================
   Contact / CTA Section
   ======================== */
.section-cta {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
}
.cta-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-lead {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 24px;
}
.cta-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cta-checks span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-checks span::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
.req {
  font-size: 0.7rem;
  color: #ef4444;
  margin-left: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; }
.contact-form .cta-btn { margin-top: 8px; }

/* ========================
   Footer
   ======================== */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.4);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}
.footer-logo span {
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}
.footer-bottom nav {
  display: flex;
  gap: 16px;
}
.footer-bottom nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-bottom nav a:hover { color: rgba(255,255,255,0.6); }

/* ========================
   Responsive
   ======================== */
@media (max-width: 768px) {
  body { font-size: 15px; }

  .nav, .header-cta { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .hamburger { display: flex; }

  .hero {
    min-height: auto;
    background-size: auto 100%;
    background-position: right bottom;
    padding-bottom: 0;
  }
  .hero-content {
    padding: 80px 20px 200px;
  }
  .hero h1 { font-size: 2.1rem; }
  .hero h1 span.no-break { white-space: normal; }
  .hero-content > * {
    max-width: 100%;
  }
  .hero h1 { font-size: 2rem; }
  .hero-catch { font-size: 1.15rem; }
  .hero-price { font-size: 1.4rem; }

  .section { padding: 80px 0; }
  .section-title { font-size: 1.8rem; }

  .feature-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid { grid-template-columns: 1fr; }

  .flow-grid { flex-direction: column; }
  .flow-arrow {
    justify-content: center;
    padding-top: 0;
    transform: rotate(90deg);
  }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }

  .footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .cta-checks { flex-direction: column; align-items: center; gap: 10px; }
}

/* ============================================
   Additional Sections: Quality, Security, SLA, Org, Case Study
   ============================================ */

/* F: Quality */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.quality-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.quality-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 10px;
  -webkit-text-stroke: 1px var(--primary);
}

.quality-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.quality-item p {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.9;
}

/* G: Security Policy */
.security-policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.sp-item {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-left: 3px solid var(--primary);
}

.sp-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.sp-item p {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* J: Organization */
.org-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.org-item {
  flex: 1;
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
}

.org-role {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 100px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 10px;
}

.org-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.org-item p {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.8;
  text-align: left;
}

.org-arrow {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: var(--text-sub);
  padding-top: 48px;
}

/* I: Case Study */
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.case-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.case-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.case-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.case-label {
  flex: 0 0 70px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 3px 10px;
  border-radius: 4px;
  text-align: center;
  margin-top: 2px;
}

.case-row p {
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .quality-grid { grid-template-columns: 1fr; }
  .security-policy-grid { grid-template-columns: 1fr; }
  .org-grid { flex-direction: column; }
  .org-arrow { transform: rotate(90deg); justify-content: center; padding: 0; }
  .case-row { flex-direction: column; gap: 4px; }
  .case-label { flex: none; align-self: flex-start; }
}
