@charset "UTF-8";
/*
====================================
訪問看護サービス
====================================
*/
.service-fixedbtns {
  position: fixed;
  top: 79px;
  left: 16px;
  z-index: 1000;
  width: 300px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.service-fixedbtns.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.service-fixedbtns .heading {
  position: relative;
  z-index: 2;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  text-align: center;
}
.service-fixedbtns .heading img {
  width: 100%;
}
.service-fixedbtns .container {
  position: relative;
  z-index: 1;
  margin-top: -30px;
  border: solid 2px #35B597;
  border-radius: 10px;
  background-color: #fff;
  border-radius: 10px;
  padding: 27px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 0;
}
.service-fixedbtns .container .btn {
  width: 49%;
}
.service-fixedbtns .container .btn.wide {
  width: 100%;
}
.service-fixedbtns .container .btn img {
  width: 100%;
}

.service-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 240px;
}
.service-cta-btns a {
  display: block;
  border-radius: 50px;
  width: 48.75%;
}
.service-cta-btns a.wide {
  margin-bottom: 4px;
  width: 100%;
}
.service-cta-btns a img {
  width: 100%;
}

.servicespage-topaccordion {
  padding: 64px 0;
  background-color: #FBFDFC;
  position: relative;
}
.servicespage-topaccordion::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 5px;
  width: 210px;
  background-color: #35B597;
  transform: translateX(-50%);
}
.servicespage-topaccordion .btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.servicespage-topaccordion .btns a {
  position: relative;
  padding: 16px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  font-weight: 500;
  background-color: #fff;
  border-radius: 10px;
  border: solid 1px #35B597;
}
.servicespage-topaccordion .btns a span {
  font-size: 2rem;
  display: block;
  text-align: center;
  color: #000;
}
.servicespage-topaccordion .btns a::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 30px;
  width: 24px;
  height: 2px;
  background-color: #35B597;
  border-radius: 10px;
}
.servicespage-topaccordion .btns a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 30px;
  width: 24px;
  height: 2px;
  background-color: #35B597;
  border-radius: 10px;
  transform: rotate(90deg);
}
.servicespage-topaccordion .accordion-content {
  display: none;
  padding: 24px 24px 0;
  background-color: #fff;
}
.servicespage-topaccordion .accordion-content p {
  font-size: 1.4rem;
}
.servicespage-topaccordion .accordion-item {
  display: block;
  padding: 1em;
  background: #e0e0e0;
  margin-bottom: 5px;
  color: #000;
  text-decoration: none;
}
.servicespage-topaccordion .accordion-item.active .accordion-content {
  display: block;
}

.servicespage-user {
  padding-top: 80px;
  background-color: #fff;
}
.servicespage-user__heading {
  text-align: center;
  margin-bottom: 30px;
}
.servicespage-user__heading h2 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
}
.servicespage-user__items ul {
  display: flex;
  justify-content: space-between;
}
.servicespage-user__items ul li {
  position: relative;
  width: 24%;
}
.servicespage-user__items ul li .circle {
  padding: 32px;
  width: calc(100% - 21px);
  aspect-ratio: 1/1;
  background-color: #F8FCFA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.servicespage-user__items ul li .circle p {
  font-size: 2rem;
  font-weight: 600;
  color: #35B597;
}
.servicespage-user__items ul li .illust {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 40.7%;
}

.servicespage-links {
  padding-top: 80px;
  padding-bottom: 80px;
}
.servicespage-links .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.servicespage-links .btns a {
  position: relative;
  display: block;
  width: 30%;
  padding: 17px 8px;
  text-align: center;
  border: solid 1px #35B597;
  border-radius: 10px;
}
.servicespage-links .btns a span {
  font-size: 1.5rem;
  color: #000000;
}

