@charset "UTF-8";
/* ----- 共通 ----- */
.bg-blue {
  background-color: #2DB9D0;
}

.bg-rblue {
  background-color: #C7E9EE;
}

.t-blue {
  color: #2DB9D0;
}

.t-accent {
  color: #FFF200;
}

section + section {
  margin-top: 0;
}

p {
  font-size: 1.6rem;
  line-height: 24px;
  color: #2E2E2E;
}

main {
  padding: 0;
}

.inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

.box {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 24px 24px;
  margin: 0 auto;
}
.box-shadow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}

.row-2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.row-2 .col {
  max-width: calc(50% - 24px);
  width: 100%;
  margin: 0;
}
.row-2 .col-content p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 24px;
}
.row-2 .col-content p + p {
  margin-top: 12px;
}
.row-3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.row-3 .col {
  max-width: calc(33.3333333333% - 16px);
  margin: 0;
}

.title-2 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 60px;
  color: #2E2E2E;
  display: block;
  width: fit-content;
  position: relative;
  padding-left: 64px;
  padding-right: 64px;
  margin: 0 auto 40px;
}
.title-2::before, .title-2::after {
  content: "";
  background-image: url("../img/dot_b.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 8px;
}
.title-2::before {
  left: 0;
}
.title-2::after {
  right: 0;
}

.btn-1 {
  text-align: center;
  position: relative;
  color: #fff;
  background-color: #2DB9D0;
  border: 1px solid #2DB9D0;
  border-radius: 36px;
  padding: 18px 20px;
}
.btn-1::after {
  content: "";
  background-image: url("../img/icon-arrow_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.btn-1:hover {
  background-color: #fff;
  color: #2DB9D0;
}
.btn-1:hover::after {
  background-image: url("../img/icon-arrow_b.svg");
  transform: translateY(-50%) rotate(-90deg);
}

.btn-2 {
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

.faq-accordion {
  cursor: pointer;
  max-width: 1000px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #D7D7D7;
  padding: 4px 32px;
  margin: 40px auto 0;
}
.faq-accordion-head::before, .faq-accordion-body::before {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  background-color: #2DB9D0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.faq-accordion-head {
  font-weight: 500;
  position: relative;
  padding: 20px 40px 20px 54px;
}
.faq-accordion-head::before {
  content: "Q";
}
.faq-accordion-head::after {
  content: "";
  background-image: url("../img/icon-arrow_b.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-accordion-head.js-open {
  border-bottom: 1px solid #D7D7D7;
  cursor: pointer;
}
.faq-accordion-head.js-open::after {
  transform: translateY(-50%) rotate(-180deg);
}
.faq-accordion-body {
  display: none;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 54px;
  padding: 30px 0 26px 54px;
}
.faq-accordion-body::before {
  content: "A";
  background-color: #fff;
  color: #2DB9D0;
  border: 1px solid #2DB9D0;
  top: 22%;
  transform: none;
}
.faq-accordion + .faq-accordion {
  margin-top: 16px;
}

/* ----- point ----- */
.point {
  padding-top: 64px;
  padding-bottom: 80px;
}
.point h1 {
  font-family: "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  line-height: 60px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 29px;
}
.point h1 strong {
  font-size: 5.6rem;
  line-height: 60px;
  font-weight: bold;
}
.point h1 span {
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 84px;
}
.point-title {
  font-family: "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: bold;
  line-height: 60px;
  display: flex;
  gap: 24px;
  align-items: center;
  padding-left: 19px;
  margin-bottom: 32px;
}
.point-title .number-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 152px;
  aspect-ratio: 1/1;
  background-color: #2DB9D0;
  border-radius: 50%;
}
.point-title .number-bg span {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 30px;
  color: #FFF200;
}
.point-title .number-bg span:nth-of-type(2) {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 45px;
}
.point figure,
.point .row-2 {
  max-width: 723px;
  width: 100%;
  margin: 0 auto;
}
.point .row-2 {
  margin-top: 24px;
  align-items: center;
}
.point .row-2 p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 24px;
}
.point .row-2 p:nth-of-type(1) span {
  font-size: 2rem;
  font-weight: 800;
}
.point .row-2 p:nth-of-type(2) span {
  font-size: 2rem;
  font-weight: 700;
}
.point .row-3 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.point .row-3 .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 16px;
}
.point .row-3 .point-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 30px;
  gap: 8px;
  padding-left: 0;
}
.point .row-3 .point-title .number-bg {
  width: 80px;
}
.point .row-3 .point-title .number-bg span {
  font-size: 1.4rem;
  line-height: 16.1px;
  color: #FFF200;
}
.point .row-3 .point-title .number-bg span:nth-of-type(2) {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 28.1px;
}
.point figcaption {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 18px;
  margin-top: 4px;
}

