:root {
  --blue: #00178c;
  --blue-dk: #093A95;
  --pale: #F5FAFE;
  --orange: #e58100;
  --red: #e8412e;
  --text: #333;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN","Meiryo",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans JP",sans-serif;
  color: var(--text);
  line-height: 1.9;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: min(1120px,92%);
  margin-inline: auto;
}

.container.narrow {
  width: min(980px,92%);
}

.container.medium {
  width: min(860px,92%);
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0 0 .6em;
}

h1 {
  font-size: clamp(20px,3.2vw,32px);
  color: var(--blue);
  font-weight: 700;
}

h2 {
  font-size: clamp(20px,2.4vw,28px);
}

h3 {
  font-size: clamp(18px,2vw,22px);
}

.lead {
  font-size: clamp(14px,1.6vw,16px);
  margin: .25rem 0 1rem;
}

.title-blue {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 2rem;
}

.title-sonota2 {
  color: #333;
  font-weight: 700;
}

mark {
  background: #ffe169;
  padding: .05em .25em;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.mt-32 {
  margin-top: 32px;
}

.mt-64 {
  margin-top: 64px;
}

.img-fluid {
  display: block;
  width: 100%;
}

.img-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.grid {
  display: grid;
}

.cols-2 {
  grid-template-columns: .85fr 1.15fr;
}

.gap-40 {
  gap: 40px;
}

.gap-24 {
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.logo img {
  height: 42px;
}

.main-nav .nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 10px 6px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.nav-cta a {
  background: var(--orange);
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.section {
  padding: 64px 0;
}

.section-pale {
  background: var(--pale);
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 62px solid transparent;
  border-right: 62px solid transparent;
  border-top: 42px solid #00A0D9;
  margin: 0 auto;
}

#solution .triangle-down {
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .1em;
  color: var(--blue);
  font-weight: 700;
}

.pain-solution {
  margin: 0;
  padding: 0;
}

.ps-item {
  margin: 0 0 12px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.ps-pain {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(15px, 1.7vw, 18px);
  color: #0f2a4f;
}

.ps-pain mark {
  padding: .1em .25em;
  border-radius: .35em;
}

.ps-solution {
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: 1.6em 1fr;
  gap: 8px;
  align-items: start;
  line-height: 1.8;
  color: #223047;
  font-size: clamp(14px, 1.6vw, 16px);
}

.ps-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 999px;
  background: rgba(10,36,99,.10);
  color: #0a2463;
  font-weight: 800;
  transform: translateY(2px);
}

.ps-solution-text strong {
  font-weight: 800;
  color: #0a2463;
}

@media (hover:hover) {
  .ps-item {
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  }

  .ps-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.06);
    border-color: rgba(10,36,99,.18);
  }
}

@media (max-width: 520px) {
  .ps-item {
    padding: 12px 12px 10px;
  }

  .ps-solution {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ps-arrow {
    width: fit-content;
    padding: 0 .6em;
    height: auto;
    border-radius: 999px;
    transform: none;
  }
}

.cards-3 {
  grid-template-columns: repeat(3,1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e7eef6;
}

.card h3 {
  color: #222;
  font-weight: 700;
  margin: .3rem 0 .6rem;
}

.card p {
  margin: .4rem 0 0;
}

.footer-cta {
  background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("./img/ctaback.webp")
    center/cover no-repeat;
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.footer-cta h2 {
  color: #fff;
}

.boxed {
  border: 1px solid #cfe2ff;
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  max-width: 500px;
  margin-inline: auto;
}

.faq .faq-a {
  margin-bottom: 16px;
}

.faq .faq-item:last-child .faq-a {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #e7eef6;
  border-radius: 8px;
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  border: 1px solid #e7eef6;
  padding: 12px;
  vertical-align: top;
  word-break: break-word;
}

.price-table thead th {
  background: #eef6ff;
  vertical-align: middle;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  width: 30%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  width: 54%;
}

.price-table th:nth-child(3) {
  width: 16%;
}

.price-table td:nth-child(3) {
  width: 20%;
  text-align: right;
  white-space: nowrap;
}

.price-table td:nth-child(3).center {
  text-align: center;
  white-space: normal;
}

.price-table td ul {
  padding-left: 1.1em;
  margin: .2em 0 0;
  list-style-position: outside;
}

.price-table td ul li {
  margin: .25em 0;
  padding-left: 0;
  text-indent: 0;
}

.notes {
  font-size: 14px;
  margin-top: 14px;
  max-width: 840px;
  margin-inline: auto;
  text-align: left;
}

.expert-leader-card {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,23,140,0.05);
}

.expert-leader-flex {
  display: flex;
  gap: 32px;
  align-items: center;
}

.expert-leader-img {
  flex: 0 0 200px;
}

.expert-leader-img img {
  width: 100%;
  border-radius: 8px;
}

.expert-post {
  color: var(--blue);
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}

.expert-name {
  font-size: 24px;
  margin-bottom: 12px;
}

.expert-name span {
  font-size: 16px;
  font-weight: normal;
  color: #666;
}

.expert-msg {
  font-style: italic;
  line-height: 1.7;
}

.expert-card {
  text-align: center;
  padding: 24px;
}

.expert-header {
  margin-bottom: 16px;
}

.expert-thumb {
  width: 150px;
  height: 180px;
  border-radius: 10%;
  background: #eee;
  margin-bottom: 12px;
}

.expert-tag {
  display: inline-block;
  background: var(--pale);
  color: var(--blue);
  font-size: 14px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.expert-card-name {
  margin: 0;
  font-size: 18px;
}

.expert-stats {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.expert-stats li {
  font-size: 16px;
}

.expert-stats span {
  display: block;
  font-size: 16px;
  color: #888;
}

.expert-stats strong {
  font-size: 18px;
  color: var(--blue);
}

.expert-skill-label {
  font-size: 16px;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .cards-2,
.cards-3 {
    grid-template-columns: 1fr;
  }
}

#voices .voice-list {
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

#voices .voice {
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 20px;
  row-gap: 16px;
  align-items: start;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 28px 30px;
  background: #fff;
}

#voices .voice-img {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

#voices .voice-img .img-circle {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

#voices .voice-body {
  display: contents;
}

#voices .voice-name {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: #222;
  font-weight: 700;
}

#voices .voice-points {
  grid-column: 1 / -1;
  margin: 0;
}

