.elementor-5839 .elementor-element.elementor-element-147db699{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:1366px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS for text-editor, class: .elementor-element-49189719 *//* pricing-policy.css */

:root {
  --policy-bg: #f3f7fc;
  --policy-surface: #ffffff;
  --policy-surface-soft: #f8fbff;
  --policy-text: #1f2937;
  --policy-muted: #667085;
  --policy-line: #e5e7eb;
  --policy-primary: #2563eb;
  --policy-primary-soft: #eff6ff;
  --policy-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --policy-radius: 24px;
  --policy-max-width: 860px;
}

.policy-page {
  padding: clamp(20px, 4vw, 48px) 16px;
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, var(--policy-bg) 100%);
}

.policy-article,
.policy-article *,
.policy-article *::before,
.policy-article *::after {
  box-sizing: border-box;
}

.policy-article {
  max-width: var(--policy-max-width);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  background: var(--policy-surface);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  box-shadow: var(--policy-shadow);
  color: var(--policy-text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic UI",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.policy-article h1,
.policy-article h2,
.policy-article h3 {
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #111827;
}

.policy-article h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
}

.policy-article h2 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-left: 18px;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 750;
}

.policy-article h2::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--policy-primary);
  transform: translateY(-50%);
}

.policy-article h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #1d4ed8;
}

.policy-article p {
  margin: 0 0 1.15em;
  color: var(--policy-text);
}

.policy-article > p:first-of-type {
  font-size: 1.04rem;
  color: #344054;
}

.policy-article strong {
  color: #0f172a;
  font-weight: 750;
}

.policy-article hr {
  margin: 34px 0;
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(148, 163, 184, 0.45) 20%,
    rgba(148, 163, 184, 0.45) 80%,
    transparent 100%
  );
}

.policy-article ul {
  list-style: none;
  margin: 1rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 12px;
}

.policy-article li {
  position: relative;
  padding: 14px 16px 14px 24px;
  background: var(--policy-surface-soft);
  border: 1px solid var(--policy-line);
  border-radius: 16px;
}

.policy-article li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--policy-primary);
}

.policy-article li p {
  margin: 0;
}

.policy-note {
  margin: 22px 0 28px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--policy-primary-soft), #f8fbff);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-left: 4px solid var(--policy-primary);
  border-radius: 16px;
  color: #1e3a8a;
  font-size: 0.98rem;
}

.policy-note strong {
  color: #1d4ed8;
}

.policy-article a {
  color: var(--policy-primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  transition: opacity 0.2s ease;
}

.policy-article a:hover {
  opacity: 0.75;
}

.policy-article br + strong {
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .policy-page {
    padding: 16px 12px 28px;
  }

  .policy-article {
    padding: 20px 16px 28px;
    border-radius: 20px;
  }

  .policy-article h2 {
    margin-top: 32px;
  }

  .policy-article hr {
    margin: 28px 0;
  }

  .policy-article li {
    padding: 13px 14px 13px 22px;
    border-radius: 14px;
  }

  .policy-article li::before {
    top: 22px;
  }
}/* End custom CSS */