:root {
  /* basic */
  --main-color: #a20000;
  --sub-color: #5a5a5a;
  --accent-color: #32c6b6;
  --base-color: #f8f8f8;
  --main-bg-color: #f8eded;
  /* text */
  --text-color: #1a1a1a;
  --text-sub-color: #555555;
  --text-button-color: #fff;
  --text-dark-bg-color: #fff;
  /* border */
  --border-color: #ccc;
  /* font-size */
  --pc-font-size: 16px;
  --sp-font-size: 16px;
  /* parts */
  --header-bg-color: #fff;
  --card-bg-color: #fff;
  /* font */
  --font-family: Noto Sans JP, -apple-system, Roboto, Helvetica, sans-serif;
  --font-family-en: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  font-size: var(--pc-font-size);
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: 0.3s;
}
body.modal::after {
  opacity: 1;
  pointer-events: all;
}

.text-bold {
  font-weight: 700 !important;
}

.text-color {
  color: var(--main-color) !important;
}

.text-underline {
  text-decoration: underline;
}

.main {
  padding-top: 55px;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .main {
    padding-bottom: 40px;
  }
}

.container {
  margin: 0 auto;
  padding: 80px 50px;
}
@media (max-width: 991px) {
  .container {
    padding: 40px 20px;
  }
}

@media (min-width: 992px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .pc-only {
    display: none !important;
  }
}
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-title__english {
  color: var(--accent-color);
  font-family: var(--font-family-en);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 5px;
}
@media (max-width: 991px) {
  .section-title__english {
    font-size: 32px;
    letter-spacing: 2px;
  }
}
.section-title__japanese {
  color: var(--text-color);
  font-size: 24px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .section-title__japanese {
    font-size: 14px;
    font-weight: 700;
  }
}

.heading-underline {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: var(--text-color);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 991px) {
  .heading-underline {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
.heading-underline::after {
  content: "";
  display: flex;
  min-height: 4px;
  margin-top: 16px;
  width: 60px;
  background-color: var(--main-color);
}
@media (max-width: 991px) {
  .heading-underline::after {
    margin-top: 6px;
    min-height: 2px;
  }
}

.cta-button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: var(--accent-color);
  max-width: 340px;
  margin: auto 0;
  width: 100%;
  padding: 20px 30px;
  gap: 3px;
  font-size: 24px;
  color: var(--text-button-color);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button__link:hover {
  background-color: rgba(162, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .cta-button__link {
    max-width: 280px;
    margin: 0 auto;
    padding: 10px;
    font-size: 18px;
  }
}

.header {
  display: flex;
  min-height: 55px;
  width: 100%;
  padding: 0 20px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--header-bg-color);
}
.header__logo {
  display: flex;
  margin: auto 0;
}
.header__logo-link {
  display: block;
  line-height: 0;
}
.header__logo-image {
  max-width: 88px;
}

.burger-menu {
  width: 24px;
  height: 20px;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1240px) {
  .burger-menu {
    display: flex;
  }
}
.burger-menu__icon {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--sub-color);
  transition: 0.3s;
}
.burger-menu__icon::before, .burger-menu__icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--sub-color);
  transition: 0.3s;
}
.burger-menu__icon::before {
  top: 0;
}
.burger-menu__icon::after {
  bottom: 0;
}
.burger-menu.open .burger-menu__icon {
  background: none;
}
.burger-menu.open .burger-menu__icon::before {
  top: 50%;
  transform: rotate(45deg);
}
.burger-menu.open .burger-menu__icon::after {
  top: 50%;
  transform: rotate(-45deg);
}
@media (max-width: 1240px) {
  .burger-menu.open + .navigation-menu {
    display: flex;
    opacity: 1;
    height: auto;
    pointer-events: all;
    transform: none;
  }
}
.burger-menu.open + .gnav {
  display: flex;
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.gnav {
  display: flex;
  min-width: 240px;
  padding: 0 20px;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  justify-content: end;
  flex: 1;
}
@media (max-width: 1240px) {
  .gnav {
    position: absolute;
    top: 55px;
    right: 0;
    z-index: -1;
    flex-direction: column;
    padding: 0;
    height: auto;
    background-color: #fff;
    gap: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: 0.3s;
    transform: translate(0, -20px);
  }
}
@media (max-width: 991px) {
  .gnav {
    width: 100%;
  }
}
.gnav__item {
  align-self: stretch;
  display: flex;
  margin: auto 0;
  align-items: center;
  gap: 20px;
  justify-content: start;
}
.gnav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  margin: auto 0;
  color: var(--text-color);
  text-decoration: none;
}
@media (max-width: 1240px) {
  .gnav__link {
    justify-content: space-between;
    padding: 20px 30px;
    width: 100%;
  }
}
.gnav__link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.6px solid;
  border-bottom: 1.6px solid;
  transform: rotate(45deg);
  color: #222;
}
.gnav__link:hover {
  color: var(--main-color);
}
@media (max-width: 1240px) {
  .gnav__link:hover {
    background-color: rgba(162, 0, 0, 0.01);
  }
}
.gnav__link:hover::after {
  border-color: var(--main-color);
}