.servicespage-about {
  position: relative;
  padding: 90px 0;
  background-color: rgba(254, 247, 244, 0.5);
}
.servicespage-about::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  height: 5px;
  width: 210px;
  background-color: #35B597;
  transform: translateX(-50%);
}
.servicespage-about::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 5px;
  width: 210px;
  background-color: #F29A76;
  transform: translateX(-50%);
}
.servicespage-about__heading {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-about__desc {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-about__image {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.servicespage-about__image img {
  width: 100%;
}

.servicespage-service {
  position: relative;
  padding: 90px 0;
}
.servicespage-service__heading {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-service__list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 0;
}
.servicespage-service__list ul li {
  width: 24%;
}
.servicespage-service__list ul li .image {
  width: 72%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: solid 2px #35B597;
  margin-bottom: 16px;
}
.servicespage-service__list ul li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.servicespage-service__list ul li h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #35B597;
  text-align: center;
}
.servicespage-service__list ul li .desc {
  color: #000;
}

.servicespage-cancer {
  position: relative;
  padding: 90px 0;
  background-color: rgba(249, 252, 251, 0.6);
}
.servicespage-cancer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  height: 5px;
  width: 210px;
  background-color: #F29A76;
  transform: translateX(-50%);
}
.servicespage-cancer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 5px;
  width: 210px;
  background-color: #35B597;
  transform: translateX(-50%);
}
.servicespage-cancer__heading {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-cancer__heading .eng {
  margin-bottom: 8px;
  display: block;
  color: #35B597;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
}
.servicespage-cancer__heading h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.servicespage-cancer__copy {
  margin-bottom: 24px;
  font-size: 3.2rem;
  text-align: center;
  color: #222222;
}
.servicespage-cancer__desc {
  text-align: center;
  font-size: 1.8rem;
}
.servicespage-cancer ul {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}
.servicespage-cancer ul li {
  width: 100%;
  display: block;
}
.servicespage-cancer ul li h3 {
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 500;
  color: #35B597;
  border-bottom: solid 2px #35B597;
  padding-bottom: 12px;
}
.servicespage-cancer ul li p {
  margin-top: 16px;
  color: #000;
}

.servicespage-voice {
  position: relative;
  padding: 90px 0;
}
.servicespage-voice__heading {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-voice__items ul li {
  padding: 40px 0;
  border-bottom: solid 1px #CCCCCC;
}
.servicespage-voice__items ul li .lr {
  display: flex;
  align-items: center;
}
.servicespage-voice__items ul li .lr .left {
  padding-right: 24px;
  width: calc(100% - 180px);
}
.servicespage-voice__items ul li .lr .left h3 {
  margin-bottom: 24px;
  z-index: 0;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  color: #222222;
  font-size: 2rem;
  font-weight: 500;
}
.servicespage-voice__items ul li .lr .left h3::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8px;
  bottom: 0px;
  width: calc(100% + 16px);
  height: 10px;
  background-color: rgba(255, 236, 93, 0.3);
}
.servicespage-voice__items ul li .lr .left .name {
  margin-top: 24px;
  display: inline-block;
  font-size: 1.5rem;
  background-color: #F8FCFA;
  padding: 8px;
}
.servicespage-voice__items ul li .lr .right {
  width: 180px;
}
.servicespage-voice__items ul li .lr .right .image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 2px #35B597;
}
.servicespage-voice__items ul li .lr .right .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.servicespage-flow {
  position: relative;
  padding: 90px 0;
  background-color: rgba(254, 247, 244, 0.5);
}
.servicespage-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  height: 5px;
  width: 210px;
  background-color: #35B597;
  transform: translateX(-50%);
}
.servicespage-flow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 5px;
  width: 210px;
  background-color: #F29A76;
  transform: translateX(-50%);
}
.servicespage-flow__heading {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-flow__items ol li {
  padding: 33px 45px;
  background-color: #fff;
  border: #F29A76 solid 1px;
  border-radius: 10px;
  margin-top: 24px;
}
.servicespage-flow__items ol li .col {
  display: flex;
  justify-content: left;
  align-items: center;
}
.servicespage-flow__items ol li .col .item:nth-of-type(1) {
  width: 72.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicespage-flow__items ol li .col .item:nth-of-type(1) i {
  display: block;
  width: 100%;
}
.servicespage-flow__items ol li .col .item:nth-of-type(1) i img {
  width: 100%;
  height: auto;
}
.servicespage-flow__items ol li .col .item:nth-of-type(2) {
  padding-left: 40px;
  width: calc(100% - 72.5px - 225px);
}
.servicespage-flow__items ol li .col .item:nth-of-type(2) h3 {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
}
.servicespage-flow__items ol li .col .item:nth-of-type(2) h3::before {
  margin-right: 8px;
  font-size: 3.2rem;
  color: #F29A76;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
}
.servicespage-flow__items ol li .col .item:nth-of-type(3) {
  width: 225px;
}
.servicespage-flow__items ol li:nth-of-type(1) .col {
  display: flex;
  justify-content: left;
}
.servicespage-flow__items ol li:nth-of-type(1) .col .item:nth-of-type(2) h3::before {
  content: "01";
}
.servicespage-flow__items ol li:nth-of-type(2) .col {
  display: flex;
  justify-content: left;
}
.servicespage-flow__items ol li:nth-of-type(2) .col .item:nth-of-type(2) h3::before {
  content: "02";
}
.servicespage-flow__items ol li:nth-of-type(3) .col {
  display: flex;
  justify-content: left;
}
.servicespage-flow__items ol li:nth-of-type(3) .col .item:nth-of-type(2) h3::before {
  content: "03";
}

.servicespage-price {
  position: relative;
  padding: 90px 0;
}
.servicespage-price__heading {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-price__table table {
  width: 100%;
  border: solid 1px #35B597;
}
.servicespage-price__table table thead {
  background-color: #35B597;
}
.servicespage-price__table table thead tr th {
  padding: 8px;
  font-size: 1.6rem;
  color: #fff;
}
.servicespage-price__table table tbody tr:first-of-type th {
  border-top: solid 1px #35B597;
}
.servicespage-price__table table tbody tr:last-of-type th {
  border-bottom: solid 1px #35B597;
}
.servicespage-price__table table tbody tr th {
  border: solid 1px #fff;
  background-color: #35B597;
  padding: 24px 24px;
  font-size: 1.6rem;
  color: #fff;
}
.servicespage-price__table table tbody tr td {
  border: solid 1px #35B597;
  padding: 24px 24px;
  font-size: 1.6rem;
  color: #222;
}
.servicespage-price__table .box {
  margin-top: 40px;
  background-color: #fff;
  border: solid 1px #ddd;
  padding: 40px;
}
.servicespage-price__table .box h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 500;
  color: #35B597;
}
.servicespage-price__table .box p {
  font-size: 1.6rem;
  line-height: 1.8;
}
.servicespage-price__table .box .btn {
  margin-top: 16px;
}
.servicespage-price__table .box .btn a {
  display: block;
}

.servicespage-faq {
  position: relative;
  padding: 90px 0;
  background-color: #35B597;
}
.servicespage-faq::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  height: 5px;
  width: 210px;
  background-color: #35B597;
  transform: translateX(-50%);
}
.servicespage-faq::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 5px;
  width: 210px;
  background-color: #F29A76;
  transform: translateX(-50%);
}
.servicespage-faq__heading {
  margin-bottom: 30px;
  text-align: center;
}
.servicespage-faq .faq-item .faq-question {
  margin-top: 16px;
  position: relative;
  border-radius: 10px 10px 10px 10px;
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 1.7rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}
.servicespage-faq .faq-item .faq-question .txt {
  display: block;
  padding: 16px 56px;
}
.servicespage-faq .faq-item .faq-question::before {
  position: absolute;
  left: 16px;
  top: 10px;
  content: "Q.";
  color: #35B597;
  font-size: 3rem;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
}
.servicespage-faq .faq-item .faq-question i {
  position: absolute;
  right: 16px;
  top: 23px;
  width: 17px;
  height: 17px;
}
.servicespage-faq .faq-item .faq-question i::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 100%;
  height: 2px;
  border: 10px;
  background-color: #35B597;
}
.servicespage-faq .faq-item .faq-question i::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 100%;
  height: 2px;
  border: 10px;
  background-color: #35B597;
}
.servicespage-faq .faq-item .faq-answer {
  position: relative;
  display: none;
  padding: 1em;
  background: #fff;
  border-bottom: 1px solid #ccc;
}
.servicespage-faq .faq-item .faq-answer::before {
  position: absolute;
  left: 16px;
  top: 10px;
  content: "A.";
  color: #35B597;
  font-size: 2.8rem;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
}
.servicespage-faq .faq-item.active .faq-question {
  position: relative;
  border-radius: 10px 10px 0px 0px;
  border-bottom: solid 1px #eee;
}
.servicespage-faq .faq-item.active .faq-question i::after {
  display: none;
}
.servicespage-faq .faq-item.active .faq-answer {
  display: block;
  position: relative;
  border-radius: 0px 0px 10px 10px;
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}
.servicespage-faq .faq-item.active .faq-answer .txt {
  display: block;
  padding: 0px 56px;
}

