@charset "UTF-8";
@media screen and (max-width: 1100px) {
  html, body {
    overflow-x: clip;
  }
}
/* ============
cs-overview
============ */
section#cs-overview {
  margin: 5rem 0 8rem;
}
@media screen and (max-width: 767px) {
  section#cs-overview {
    margin: 3rem 0 5rem;
  }
}
section#cs-overview .contents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section#cs-overview .contents__block {
  background-color: #EAEEF6;
  border-radius: 20px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  section#cs-overview .contents__block {
    padding: 2rem 1.5rem;
  }
}
section#cs-overview .contents__block--title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C55A7;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section#cs-overview .contents__block--title {
    font-size: 1.1rem;
  }
}
section#cs-overview .contents__block--list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  section#cs-overview .contents__block--list {
    grid-template-columns: 1fr;
  }
}
section#cs-overview .contents__block--list li {
  background-color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
section#cs-overview .contents__block--list li::before {
  content: "・";
  position: absolute;
  left: 0.8rem;
  color: #2C55A7;
  font-weight: 700;
}
section#cs-overview .contents__block--note {
  line-height: 2;
  font-size: 0.875rem;
}
section#cs-overview .contents__block--desc {
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
section#cs-overview .contents__block--emphasis {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  line-height: 2;
  font-size: 0.875rem;
}

/* ============
cs-case
============ */
section#cs-case .bg {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#cs-case .bg {
    padding: 5rem 0;
  }
}
section#cs-case .contents {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
section#cs-case .contents__case {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  section#cs-case .contents__case {
    padding: 2rem 1.5rem;
  }
}
section#cs-case .contents__case--label {
  display: inline-block;
  background-color: #2C55A7;
  color: #ffffff;
  font-family: "new-atten", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
section#cs-case .contents__case--title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  section#cs-case .contents__case--title {
    font-size: 1.2rem;
  }
}
section#cs-case .contents__case--lead {
  line-height: 2;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
section#cs-case .contents__case--detail {
  margin-bottom: 2rem;
}
section#cs-case .contents__case--detail-label {
  display: inline-block;
  background-color: #2C55A7;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
section#cs-case .contents__case--steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
section#cs-case .contents__case--steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  counter-increment: step;
}
section#cs-case .contents__case--steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background-color: #2C55A7;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "new-atten", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}
section#cs-case .contents__case--steps li ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
section#cs-case .contents__case--steps li ul li {
  padding-left: 1rem;
  margin-bottom: 0.3rem;
  counter-increment: none;
  font-size: 0.8125rem;
  line-height: 1.7;
}
section#cs-case .contents__case--steps li ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  background-color: transparent;
  color: #2C55A7;
  border-radius: 0;
  display: inline;
  font-family: inherit;
  font-weight: 700;
  font-size: inherit;
}
section#cs-case .contents__case--step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.6;
  padding-top: 0.3rem;
}
section#cs-case .contents__case--step-desc {
  font-size: 0.8125rem;
  color: #888888;
}
section#cs-case .contents__case--list {
  list-style: none;
  padding: 0;
  background-color: #EAEEF6;
  border-radius: 8px;
  padding: 1.5rem;
}
section#cs-case .contents__case--list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 2;
  font-size: 0.875rem;
}
section#cs-case .contents__case--list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2C55A7;
  font-weight: 700;
}
section#cs-case .contents__case--point {
  background-color: #EAEEF6;
  padding: 1.5rem;
  border-radius: 8px;
}
section#cs-case .contents__case--point-label {
  font-weight: 700;
  color: #2C55A7;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
}
section#cs-case .contents__case--point ul {
  list-style: none;
  padding: 0;
}
section#cs-case .contents__case--point ul li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 2;
  font-size: 0.875rem;
  margin-bottom: 0.3rem;
}
section#cs-case .contents__case--point ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2C55A7;
  font-weight: 700;
}
section#cs-case .contents__case--point p {
  line-height: 2;
  font-size: 0.875rem;
}