.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 780px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  background: url("../images/bg_hero.jpg") no-repeat calc(50% + 40px) center/cover #e1e7e5;
}
@media (max-width: 991px) {
  .hero {
    min-height: 0;
    background-position: top -22px right -70px;
    background-size: contain;
  }
}
.hero__container {
  max-width: 1440px;
  width: 100%;
}
@media (max-width: 991px) {
  .hero__container {
    padding: 40px 20px;
  }
}
.hero__service-category {
  align-self: stretch;
  gap: 10px;
  font-size: 26px;
  color: var(--main-color);
  font-weight: 400;
}
@media (max-width: 991px) {
  .hero__service-category {
    font-size: 14px;
  }
}
.hero__main-logo {
  margin-top: 10px;
  width: 355px;
}
@media (max-width: 991px) {
  .hero__main-logo {
    width: 160px;
  }
}
.hero__ruby {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (max-width: 991px) {
  .hero__ruby {
    gap: 4px;
  }
}
.hero__kana {
  font-size: inherit;
  letter-spacing: 1em;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .hero__kana {
    font-size: 11px;
    letter-spacing: 0.5em;
  }
}
.hero__content {
  margin-top: 30px;
}
.hero__logo-image {
  aspect-ratio: 3.91;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 328px;
  max-width: 100%;
}
.hero__description {
  display: flex;
  margin-top: 30px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.hero__question {
  align-self: start;
  font-size: 30px;
  color: var(--text-color);
  font-weight: 700;
}
@media (max-width: 991px) {
  .hero__question {
    font-size: 20px;
  }
}
.hero__service-description {
  align-self: stretch;
  margin-top: 20px;
  width: 100%;
  gap: 10px;
  font-size: 20px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 991px) {
  .hero__service-description {
    font-size: inherit;
  }
}
.hero__button {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .hero__button {
    margin-top: 20px;
  }
}

.problem {
  background: url(../images/bg_effect_texture.jpg) no-repeat center/cover fixed;
  text-align: center;
}
.problem__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1260px;
}
@media (max-width: 991px) {
  .problem__container {
    gap: 20px;
  }
}
.problem__heading {
  font-size: 38px;
  color: var(--accent-color);
  font-weight: bold;
}
@media (max-width: 991px) {
  .problem__heading {
    font-size: 20px;
  }
}
.problem__description, .problem__statement {
  font-size: 24px;
}
@media (max-width: 991px) {
  .problem__description, .problem__statement {
    font-size: inherit;
  }
}
.problem__challenges-grid {
  display: flex;
  gap: 2px;
}
@media (max-width: 991px) {
  .problem__challenges-grid {
    flex-direction: column;
  }
}
.problem .challenge-card {
  flex: 1;
  padding: 32px;
  background-color: var(--card-bg-color);
  text-align: left;
}
@media (max-width: 991px) {
  .problem .challenge-card {
    padding: 16px;
  }
}
.problem .challenge-card__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  gap: 6px;
  border-radius: 4px;
  background-color: var(--main-color);
  color: var(--text-dark-bg-color);
}
.problem .challenge-card__badge-text {
  font-size: 20px;
}
@media (max-width: 991px) {
  .problem .challenge-card__badge-text {
    font-size: inherit;
  }
}
.problem .challenge-card__badge-number {
  font-size: 24px;
  line-height: 1;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
}
@media (max-width: 991px) {
  .problem .challenge-card__badge-number {
    font-size: inherit;
  }
}
.problem .challenge-card__description {
  margin-top: 20px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .problem .challenge-card__description {
    margin-top: 10px;
    font-size: inherit;
  }
}
.problem__solution-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .problem__solution-heading {
    margin-top: 20px;
    font-size: 20px;
  }
}