@media screen and (max-width: 750px) {
  .service-fixedbtns {
    position: fixed;
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .service-fixedbtns .heading {
    width: 50%;
  }
  .service-fixedbtns .container {
    margin-top: -30px;
    border: none;
    border-top: solid 1px #35B597;
    border-radius: 0px;
    padding: 16px 8px 8px;
    gap: 4px 0;
  }
  .service-fixedbtns .container .btn {
    width: 32%;
  }
  .service-fixedbtns .container .btn.wide {
    width: 32%;
  }
  .service-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 240px;
  }
  .service-cta-btns a {
    display: block;
    border-radius: 50px;
    width: 48.75%;
  }
  .service-cta-btns a.wide {
    margin-bottom: 4px;
    width: 100%;
  }
  .service-cta-btns a img {
    width: 100%;
  }
  .servicespage-topaccordion {
    padding: 32px 0;
  }
  .servicespage-topaccordion::after {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-topaccordion .btns a {
    position: relative;
    padding: 12px 0;
    width: 100%;
  }
  .servicespage-topaccordion .btns a span {
    font-size: 1.5rem;
  }
  .servicespage-topaccordion .btns a::before {
    right: 16px;
    top: 24px;
    width: 16px;
    height: 2px;
  }
  .servicespage-topaccordion .btns a::after {
    right: 16px;
    top: 24px;
    width: 16px;
    height: 2px;
  }
  .servicespage-user {
    padding-top: 40px;
  }
  .servicespage-user__heading {
    margin-bottom: 16px;
  }
  .servicespage-user__heading h2 {
    font-size: 1.9rem;
  }
  .servicespage-user__items ul {
    flex-wrap: wrap;
  }
  .servicespage-user__items ul li {
    width: 48.75%;
  }
  .servicespage-user__items ul li .circle {
    border-radius: 10px;
    padding: 0px 8px 0px 8px;
    width: 100%;
    text-align: center;
    aspect-ratio: 1/0.9;
  }
  .servicespage-user__items ul li .circle p {
    font-size: 1.3rem;
  }
  .servicespage-user__items ul li .illust {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30.7%;
  }
  .servicespage-links {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .servicespage-links .btns {
    flex-wrap: wrap;
    gap: 16px;
  }
  .servicespage-links .btns a {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 12px 8px;
  }
  .servicespage-links .btns a span {
    font-size: 1.3rem;
  }
  .servicespage-about {
    padding: 40px 0;
  }
  .servicespage-about::before {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-about::after {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-about__heading {
    margin-bottom: 16px;
  }
  .servicespage-about__desc {
    margin-bottom: 16px;
    text-align: left;
  }
  .servicespage-service {
    padding: 40px 0;
  }
  .servicespage-service__heading {
    margin-bottom: 16px;
  }
  .servicespage-service__list ul {
    gap: 24px 0;
  }
  .servicespage-service__list ul li {
    width: 48.75%;
  }
  .servicespage-service__list ul li .image {
    margin-bottom: 8px;
  }
  .servicespage-service__list ul li h3 {
    margin-bottom: 4px;
    font-size: 1.6rem;
  }
  .servicespage-cancer {
    padding: 40px 0;
  }
  .servicespage-cancer::before {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-cancer::after {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-cancer__heading {
    margin-bottom: 16px;
  }
  .servicespage-cancer__heading .eng {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
  .servicespage-cancer__heading h2 {
    font-size: 1.8rem;
  }
  .servicespage-cancer__copy {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  .servicespage-cancer__desc {
    font-size: 1.25rem;
  }
  .servicespage-cancer ul {
    margin-top: 24px;
    gap: 32px;
    padding: 24px 16px;
  }
  .servicespage-cancer ul li h3 {
    margin-bottom: 4px;
    font-size: 1.6rem;
    padding-bottom: 8px;
    background-color: #35B597;
    border-radius: 10px;
    padding: 8px 16px;
    color: #fff;
    text-align: center;
  }
  .servicespage-cancer ul li p {
    margin-top: 16px;
  }
  .servicespage-voice {
    padding: 40px 0;
  }
  .servicespage-voice__heading {
    margin-bottom: 16px;
  }
  .servicespage-voice__items ul li {
    padding: 24px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .servicespage-voice__items ul li .lr {
    flex-direction: column-reverse;
  }
  .servicespage-voice__items ul li .lr .left {
    margin-top: 12px;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .servicespage-voice__items ul li .lr .left h3 {
    display: inline;
    margin-bottom: 12px;
    font-size: 1.6rem;
    border-bottom: solid 2px rgba(255, 236, 93, 0.3);
  }
  .servicespage-voice__items ul li .lr .left h3::after {
    display: none;
  }
  .servicespage-voice__items ul li .lr .left .p {
    margin-top: 16px;
  }
  .servicespage-voice__items ul li .lr .left .name {
    margin-top: 12px;
    font-size: 1.3rem;
    padding: 4px;
  }
  .servicespage-voice__items ul li .lr .right {
    padding-right: 0px;
    width: 140px;
    margin-left: auto;
    margin-right: auto;
  }
  .servicespage-flow {
    padding: 40px 0;
  }
  .servicespage-flow::before {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-flow::after {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-flow__heading {
    margin-bottom: 16px;
  }
  .servicespage-flow__items ol li {
    padding: 32px 16px;
    background-color: #fff;
    border: #F29A76 solid 1px;
    border-radius: 10px;
    margin-top: 24px;
  }
  .servicespage-flow__items ol li .col {
    flex-wrap: wrap;
    align-items: initial;
  }
  .servicespage-flow__items ol li .col .item:nth-of-type(1) {
    width: 56px;
    align-items: flex-start;
  }
  .servicespage-flow__items ol li .col .item:nth-of-type(2) {
    padding-left: 24px;
    width: calc(100% - 56px);
  }
  .servicespage-flow__items ol li .col .item:nth-of-type(2) h3 {
    align-items: flex-start;
    margin-bottom: 4px;
    font-size: 1.7rem;
  }
  .servicespage-flow__items ol li .col .item:nth-of-type(2) h3::before {
    margin-right: 8px;
    font-size: 2.2rem;
  }
  .servicespage-flow__items ol li .col .item:nth-of-type(3) {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }
  .servicespage-flow__items ol li .col .item:nth-of-type(3) div {
    margin-left: auto;
    margin-right: auto;
  }
  .servicespage-price {
    padding: 40px 0;
  }
  .servicespage-price__heading {
    margin-bottom: 16px;
  }
  .servicespage-price__table table thead tr th {
    font-size: 1.4rem;
  }
  .servicespage-price__table table tbody {
    display: block;
  }
  .servicespage-price__table table tbody tr {
    display: block;
  }
  .servicespage-price__table table tbody tr:first-of-type th {
    border-top: none;
  }
  .servicespage-price__table table tbody tr:last-of-type th {
    border-bottom: none;
  }
  .servicespage-price__table table tbody tr th {
    display: block;
    width: 100%;
    padding: 6px 24px;
    border: none;
    font-size: 1.4rem;
    text-align: left;
  }
  .servicespage-price__table table tbody tr td {
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-size: 1.4rem;
  }
  .servicespage-price__table .box {
    margin-top: 24px;
    padding: 24px 16px;
  }
  .servicespage-price__table .box h3 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1.4rem;
  }
  .servicespage-price__table .box p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .servicespage-price__table .box .btn {
    margin-top: 8px;
  }
  .servicespage-faq {
    padding: 40px 0;
  }
  .servicespage-faq::before {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-faq::after {
    height: 2.5px;
    width: 100px;
  }
  .servicespage-faq__heading {
    margin-bottom: 16px;
  }
  .servicespage-faq .faq-item .faq-question {
    margin-top: 8px;
    font-size: 1.5rem;
  }
  .servicespage-faq .faq-item .faq-question .txt {
    display: block;
    padding: 16px 28px;
  }
  .servicespage-faq .faq-item .faq-question::before {
    left: 8px;
    top: 16px;
    font-size: 2rem;
  }
  .servicespage-faq .faq-item .faq-question i {
    right: 16px;
    top: 23px;
    width: 12px;
    height: 12px;
  }
  .servicespage-faq .faq-item .faq-answer::before {
    left: 8px;
    top: 16px;
    font-size: 2rem;
  }
  .servicespage-faq .faq-item.active .faq-answer {
    font-size: 1.3rem;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: background 0.3s;
  }
  .servicespage-faq .faq-item.active .faq-answer .txt {
    padding: 0px 28px;
  }
}/*# sourceMappingURL=services.css.map */