/* ----- spec ----- */
.spec {
  padding-top: 80px;
  padding-bottom: 80px;
}
.spec .box {
  padding: 48px 88px;
}
.spec .row-2 {
  gap: 40px;
}
.spec .row-2 .col {
  max-width: calc(50% - 40px);
}
.spec .row-2 .col p {
  font-weight: 500;
  margin-bottom: 8px;
}
.spec .row-2 .col h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 32px;
}
.spec-accordion {
  margin-top: 24px;
}
.spec-accordion-head {
  background-color: #2DB9D0;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 14px 0 15px;
  text-align: center;
  cursor: pointer;
}
.spec-accordion-head h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
  padding-right: 16px;
}
.spec-accordion-head h3::after {
  content: "";
  background-image: url("../img/icon-arrow_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 24px;
  height: 24px;
  right: -16px;
  transform: rotate(90deg);
}
.spec-accordion-body {
  display: none;
  border: 1px solid #2DB9D0;
  border-radius: 0 0 8px 8px;
  padding: 32px 48px;
}
.spec-accordion-body table {
  width: 100%;
}
.spec-accordion-body table tr {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid #D7D7D7;
  padding: 16px 0;
}
.spec-accordion-body table th {
  min-width: 160px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  flex-shrink: 0;
}
.spec-accordion-body table td {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 24px;
  flex: 1;
}
.spec-accordion-body.js-open {
  display: block;
}

/* ----- features ----- */
.features {
  padding: 80px 0;
}
.features-title {
  font-size: 7.2rem;
  font-weight: 900;
  line-height: 114px;
  text-align: center;
  color: #fff;
  position: relative;
  max-width: 376px;
  width: 100%;
}
.features-title::before, .features-title::after {
  content: "";
  display: block;
  height: 8px;
  background-image: url("../img/dot_y.svg");
  background-repeat: repeat-x;
  background-size: auto 8px;
}
.features-title span {
  display: block;
}
.features-title span:nth-child(2)::before {
  content: "";
  display: block;
  height: 8px;
  background-image: url("../img/dot_y.svg");
  background-repeat: repeat-x;
  background-size: auto 8px;
}
.features .col-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 33px;
  min-height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.features section {
  max-width: 1000px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.features section:nth-of-type(1) .row-2 .col p {
  font-weight: 400;
}
.features section:nth-of-type(1) .row-3 .box {
  display: flex;
  flex-direction: column;
}
.features section:nth-of-type(1) {
  margin-bottom: 48px;
}
.features .row-1_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.features .row-1_2 .col-title {
  display: block;
  min-height: auto;
}
.features .row-2 .col {
  flex: 1;
  max-width: 100%;
}
.features .row-2 .col-img {
  max-width: 184px;
  width: 100%;
}
.features .row-3 {
  margin-top: 16px;
}
.features-card .card-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.features-card .card-item h2 {
  text-align: center;
}
.features-card .card-item p {
  margin: 0;
}
.features-card .card-item p span {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.features-card .card-item figure {
  margin-top: auto;
  padding-top: 16px;
}
.features-card .card-item figure img {
  width: 100%;
  height: auto;
}
.features-card .card-item:nth-of-type(1) p {
  text-align: center;
}
.features-card + p {
  margin-top: 16px;
  color: #fff;
}
.features .price h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 242, 0, 0) 0%, rgba(255, 242, 0, 0.7) 9.62%, #FFF200 20.15%, #FFF200 70.19%, rgba(255, 242, 0, 0.7) 89.9%, rgba(255, 242, 0, 0) 100%);
  padding: 5px 0;
  margin-bottom: 16px;
}
.features .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
}
.features .price p {
  color: #fff;
  margin-bottom: 5px;
}
.features .price li {
  color: #fff;
  margin-top: 0;
}

