/* =====================================================
   PIMカード — Standalone CSS
   ===================================================== */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- Design Tokens ----- */
:root {
  --teal: #237373;
  --teal-dark: #185a5a;
  --navy: #07166c;
  --navy-light: #1a2d8a;
  --header-blue-start: #0c1e96;
  --header-blue-end:   #1a4fc4;
  --bg-light: #f7f9fc;
  --bg-dark: #0a1540;
  --text-muted: #666;
  --border: #e0e6ef;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(7,22,108,0.08);
  --shadow-hover: 0 8px 32px rgba(7,22,108,0.15);
  --max-w: 1100px;
  --header-h: 64px;
}

/* ----- Utilities ----- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 12px auto 40px;
  text-align: center;
}
.section-cta { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pc-only { display: inline; }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-dark:hover { background: var(--teal); color: #fff; }
/* Header buttons */
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); font-size: 0.82rem; padding: 8px 18px; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; font-size: 0.82rem; padding: 8px 18px; }
.btn-white:hover { background: rgba(255,255,255,.85); transform: translateY(-1px); }

/* =====================================================
   HEADER  — dark navy + asymmetric SVG wave
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #07166c;
  box-shadow: 0 2px 20px rgba(7,22,108,0.35);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
/* Ensure header-inner content stays above the wave */
.header-inner { position: relative; z-index: 2; }
.nav { display: flex; align-items: center; gap: 20px; flex: 1; }
.nav a {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav a:hover { color: #fff; border-color: rgba(255,255,255,.7); }
.header-btns { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* Wave SVG that flows below the header and covers any gap with the hero */
.header-wave {
  position: absolute;
  bottom: -53px;
  left: 0;
  width: 100%;
  height: 54px;
  pointer-events: none;
  z-index: 1;
}
.header-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* =====================================================
   HERO  — hero2.avif, text on right
   ===================================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
/* Gradient: transparent left (woman visible) → dark right (text readable) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(7,22,108,.80) 0%,
    rgba(7,22,108,.55) 42%,
    rgba(7,22,108,.15) 70%,
    transparent 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
/* Push text to right side */
.hero-push { flex: 1; }
.hero-text { flex: 0 0 auto; max-width: 500px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
  display: block;
}
.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 8px;
}
.hero-text h1 span { color: #7ee8e8; }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  margin: 16px 0 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }

/* =====================================================
   ABOUT
   ===================================================== */
.section-about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-col-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-col-right {
  display: flex;
  flex-direction: column;
}
.about-text h2, .about-strength h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-text p { color: #444; margin-bottom: 16px; }

/* About image - book illustration style */
.about-image-wrap {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.about-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(7,22,108,0.12);
}

.strength-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.strength-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.strength-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.strength-list li div { font-size: 0.92rem; color: #333; line-height: 1.6; }
.strength-list li strong { color: var(--navy); }

@media (min-width: 768px) {
  .about-col-right { border-left: 1px solid var(--border); padding-left: 48px; }
}

/* =====================================================
   PRICING  — 2-column on PC
   ===================================================== */
.section-pricing { background: var(--bg-dark); color: #fff; }
.section-pricing .section-eyebrow { color: #7ee8e8; text-align: center; }
.section-pricing h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}
.section-pricing .section-lead { color: rgba(255,255,255,.7); }

/* 2-column layout on PC */
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 8px;
}
.pricing-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.pricing-table th {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pricing-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 0.95rem;
  text-align: right;
}
.pricing-table tr:hover td { background: rgba(255,255,255,.04); }
.pricing-table .qty { color: rgba(255,255,255,.65); font-size: 0.9rem; }
.pricing-table .price { color: #7ee8e8; font-weight: 700; font-size: 1rem; }
.pricing-table .muted { color: rgba(255,255,255,.35); }
.pricing-storage {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.1);
  align-self: start;
}
.pricing-storage h3 { font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 14px; letter-spacing: .05em; text-align: center; }
.storage-table { border-collapse: collapse; margin-left: auto; }
.storage-table tr { border-bottom: none; }
.storage-table td { padding: 5px 0; font-size: 0.9rem; color: rgba(255,255,255,.65); }
.storage-label { text-align: right; white-space: nowrap; }
.storage-table .storage-price { text-align: right; white-space: nowrap; padding-left: 3em; }
.storage-table strong { color: #fff; }

/* =====================================================
   USE CASES
   ===================================================== */
.section-usecases { background: #fff; }
.section-usecases .section-eyebrow { text-align: center; }
.section-usecases h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.usecase-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.usecase-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.usecase-img { width: 100%; height: 200px; overflow: hidden; }
.usecase-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.usecase-img img.img-bottom { object-position: center bottom; }
.usecase-card:hover .usecase-img img { transform: scale(1.03); }
.usecase-body { padding: 20px 22px 24px; }
.usecase-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.usecase-body p { font-size: 0.88rem; color: #555; line-height: 1.75; }

/* 5枚目：ワイドカード（PC: 左画像 + 右テキスト） */
.usecase-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 28px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.usecase-card-wide:hover { box-shadow: var(--shadow-hover); }
.usecase-wide-img {
  overflow: hidden;
  /* No max-height — let the image show at natural height */
}
.usecase-wide-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
}
.usecase-wide-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.usecase-wide-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.usecase-wide-body p { font-size: 0.88rem; color: #555; line-height: 1.8; }

/* =====================================================
   PROCESS  — screenshot style step bars
   ===================================================== */
.section-process { background: #f4f4f4; }
.process-title-bar {
  background: var(--navy);
  padding: 20px 0;
}
.process-title-bar h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  text-align: center;
}
.process-lead-wrap { padding: 24px 24px 8px; text-align: center; }
.process-lead-text { font-size: 0.95rem; color: #555; line-height: 1.8; }

.process-step-block { margin-bottom: 0; }
.process-step-header {
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 0;
  margin-top: 24px;
}
.process-step-header .container { padding-left: 24px; padding-right: 24px; }
.process-step-body {
  padding: 24px 24px 8px;
  font-size: 0.93rem;
  color: #333;
  line-height: 1.8;
}
.process-step-body p { margin-bottom: 12px; }

/* Nuritasi grid (STEP1) */
.nuritasi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.nuritasi-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.nuritasi-item img { width: 90px; flex-shrink: 0; border-radius: 4px; }
.nuritasi-desc { font-size: 0.85rem; color: #444; line-height: 1.7; }
.nuritasi-label { font-weight: 700; margin-bottom: 6px; }
.nuritasi-red { color: #c0392b; }
.nuritasi-blue { color: #2980b9; }

/* STEP2 2-column */
.process-step2-body {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step2-form-img { flex-shrink: 0; width: 220px; }
.step2-form-img img { border-radius: 6px; border: 1px solid #ddd; }
.step2-text { flex: 1; }

.process-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  background: rgba(35,115,116,.08);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--teal);
  margin-top: 8px;
}

/* =====================================================
   FAQ
   ===================================================== */
.section-faq { background: var(--bg-light); }
.section-faq .section-eyebrow { text-align: center; }
.section-faq h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  margin-top: -1px;
}

/* =====================================================
   CONTACT
   ===================================================== */
.section-contact { background: var(--navy); color: #fff; }
.section-contact .section-eyebrow { color: #7ee8e8; text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.section-contact h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 20px; }
.section-contact p { color: rgba(255,255,255,.8); margin-bottom: 12px; }
.contact-btn { margin: 24px 0 0; }
.contact-note { font-size: 0.85rem; color: rgba(255,255,255,.5); margin-top: 12px; }
.contact-note a { color: rgba(255,255,255,.75); text-decoration: underline; }
.contact-info {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  text-align: left;
}
.contact-info p { font-size: 0.88rem; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.contact-info a { color: #7ee8e8; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: #040e2e; color: rgba(255,255,255,.5); padding: 24px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.82rem; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-nav a:hover { color: #fff; }

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE — Tablet (max 900px)
   ===================================================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-col-left { gap: 24px; }
  .about-image { max-width: 100%; }
  .usecase-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pricing-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* =====================================================
   RESPONSIVE — Mobile (max 767px)
   ===================================================== */
@media (max-width: 767px) {
  :root { --header-h: 56px; }
  .section { padding: 56px 0; }
  .pc-only { display: none; }

  /* Header mobile */
  .header-btns { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
    gap: 0;
    border-radius: 0 0 16px 16px;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 1rem;
    color: rgba(255,255,255,.9);
  }
  .nav a:last-child { border-bottom: none; }
  /* Remove wave on mobile to avoid nav dropdown overlap */
  .header-wave { display: none; }

  /* Hero mobile: keep row layout — text stays on right side */
  .hero { min-height: 440px; }
  .hero-inner {
    padding-top: 60px;
    padding-bottom: 48px;
  }
  .hero-push { flex: 0 0 36%; min-width: 0; }
  .hero-text { flex: 1; max-width: none; min-width: 0; text-align: right; }
  .hero-text h1 { font-size: 1.4rem; }
  .hero-desc { text-align: right; }
  .hero-btns { flex-direction: column; align-items: flex-end; }
  .btn { padding: 12px 26px; font-size: 0.9rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-col-left { gap: 24px; }
  .about-image-wrap { max-width: 100%; }

  /* Pricing */
  .pricing-inner { grid-template-columns: 1fr; }

  /* Use cases */
  .usecase-grid { grid-template-columns: 1fr; gap: 20px; }
  /* 5枚目 wide card: mobile = stacked */
  .usecase-card-wide { grid-template-columns: 1fr; }
  .usecase-wide-body { padding: 18px 20px 22px; }
  .usecase-wide-body p { font-size: 0.82rem; }

  /* Process — nuritasi images: keep horizontal layout, limit image to ~1/3 width */
  .nuritasi-item { flex-direction: row; align-items: flex-start; }
  .nuritasi-item img { width: calc(33vw - 16px); max-width: 110px; flex-shrink: 0; }
  .nuritasi-grid { grid-template-columns: 1fr; }
  .process-step2-body { flex-direction: column; }
  .step2-form-img { width: 100%; }
  .process-step-header { font-size: 0.9rem; }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; font-size: 0.9rem; }
  .faq-answer { padding: 0 18px 16px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
}

/* =====================================================
   RESPONSIVE — Small mobile (max 430px)
   ===================================================== */
@media (max-width: 430px) {
  .hero-text h1 { font-size: 1.5rem; }
  .section-lead { font-size: 0.92rem; }
  /* Keep nuritasi images small even on very small screens */
  .nuritasi-item { flex-direction: row; align-items: flex-start; }
  .nuritasi-item img { width: calc(33vw - 12px); max-width: 100px; }
}

/* =====================================================
   MODALS — Policy dialogs
   ===================================================== */
.policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.policy-modal.active {
  display: flex;
}

.policy-modal-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  padding: 32px 32px 32px 32px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.policy-modal-close:hover {
  color: var(--navy);
}

.policy-content {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.policy-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 12px;
}

.policy-content h3:first-child {
  margin-top: 0;
}

.policy-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-content p {
  margin-bottom: 12px;
  word-break: break-word;
}

.policy-content ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.policy-content li {
  list-style-type: disc;
  margin-bottom: 6px;
}

.policy-content strong {
  font-weight: 600;
  color: var(--navy);
}

/* Mobile modal adjustments */
@media (max-width: 767px) {
  .policy-modal-content {
    width: 95%;
    max-height: 85vh;
    padding: 24px 20px;
  }

  .policy-modal-close {
    top: 12px;
    right: 12px;
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .policy-content {
    font-size: 13px;
  }

  .policy-content h3 {
    font-size: 16px;
    margin-top: 16px;
  }

  .policy-content h4 {
    font-size: 13px;
    margin-top: 12px;
  }
}