#voices .voice-points dt {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin: 0 0 10px;
  border: 1px solid #d9e4f1;
  border-radius: 9px;
  background: #f4f8fc;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

#voices .voice-points dd {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

#voices .voice-points dd:last-child {
  margin-bottom: 0;
}

#voices .voice-quote {
  margin-top: 2px;
  padding: 16px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
}

@media (max-width: 768px) {
  #voices .voice {
    grid-template-columns: 72px 1fr;
    column-gap: 14px;
    row-gap: 14px;
    padding: 20px 16px;
  }

  #voices .voice-img .img-circle {
    width: 64px;
    height: 64px;
  }

  #voices .voice-name {
    font-size: 18px;
    line-height: 1.5;
  }

  #voices .voice-points dt {
    font-size: 13px;
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  #voices .voice-points dd {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
  }

  #voices .voice-quote {
    padding: 14px;
  }
}

.flow-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  border: 1px solid #e7eef6;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}

.flow-icon img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

#knowledge .knowledge-head {
  max-width: 860px;
  margin-inline: auto;
}

#knowledge .knowledge-experts {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #dfe8f4;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

#knowledge .knowledge-mini {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#knowledge .knowledge-experts-copy h3 {
  color: #222;
  margin-bottom: 12px;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.5;
}

#knowledge .knowledge-experts-copy p:last-child {
  margin-bottom: 0;
}

#knowledge .knowledge-expert-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

#knowledge .knowledge-expert {
  margin: 0;
  width: 120px;
}

#knowledge .knowledge-expert img {
  display: block;
  width: 116px;
  height: 144px;
  object-fit: cover;
  border-radius: 4px;
  border: 0px solid #dfe8f4;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

#knowledge .knowledge-list {
  display: grid;
  gap: 20px;
}

#knowledge .knowledge-card {
  background: #fff;
  border: 1px solid #dfe8f4;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}

#knowledge .knowledge-card-body {
  padding: 24px 24px 22px;
}

#knowledge .knowledge-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px;
  padding: 3px 10px 2px 10px;
  border-radius: 9px;
  background: var(--blue);
  color: #F5FAFE;
  font-size: 16px;
  font-weight: 700;
}

#knowledge .knowledge-title {
  margin: 0 0 14px;
  color: #222;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.5;
}

#knowledge .knowledge-summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #333;
}

#knowledge .knowledge-link-wrap {
  margin: 18px 0 0;
  text-align: right;
}

#knowledge .knowledge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

#knowledge .knowledge-link::after {
  content: "→";
  font-size: 14px;
}

#knowledge .knowledge-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  #knowledge .knowledge-experts {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 16px;
  }

  #knowledge .knowledge-experts-copy h3 br {
    display: none;
  }

  #knowledge .knowledge-expert-list {
    justify-content: center;
    gap: 10px;
  }

  #knowledge .knowledge-expert {
    width: calc((100% - 20px) / 3);
    max-width: 96px;
  }

  #knowledge .knowledge-expert img {
    width: 100%;
    height: 116px;
  }

  #knowledge .knowledge-card-body {
    padding: 20px 16px 18px;
  }

  #knowledge .knowledge-title {
    font-size: 18px;
  }

  #knowledge .knowledge-summary {
    font-size: 14px;
    line-height: 1.85;
  }
}

.cta {
  background: linear-gradient(180deg, var(--blue-100, #EEF3FF), #fff);
}

#cta.section {
  padding: 0;
}

#cta > .cta {
  padding: 64px 0;
}

.bordered {
  border: 1px solid #e7eef6;
  border-radius: 10px;
  padding: 22px;
  background: #fff;
}

#about .company-info {
  padding: 24px;
  border-radius: 12px;
}

#about .company-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: start;
}

#about .company-text h2 {
  margin: 0 0 8px;
}