.service__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 991px) {
  .service__container {
    gap: 40px;
  }
}
.service__intro {
  text-align: center;
}
.service__intro-text {
  font-size: 24px;
}
@media (max-width: 991px) {
  .service__intro-text {
    font-size: 18px;
  }
}
.service__features-list {
  margin-top: 30px;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .service__features-list {
    margin-top: 20px;
  }
}
.service__features-list li {
  text-align: left;
  padding-left: 36px;
  background: url(../images/icon_check.svg) top left/26px auto no-repeat;
}
@media (max-width: 991px) {
  .service__features-list li {
    padding-left: 24px;
    background-size: 20px auto;
    background-position: 0 2px;
  }
}
.service__approach-description {
  margin-top: 30px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 991px) {
  .service__approach-description {
    margin-top: 20px;
    font-size: 16px;
    text-align: left;
  }
}
.service .service__points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .service .service__points {
    margin-top: 30px;
  }
}
.service .point-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-basis: 480px;
  margin: 0 -1px -1px 0;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
}
@media (max-width: 991px) {
  .service .point-card {
    display: grid;
    grid-template-columns: auto 90px;
    gap: 10px;
    padding: 16px;
  }
}
.service .point-card__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100px;
  background: var(--main-color);
  color: var(--text-dark-bg-color);
  font-size: 20px;
}
@media (max-width: 991px) {
  .service .point-card__badge {
    height: 28px;
    font-size: 16px;
  }
}
.service .point-card__image-container {
  text-align: center;
}
@media (max-width: 991px) {
  .service .point-card__image-container {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.service .point-card__image {
  max-width: 160px;
}
@media (max-width: 991px) {
  .service .point-card__image {
    max-width: 100%;
  }
}
.service .point-card__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .service .point-card__title {
    font-size: 20px;
    text-align: left;
  }
  .service .point-card__title br {
    display: none;
  }
}
@media (max-width: 991px) {
  .service .point-card__description {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.how-to-use {
  background-color: var(--base-color);
}
.how-to-use__container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1540px;
}
@media (max-width: 991px) {
  .how-to-use__container {
    gap: 40px;
  }
}
.how-to-use__intro {
  text-align: center;
}
@media (max-width: 991px) {
  .how-to-use__intro {
    text-align: left;
  }
}
.how-to-use__integration-description {
  margin-top: 40px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .how-to-use__integration-description {
    font-size: 16px;
  }
}
.how-to-use__compatibility-note {
  margin-top: 10px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .how-to-use__compatibility-note {
    font-size: 16px;
  }
}
.how-to-use__workflow-steps {
  display: flex;
  justify-content: center;
  gap: 2px;
  background-color: var(--main-bg-color);
}
@media (max-width: 991px) {
  .how-to-use__workflow-steps {
    flex-direction: column;
  }
}
.how-to-use .workflow-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-basis: 360px;
  padding: 20px 20px 30px;
  background: var(--card-bg-color);
  text-align: center;
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card {
    display: grid;
    grid-template-columns: 80px auto;
    flex-basis: auto;
    padding: 16px 12px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.how-to-use .workflow-step-card:not(.completion)::before, .how-to-use .workflow-step-card:not(.completion)::after {
  content: "";
  position: absolute;
  top: calc(50% - 20px);
  width: 23px;
  height: 40px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 1;
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card:not(.completion)::before, .how-to-use .workflow-step-card:not(.completion)::after {
    width: 40px;
    height: 20px;
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0%);
            clip-path: polygon(0 0, 50% 100%, 100% 0%);
  }
}
.how-to-use .workflow-step-card:not(.completion)::before {
  left: calc(100% + 2px);
  background: var(--main-bg-color);
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card:not(.completion)::before {
    top: 100%;
    left: calc(50% - 20px);
  }
}
.how-to-use .workflow-step-card:not(.completion)::after {
  left: calc(100% - 1px);
  background: var(--card-bg-color);
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card:not(.completion)::after {
    top: calc(100% - 3px);
    left: calc(50% - 20px);
  }
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card__header {
    display: flex;
    gap: 6px;
    align-items: self-end;
  }
}
.how-to-use .workflow-step-card__number {
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card__number {
    font-size: 22px;
    line-height: 1.45;
  }
}
.how-to-use .workflow-step-card__title {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card__title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card__image-container {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.how-to-use .workflow-step-card__image {
  width: 150px;
}
.how-to-use .workflow-step-card__description {
  font-size: 20px;
}
@media (max-width: 1400px) {
  .how-to-use .workflow-step-card__description br {
    display: none;
  }
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card__description {
    grid-row-start: 2;
    font-size: inherit;
    text-align: left;
  }
}
.how-to-use .workflow-step-card.completion {
  background-color: var(--main-bg-color);
  display: flex;
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card.completion {
    flex-basis: 100px;
  }
}
.how-to-use .workflow-step-card__completion-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 32px;
  font-weight: 700;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .how-to-use .workflow-step-card__completion-text {
    font-size: 20px;
  }
}

.compatible__container {
  margin: 0 auto;
  max-width: 1040px;
}
.compatible__grid {
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .compatible__grid {
    flex-direction: column;
    gap: 10px;
  }
}
.compatible__contact-note, .faq__cta, .price__estimate {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .compatible__contact-note, .faq__cta, .price__estimate {
    flex-direction: column;
  }
}
.compatible__contact-text, .faq__cta-text, .price__estimate-text {
  text-align: center;
  font-size: 18px;
}
@media (max-width: 991px) {
  .compatible__contact-text, .faq__cta-text, .price__estimate-text {
    font-size: 14px;
  }
}
.compatible__contact-button, .footer__contact-button, .faq__cta-button, .price__estimate-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  max-width: 160px;
  width: 100%;
  background-color: var(--accent-color);
  color: var(--text-button-color);
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .compatible__contact-button, .footer__contact-button, .faq__cta-button, .price__estimate-button {
    font-size: 14px;
  }
}
.compatible__contact-button:hover, .footer__contact-button:hover, .faq__cta-button:hover, .price__estimate-button:hover {
  background-color: rgba(162, 0, 0, 0.6);
}

.security {
  text-align: center;
}
.security__description {
  font-size: 20px;
}
@media (max-width: 991px) {
  .security__description {
    font-size: inherit;
    text-align: left;
  }
}
.security__description + * {
  margin-top: 20px;
}

.case-study {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.case-study::before, .case-study::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.case-study::before {
  background: url(../images/bg_case.png) no-repeat center/cover;
  background-attachment: fixed;
}
.case-study::after {
  background: linear-gradient(110deg, #32c6b6, 70%, #2a889d);
  opacity: 0.8;
}
.case-study__container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .case-study__container {
    padding-bottom: 60px;
  }
}
.case-study__header {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .case-study__header {
    margin-bottom: 20px;
  }
}
.case-study__header > * {
  color: var(--card-bg-color);
}
.case-study-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 40px;
  gap: 20px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .case-study-card {
    padding: 20px;
    margin: 4px;
  }
}
.case-study-card__row {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .case-study-card__row {
    flex-direction: column;
    gap: 10px;
  }
}
.case-study-card__figure {
  text-align: center;
}
.case-study-card__image {
  margin: 0 auto;
  max-width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .case-study-card__image {
    max-width: none;
  }
}
.case-study-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study-card__number {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 700;
}
@media (max-width: 991px) {
  .case-study-card__number {
    font-size: 16px;
  }
}
.case-study-card__title {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .case-study-card__title {
    font-size: 18px;
  }
}
.case-study-card__name {
  margin-top: auto;
  color: var(--text-sub-color);
}
.case-study .splide__pagination {
  bottom: auto;
  top: calc(100% + 20px);
}
@media (max-width: 991px) {
  .case-study .splide__pagination {
    top: calc(100% + 10px);
  }
}

.price__container {
  max-width: 1200px;
}
.price__details {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .price__details {
    margin-top: 10px;
  }
}
.price__structure {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sub-color);
}
@media (max-width: 991px) {
  .price__structure {
    gap: 30px;
    border-bottom: none;
  }
}
.price__options {
  padding: 20px 0;
}
@media (max-width: 991px) {
  .price__options {
    padding-bottom: 0;
  }
}
.price__item {
  display: flex;
}
@media (max-width: 991px) {
  .price__item {
    flex-direction: column;
  }
}
.price__label {
  min-width: 6em;
  padding-right: 20px;
  border-right: 3px solid var(--main-color);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .price__label {
    font-size: 18px;
    border-right: none;
    border-left: 3px solid var(--main-color);
    padding: 6px 0 6px 10px;
    margin-bottom: 16px;
  }
}
.price__label.options {
  border-color: var(--sub-color);
}
.price__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .price__content {
    padding-left: 0;
  }
}
.price__breakdown {
  display: flex;
  gap: 10px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .price__breakdown {
    flex-direction: column;
    gap: 0;
    font-size: inherit;
    font-weight: 700;
  }
}
.price__options-title {
  font-size: 20px;
}
@media (max-width: 991px) {
  .price__options-title {
    font-size: inherit;
    font-weight: 700;
  }
}
.price__option-list {
  list-style: disc;
  margin-left: 1.5em;
}
.flow {
  background-color: var(--base-color);
}
.flow__container {
  max-width: 1200px;
}
.flow__content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flow-step-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  background-color: var(--card-bg-color);
}
@media (max-width: 991px) {
  .flow-step-card {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.flow-step-card + *::before {
  content: "";
  position: absolute;
  left: calc(50% - 6px);
  bottom: calc(100% + 8px);
  width: 12px;
  height: 6px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--main-color);
}
.flow-step-card__heading {
  flex: 0 0 200px;
}
@media (max-width: 991px) {
  .flow-step-card__heading {
    flex: 0 0 auto;
    display: flex;
    gap: 6px;
  }
  .flow-step-card__heading br {
    display: none;
  }
}
.flow-step-card__label {
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  color: var(--main-color);
  line-height: 1.2;
}
@media (max-width: 991px) {
  .flow-step-card__label {
    line-height: 1.6;
  }
}
.flow-step-card__name {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .flow-step-card__name {
    font-size: inherit;
  }
}

.faq__container {
  max-width: 1200px;
}
.faq__content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: question-counter;
}
@media (max-width: 991px) {
  .faq__content {
    margin-top: 30px;
  }
}
.faq-item__question {
  position: relative;
  padding: 20px 50px 20px 60px;
  background-color: var(--base-color);
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .faq-item__question {
    padding: 16px 32px 16px 46px;
    font-size: inherit;
  }
}
.faq-item__question:hover {
  background-color: rgba(50, 198, 182, 0.1);
}
.faq-item__question::before {
  position: absolute;
  top: 18px;
  left: 20px;
  counter-increment: question-counter;
  content: "Q" counter(question-counter);
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .faq-item__question::before {
    top: 16px;
    left: 16px;
    font-size: inherit;
  }
}
.faq-item__question::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 24px;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--sub-color);
  border-left: 2px solid var(--sub-color);
  transform: rotate(45deg);
  transform-origin: center;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .faq-item__question::after {
    right: 16px;
    width: 6px;
    height: 6px;
  }
}
.faq-item__question + * {
  transition: 0.3s;
}
.faq-item__question.close::after {
  top: calc(50% - 8px);
  transform: rotate(225deg);
}
.faq-item__question.close + * {
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.faq-item__question.close + *::before {
  top: 0;
}
.faq-item__answer {
  position: relative;
  padding: 20px 20px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .faq-item__answer {
    padding: 16px 16px 16px 46px;
  }
}
.faq-item__answer::before {
  position: absolute;
  top: 18px;
  left: 30px;
  content: "A";
  font-size: 20px;
  color: var(--main-color);
  transition: 0.3s;
}
@media (max-width: 991px) {
  .faq-item__answer::before {
    top: 16px;
    left: 24px;
    font-size: inherit;
  }
}
.faq__cta {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .faq__cta {
    margin-top: 30px;
  }
}
.emr__container {
  max-width: 1200px;
}
@media (max-width: 991px) {
  .emr__container {
    padding: 0;
  }
}
.emr__card {
  position: relative;
  z-index: 1;
  padding: 60px;
  background: url(../images/img_bg_emr.jpg) no-repeat center/cover fixed;
  border-radius: 16px;
  color: var(--text-dark-bg-color);
  text-align: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .emr__card {
    padding: 40px 20px 50px;
    border-radius: 0;
  }
}
.emr__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: -1;
}
.emr__heading {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .emr__heading {
    font-size: 24px;
  }
}
.emr__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .emr__content {
    margin-top: 30px;
  }
}
.emr__subheading {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .emr__subheading {
    font-size: 18px;
  }
}
.emr__list {
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}
.emr__list-item {
  padding-left: 24px;
  background: url(../images/icon_check_accent.svg) 0 6px/16px auto no-repeat;
}
.emr__feature-text {
  font-size: 20px;
}
@media (max-width: 991px) {
  .emr__feature-text {
    font-size: inherit;
  }
}
.emr__button-container {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .emr__button-container {
    margin-top: 20px;
  }
}
.emr__button, .contact__button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--text-dark-bg-color);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .emr__button, .contact__button {
    padding: 10px;
    font-size: 14px;
    max-width: 240px;
  }
}
.emr__button:hover, .contact__button:hover {
  background-color: var(--text-dark-bg-color);
  color: var(--sub-color);
}