/* ============
cs-service
============ */
section#cs-service {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#cs-service {
    margin: 5rem 0;
  }
}
section#cs-service .contents {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
section#cs-service .contents__service {
  background-color: #EAEEF6;
  border-radius: 20px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  section#cs-service .contents__service {
    padding: 2rem 1.5rem;
  }
}
section#cs-service .contents__service--title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2C55A7;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section#cs-service .contents__service--title {
    font-size: 1.2rem;
  }
}
section#cs-service .contents__service--lead {
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
section#cs-service .contents__service--methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  section#cs-service .contents__service--methods {
    grid-template-columns: 1fr;
  }
}
section#cs-service .contents__service--method {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
}
section#cs-service .contents__service--method-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2C55A7;
  margin-bottom: 1rem;
}
section#cs-service .contents__service--method dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  align-items: start;
}
section#cs-service .contents__service--method dl dt {
  background-color: #2C55A7;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  align-self: start;
  margin-top: 0.2rem;
}
section#cs-service .contents__service--method dl dd {
  font-size: 0.8125rem;
  line-height: 1.8;
}
section#cs-service .contents__service--feature {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
section#cs-service .contents__service--feature-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2C55A7;
  margin-bottom: 0.6rem;
}
section#cs-service .contents__service--feature ul {
  list-style: none;
  padding: 0;
}
section#cs-service .contents__service--feature ul li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 2;
  font-size: 0.875rem;
}
section#cs-service .contents__service--feature ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2C55A7;
  font-weight: 700;
}
section#cs-service .contents__service--feature p {
  line-height: 2;
  font-size: 0.875rem;
}
section#cs-service .contents__service--note {
  line-height: 2;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: #888888;
}
section#cs-service .contents__service--price {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  line-height: 1.8;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}
section#cs-service .contents__service--price .label {
  display: inline-block;
  background-color: #2C55A7;
  color: #ffffff;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.8rem;
}
section#cs-service .contents__service--price small {
  display: block;
  font-size: 0.75rem;
  color: #888888;
  margin-top: 0.3rem;
}

/* ============
cs-security
============ */
section#cs-security .bg {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#cs-security .bg {
    padding: 5rem 0;
  }
}
section#cs-security .contents {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section#cs-security .contents__item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  section#cs-security .contents__item {
    padding: 2rem 1.5rem;
  }
}
section#cs-security .contents__item--title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2C55A7;
}
@media screen and (max-width: 767px) {
  section#cs-security .contents__item--title {
    font-size: 1.2rem;
  }
}
section#cs-security .contents__item--desc {
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
section#cs-security .contents__item--list {
  list-style: none;
  padding: 0;
  background-color: #EAEEF6;
  border-radius: 8px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
@media screen and (max-width: 767px) {
  section#cs-security .contents__item--list {
    grid-template-columns: 1fr;
  }
}
section#cs-security .contents__item--list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 2;
  font-size: 0.875rem;
}
section#cs-security .contents__item--list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2C55A7;
  font-weight: 700;
}
section#cs-security .contents__item--note {
  margin-top: 1rem;
  line-height: 2;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============
cs-voice
============ */
section#cs-voice {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#cs-voice {
    margin: 5rem 0;
  }
}
section#cs-voice .contents {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section#cs-voice .contents__voice {
  background-color: #EAEEF6;
  border-radius: 20px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  section#cs-voice .contents__voice {
    padding: 2rem 1.5rem;
  }
}
section#cs-voice .contents__voice--title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  line-height: 1.6;
  position: relative;
}
section#cs-voice .contents__voice--title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(251deg, #2C55A7 18.21%, #1E88CA 78.28%);
}
@media screen and (max-width: 767px) {
  section#cs-voice .contents__voice--title {
    font-size: 1.1rem;
  }
}
section#cs-voice .contents__voice--body {
  line-height: 2;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
section#cs-voice .contents__voice--client {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #888888;
  text-align: right;
}