#about .company-image {
  grid-row: 1;
  grid-column: 2;
  align-self: start;
  justify-self: center;
}

@media (max-width: 720px) {
  #about .company-grid {
    grid-template-columns: 1fr;
  }

  #about .company-image {
    grid-column: 1;
    grid-row: auto;
  }
}

.site-footer {
  background: var(--blue-dk);
  color: #fff;
  padding: 18px 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .cols-2 {
    grid-template-columns: 1fr;
  }

  .rev-on-mobile {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .main-nav .nav-list {
    gap: 10px;
  }

  .nav-cta a {
    padding: 8px 12px;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .voice {
    grid-template-columns: 80px 1fr;
  }

  .img-circle {
    width: 100px;
    height: 100px;
  }

  .flow-item {
    grid-template-columns: 72px 1fr;
  }

  .flow-icon img {
    width: 72px;
    height: 72px;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: flex-start;
  }

  .logo img {
    height: 39px;
  }
}

@media (max-width:540px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    flex-direction: row;
    gap: 0;
    padding: 10px 0;
    justify-content: flex-start;
  }
}

.sp-only {
  display: none;
}

.outcome-box {
  max-width: 780px;
}

.cta-small {
  max-width: 760px;
  margin: 16px auto 24px;
  font-size: 15px;
  line-height: 1.8;
}

#comparison .card strong {
  color: var(--blue);
}

#outcomes .check-list {
  font-weight: 700;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid #E5EAF1;
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-card-icon {
  flex: 0 0 auto;
  padding-top: 4px;
}

.check-circle {
  width: 40px;
  height: 40px;
  background-color: #0A2463;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-card-body {
  flex: 1;
}

.feature-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
}

.feature-card-body p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 20px;
    gap: 16px;
  }

  .check-circle {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.reason-card {
  position: relative;
  background-color: #F7F9FC;
  border-radius: 24px;
  padding: 40px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.reason-card:hover {
  border-color: #E58100;
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.reason-card-num {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 8.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--blue);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: all 0.3s ease;
  z-index: 1;
  font-family: sans-serif;
}

.reason-card:hover .reason-card-num {
  opacity: 0.1;
  transform: translateY(-5px);
}

.reason-card h3 {
  position: relative;
  z-index: 10;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
  padding-right: 60px;
}

.reason-card p {
  position: relative;
  z-index: 10;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .reason-card {
    padding: 30px 20px;
  }

  .reason-card-num {
    font-size: 5rem;
    top: 5px;
    right: 10px;
  }

  .reason-card h3 {
    font-size: 1.2rem;
    padding-right: 0;
  }
}

.cta-phone-wrap {
  text-align: center;
  margin: 14px auto 28px;
}

.cta-phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 310px;
  max-width: 100%;
  height: 48px;
  padding: 0 22px;
  border: 3px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 23, 140, .18);
  transition: background .2s ease,
    color .2s ease,
    box-shadow .2s ease,
    transform .2s ease,
    border-color .2s ease;
}

.cta-phone-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid rgba(0, 23, 140, .22);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.cta-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e58100;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.cta-phone-number {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  transform: translateY(1px);
}

.cta-phone-time {
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: #666;
}

.cta-phone-button:hover,
.cta-phone-button:focus-visible {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 23, 140, .26);
  transform: translateY(-1px);
}

.cta-phone-button:hover .cta-phone-label,
.cta-phone-button:focus-visible .cta-phone-label {
  border-right-color: rgba(255,255,255,.32);
}

.cta-phone-button:hover .cta-phone-icon,
.cta-phone-button:focus-visible .cta-phone-icon {
  background: #fff;
  color: var(--blue);
}

@media (max-width: 520px) {
  .cta-phone-wrap {
    margin: 12px auto 24px;
  }

  .cta-phone-button {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 50px;
    padding: 10px 14px;
  }

  .cta-phone-label {
    padding-right: 12px;
    margin-right: 12px;
    font-size: 12px;
  }

  .cta-phone-number {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .cta-phone-button {
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
  }

  .cta-phone-label {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
}

body {
  font-size: 16px;
}

.section p,
.footer-cta p,
.card p,
.boxed,
.cta-small,
.feature-card-body p,
.reason-card p,
.expert-msg,
#knowledge .knowledge-summary,
#voices .voice-points dd,
.notes {
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.9;
}

.lead {
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.9;
}

.card p,
.feature-card-body p,
.reason-card p {
  font-size: clamp(16px, 1.45vw, 17px);
  line-height: 1.85;
}

.ps-solution {
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.85;
}

.price-table th,
.price-table td,
.faq .faq-a,
.flow-body p,
.check-list li {
  font-size: 16px;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .section p,
.footer-cta p,
.card p,
.boxed,
.cta-small,
.feature-card-body p,
.reason-card p,
.expert-msg,
#knowledge .knowledge-summary,
#voices .voice-points dd,
.notes,
.lead,
.ps-solution,
.price-table th,
.price-table td,
.faq .faq-a,
.flow-body p,
.check-list li {
    font-size: 16px;
    line-height: 1.85;
  }
}