.about__container {
  max-width: 1200px;
}
.about__content {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .about__content {
    margin-top: 30px;
  }
}
.about__description {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 1040px) {
  .about__description br.pc-only {
    display: none;
  }
}
@media (max-width: 991px) {
  .about__description {
    font-size: inherit;
    text-align: left;
  }
}
.about__table {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.about .company-table {
  border-collapse: collapse;
}
.about .company-table__header {
  padding: 30px 20px;
  border-bottom: 2px solid var(--main-color);
  font-size: 20px;
}
@media (max-width: 991px) {
  .about .company-table__header {
    padding: 8px;
    font-size: 14px;
    white-space: nowrap;
  }
}
.about .company-table__cell {
  padding: 30px 20px;
  border-bottom: 2px solid var(--main-color);
  font-size: 20px;
  border-color: var(--border-color);
}
@media (max-width: 991px) {
  .about .company-table__cell {
    padding: 8px;
    font-size: 14px;
  }
}
.about .company-table__text-link {
  color: var(--text-color);
}
.about .company-table__text-link:hover {
  text-decoration: none;
  color: var(--sub-color);
}

.contact {
  position: relative;
  background: url(../images/img_bg_contact.jpg) no-repeat center/cover fixed;
  z-index: 1;
}
.contact::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 198, 182, 0.9);
  z-index: -1;
}
.contact * {
  color: var(--text-dark-bg-color);
}
.contact__content {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .contact__content {
    margin-top: 30px;
  }
}
.contact__description {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 991px) {
  .contact__description {
    font-size: inherit;
  }
}
.contact__button:hover {
  color: var(--accent-color);
}