/* ----- flow ----- */
.flow {
  padding: 80px 0;
}
.flow .card-list {
  display: flex;
  gap: 16px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.flow .card-item {
  max-width: 16.6666666667% -16;
  width: 100%;
  position: relative;
}
.flow .card-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 59%;
  right: -13px;
  width: 8px;
  height: 16px;
  background-color: #2DB9D0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}
.flow .card-item:last-child::after {
  content: none;
}
.flow .card-head {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 27px;
  text-align: center;
  background-color: #2DB9D0;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 15px 16px 14px;
}
.flow .card-body {
  border: 1px solid #D7D7D7;
  border-radius: 0 0 8px 8px;
  padding: 16px;
}
.flow .card-body figure {
  width: 88px;
  height: 88px;
  margin: 0 auto;
}
.flow .card-item:nth-of-type(3) .card-head {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 21px;
  padding: 8px 16px 6px;
}

/* ----- contact ----- */
.contact {
  padding: 72px 0 80px;
}
.contact h3 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 33px;
  text-align: center;
  margin-bottom: 24px;
}
.contact .contact-box {
  max-width: 800px;
  width: 100%;
  background: #FEFBEC;
  padding: 16px;
  border-radius: 12px;
  margin: 0 auto 24px;
}
.contact .contact-box p {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 27px;
  color: #2DB9D0;
}
.contact .contact-box p:nth-of-type(1) {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.contact .contact-box p:nth-of-type(1)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 670px;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #C5BD93 0px, #C5BD93 4px, transparent 4px, transparent 8px);
}
.contact .contact-box p:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  width: fit-content;
  padding-left: 40px;
  margin: 0 auto;
}
.contact .contact-box p:nth-of-type(2)::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon-info.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact .contact-box p:nth-of-type(2) span {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 21px;
}
.contact .box {
  padding: 32px;
}
.contact .box:nth-of-type(2) {
  text-align: center;
}
.contact .box:nth-of-type(2) h3 {
  margin-bottom: 0;
}
.contact .box:nth-of-type(2) p:nth-of-type(1) {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 72px;
  color: #2DB9D0;
  position: relative;
  width: fit-content;
  padding-left: 67px;
  margin: 0 auto;
}
.contact .box:nth-of-type(2) p:nth-of-type(1)::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon-freecall.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 51px;
  height: 40px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact .box:nth-of-type(2) a {
  cursor: pointer;
  text-decoration: none;
}
.contact .box + .box {
  margin-top: 24px;
}

/* ----- faq ----- */
.faq {
  padding: 80px 0 80px;
}

/* ---------- SP ---------- */
@media screen and (max-width: 850px) {
  .box {
    padding: 24px 16px;
  }
  .row-2 {
    flex-direction: column;
    gap: 12px;
  }
  .row-2 .col {
    max-width: 100%;
  }
  .row-3 {
    flex-direction: column;
    gap: 0;
  }
  .row-3 .col {
    max-width: 100%;
    width: 100%;
  }
  .title-2 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 36px;
    text-align: center;
    padding-left: 48px;
    padding-right: 48px;
    margin: 0 auto 32px;
  }
  .btn-2 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 27px;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
  }
  .faq-accordion {
    padding: 4px 20px;
    margin: 32px auto 0;
  }
  .faq-accordion-head::before, .faq-accordion-body::before {
    font-size: 1.8rem;
    line-height: 27px;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
  }
  .faq-accordion-head {
    padding: 20px 32px 20px 48px;
  }
  .faq-accordion-head::after {
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .faq-accordion-body {
    padding-top: 27px;
    padding-left: 48px;
    padding-bottom: 20px;
  }
  .faq-accordion-body::before {
    top: 20px;
    transform: none;
    margin-top: 0;
  }
  /* ----- point ----- */
  .point {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .point h1 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 26px;
  }
  .point h1 strong {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 26px;
  }
  .point h1 span {
    font-size: 3.2rem;
    line-height: 48px;
  }
  .point-title {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 27px;
    gap: 16px;
    padding-left: 0;
    margin-bottom: 21px;
  }
  .point-title .number-bg {
    width: 80px;
  }
  .point-title .number-bg span {
    font-size: 1.4rem;
    line-height: 16.1px;
  }
  .point-title .number-bg span:nth-of-type(2) {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 28.1px;
  }
  .point figure,
  .point .row-2 {
    max-width: 100%;
    padding-left: 13px;
    padding-right: 14px;
  }
  .point figure + P {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
  }
  .point .row-2 {
    margin-top: 32px;
  }
  .point .row-2 p span {
    font-size: 1.6rem !important;
  }
  .point .row-3 .col {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 16px;
  }
  .point .row-3 .point-title {
    align-items: center;
    margin-bottom: 18px;
  }
  /* ----- spec ----- */
  .spec {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .spec .box {
    padding: 40px 20px;
  }
  .spec .row-2 {
    gap: 16px;
  }
  .spec .row-2 .col {
    max-width: 100%;
    text-align: center;
  }
  .spec .row-2 .col p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 4pxs;
  }
  .spec .row-2 .col h3 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 0;
  }
  .spec .row-2 a {
    margin-top: 8px;
  }
  .spec-accordion {
    margin-top: 32px;
  }
  .spec-accordion-head {
    padding: 12px 0 15px;
    text-align: center;
  }
  .spec-accordion-head h3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 24px;
    padding-right: 12px;
  }
  .spec-accordion-body {
    padding: 24px 16px;
  }
  .spec-accordion-body table {
    width: 100%;
  }
  .spec-accordion-body table tr {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }
  .spec-accordion-body table tr:nth-of-type(1) {
    padding-top: 0;
  }
  /* ----- features ----- */
  .features {
    padding: 64px 0;
  }
  .features-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 70px;
    max-width: 224px;
  }
  .features .col-title {
    font-size: 2rem;
    line-height: 30px;
    text-align: center;
    display: block;
    min-height: auto;
  }
  .features section {
    max-width: 100%;
  }
  .features section:nth-of-type(1) .row-3 {
    gap: 16px;
  }
  .features section:nth-of-type(1) {
    margin-bottom: 48px;
  }
  .features .row-1_2 {
    flex-direction: column;
    gap: 32px;
  }
  .features .row-2 .col {
    flex: 1;
    max-width: 100%;
  }
  .features .row-2 .col-img {
    max-width: 275px;
    width: 100%;
    margin: 0 auto;
  }
  .features .row-2 .col-img:nth-of-type(1) {
    max-width: 184px;
  }
  .features .row-2 .col-img:nth-of-type(9) {
    max-width: 171px;
  }
  .features .row-3 {
    margin-top: 16px;
  }
  .features-card + p {
    font-size: 1.4rem;
    line-height: 21px;
  }
  .features .price h3 {
    font-weight: bold;
    margin-bottom: 23px;
  }
  .features .price-row {
    flex-direction: column;
    gap: 0;
  }
  .features .price p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 21px;
    margin-top: 20px;
    margin-bottom: 7px;
  }
  .features .price li {
    font-size: 1.4rem;
    line-height: 21px;
  }
  /* ----- flow ----- */
  .flow {
    padding: 64px 20px;
  }
  .flow .card-list {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
    max-width: 100%;
  }
  .flow .card-item {
    margin-bottom: 16px;
  }
  .flow .card-item::after {
    left: -13px;
  }
  .flow .card-item:nth-of-type(odd) {
    max-width: calc(50% - 16px);
    margin-left: 16px;
  }
  .flow .card-item:nth-of-type(even) {
    max-width: calc(50% - 27px);
    margin-left: 27px;
  }
  .flow .card-item:first-child::after {
    content: none;
  }
  .flow .card-item:last-child::after {
    content: "";
  }
  .flow .card-head {
    font-size: 1.6rem;
    line-height: 24px;
    padding: 12px 16px;
  }
  .flow .card-body figure {
    width: 72px;
    height: 72px;
  }
  .flow .card-item:nth-of-type(3) .card-head {
    padding: 3px 13px;
  }
  /* ----- contact ----- */
  .contact {
    padding: 64px 0;
  }
  .contact h3 {
    font-size: 2rem;
    line-height: 30px;
    margin-bottom: 16px;
  }
  .contact .contact-box {
    padding: 16px 20px;
  }
  .contact .contact-box p:nth-of-type(2) {
    padding-left: 44px;
  }
  .contact .contact-box p:nth-of-type(2)::before {
    left: 8px;
  }
  .contact .contact-box p:nth-of-type(2) span {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 21px;
  }
  .contact .box {
    padding: 32px 20px 31px;
  }
  .contact .box:nth-of-type(2) h3 {
    margin-bottom: 4;
  }
  .contact .box:nth-of-type(2) p:nth-of-type(1) {
    font-size: 3.6rem;
    line-height: 54px;
    padding-left: 47px;
  }
  .contact .box:nth-of-type(2) p:nth-of-type(1)::before {
    width: 31px;
    height: 24px;
  }
  /* ----- faq ----- */
  .faq {
    padding: 64px 0 80px;
  }
}
@media screen and (max-width: 380px) {
  .contact .box:nth-of-type(2) p:nth-of-type(1) {
    font-size: 2.6rem;
  }
}