.news__container {
  max-width: 1200px;
}
.news__content {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .news__content {
    margin-top: 30px;
  }
}
.news__list-item {
  border-bottom: 1px dotted var(--sub-color);
}
@media (max-width: 991px) {
  .news__list-item:first-child {
    border-top: 1px dotted var(--sub-color);
  }
}
.news__list-item.is-hidden {
  display: none;
}
.news__list-item.is-faded-item {
  position: relative;
  height: 60px;
  border-bottom: 0;
  overflow: hidden;
}
.news__list-item.is-faded-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%);
}
.news__list-grp {
  display: flex;
}
@media (max-width: 991px) {
  .news__list-grp {
    padding: 10px 0;
    flex-direction: column;
  }
}
.news__list-date {
  padding: 20px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .news__list-date {
    padding: 0;
    font-size: 14px;
    color: var(--sub-color);
  }
}
.news__list-content {
  padding: 20px;
}
@media (max-width: 991px) {
  .news__list-content {
    padding: 0;
  }
}
.news__list-heading {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .news__list-heading {
    font-size: inherit;
  }
}
.news__list-body {
  margin-top: 10px;
}
.news__view-more {
  text-align: center;
}
.news__view-more.is-button-hidden {
  display: none;
}
.news__view-more-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 4px 0;
  color: var(--sub-color);
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .news__view-more-button {
    font-size: inherit;
  }
}
.news__view-more-button:hover {
  color: var(--main-color);
}

.footer {
  padding: 70px 50px;
  background-color: var(--base-color);
}
@media (max-width: 991px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer__container {
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 1200px;
}
.footer__top-column {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer__top-column {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__logo {
  max-width: 140px;
}
.footer__company-name {
  margin: 10px 0;
  font-size: 20px;
}
@media (max-width: 991px) {
  .footer__company-name {
    font-size: inherit;
  }
}
@media (max-width: 991px) {
  .footer__address {
    font-size: 14px;
  }
}
.footer__contact {
  margin-top: 20px;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .footer__nav-list {
    gap: 6px;
  }
}
.footer__nav-link {
  color: var(--sub-color);
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer__nav-link {
    font-size: 14px;
  }
}
.footer__nav-link:hover {
  text-decoration: underline;
  color: var(--text-color);
}
.footer__nav-sub-list {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .footer__nav-sub-list {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }
}
.footer__nav-sub-link {
  font-size: 13px;
  color: var(--sub-color);
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer__nav-sub-link {
    font-size: 14px;
  }
}
.footer__nav-sub-link:hover {
  text-decoration: underline;
  color: var(--text-color);
}
.footer__last-column {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .footer__last-column {
    margin-top: 30px;
    flex-direction: column;
  }
}
.footer__copyright {
  font-size: 12px;
  text-align: center;
  color: var(--sub-color);
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .footer__copyright {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */