/* Scss Document */
/* Scss Document */
@media only screen and (max-width: 1920px) {
  .hidden-br {
    display: none;
  }
}
@media only screen and (max-width: 1600px) {
  .hidden-br {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .hidden-br {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .hidden-br {
    display: block;
  }
}

.quality__inner {
  max-width: 1920px;
  padding: 0;
}

.quality__wrap {
  display: flex;
  align-items: center;
  height: auto;
  background: #f9f8f5;
}
@media only screen and (max-width: 640px) {
  .quality__wrap {
    flex-direction: column;
  }
}

.quality__body {
  flex: 1;
  padding: 0 calc(160 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .quality__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 calc(90 / 1200 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .quality__body {
    padding: calc(50 / 640 * 100vw) 0;
    text-align: center;
  }
}
.quality__body .heading-title {
  margin-bottom: 4em;
}
@media only screen and (max-width: 1200px) {
  .quality__body .heading-title {
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 640px) {
  .quality__body .heading-title {
    margin-bottom: calc(30 / 640 * 100vw);
  }
}

.quality__text {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1200px) {
  .quality__text {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 640px) {
  .quality__text {
    font-size: calc(26 / 640 * 100vw);
    margin-top: 0;
  }
}

.quality__image {
  width: calc(1151 / 1920 * 100vw);
  max-width: 1151px;
  height: auto;
}
@media only screen and (max-width: 1200px) {
  .quality__image {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .quality__image {
    width: 100%;
  }
}
.quality__image img {
  display: block;
  width: 100%;
  height: auto;
}

.control__content {
  margin-top: calc(135 / 1920 * 100vw);
  margin-bottom: calc(130 / 1920 * 100vw);
}

.control__mttl {
  font-size: calc(36 / 1920 * 100vw);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 3.6px;
  margin-top: calc(69 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .control__mttl {
    font-size: calc(36 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .control__mttl {
    font-size: calc(32 / 640 * 100vw);
  }
}

.control__card {
  margin-top: calc(84 / 1920 * 100vw);
}
@media only screen and (max-width: 640px) {
  .control__card {
    margin-top: calc(70 / 640 * 100vw);
  }
}

.control__lists {
  display: flex;
  justify-content: space-between;
  max-width: 950px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .control__lists {
    flex-direction: column;
    align-items: center;
    gap: calc(50 / 640 * 100vw);
  }
}

.control__list {
  position: relative;
}
@media only screen and (max-width: 640px) {
  .control__list {
    display: flex;
    justify-content: space-between;
  }
}
.control__list::before {
  content: "";
  position: absolute;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: calc(56 / 1920 * 100vw);
  background: linear-gradient(138deg, #0D7CCE 17.39%, #1AAFD8 86.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  top: -15px;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .control__list::before {
    font-size: calc(56 / 1600 * 100vw);
    left: 8px;
  }
}
@media only screen and (max-width: 1200px) {
  .control__list::before {
    font-size: calc(56 / 1200 * 100vw);
    left: 8px;
  }
}
@media only screen and (max-width: 640px) {
  .control__list::before {
    font-size: calc(56 / 640 * 100vw);
    left: 0;
    top: -10px;
  }
}

.control__list:nth-of-type(1)::before {
  content: "01";
}

.control__list:nth-of-type(2)::before {
  content: "02";
}

.control__list:nth-of-type(3)::before {
  content: "03";
}

.control__list-image {
  max-width: 270px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .control__list-image {
    width: 100%;
    max-width: calc(230 / 640 * 100vw);
    margin-right: calc(30 / 640 * 100vw);
  }
}
.control__list-image img {
  display: block;
  width: 100%;
  height: auto;
}

.control__list:nth-of-type(1) .control__list-image::after {
  content: "";
  position: absolute;
  background-image: url("../images/support/arrow-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(30 / 1920 * 100vw);
  height: calc(30 / 1920 * 100vw);
  top: 50%;
  right: calc(-50 / 1920 * 100vw);
  transform: translateY(-50%);
}
@media only screen and (max-width: 1600px) {
  .control__list:nth-of-type(1) .control__list-image::after {
    right: calc(-52 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .control__list:nth-of-type(1) .control__list-image::after {
    right: calc(-80 / 1600 * 100vw);
    width: calc(60 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .control__list:nth-of-type(1) .control__list-image::after {
    bottom: calc(-37 / 640 * 100vw);
    right: 41%;
    transform: translateX(-50%) rotate(90deg);
    top: auto;
    width: calc(30 / 640 * 100vw);
    height: calc(30 / 640 * 100vw);
  }
}

.control__list:nth-of-type(2) .control__list-image::after {
  content: "";
  position: absolute;
  background-image: url("../images/support/arrow-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(30 / 1920 * 100vw);
  height: calc(30 / 1920 * 100vw);
  top: 50%;
  right: calc(-50 / 1920 * 100vw);
  transform: translateY(-50%);
}
@media only screen and (max-width: 1600px) {
  .control__list:nth-of-type(2) .control__list-image::after {
    right: calc(-52 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .control__list:nth-of-type(2) .control__list-image::after {
    right: calc(-80 / 1600 * 100vw);
    width: calc(60 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .control__list:nth-of-type(2) .control__list-image::after {
    bottom: calc(-37 / 640 * 100vw);
    right: 41%;
    transform: translateX(-50%) rotate(90deg);
    top: auto;
    width: calc(30 / 640 * 100vw);
    height: calc(30 / 640 * 100vw);
  }
}

.control__list-text {
  margin-top: calc(19 / 1920 * 100vw);
  max-width: 270px;
}
@media only screen and (max-width: 640px) {
  .control__list-text {
    flex: 1;
    margin-top: calc(10 / 640 * 100vw);
  }
}

.control__list-sttl {
  font-size: calc(20 / 1920 * 100vw);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1600px) {
  .control__list-sttl {
    font-size: calc(24 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .control__list-sttl {
    font-size: calc(24 / 1200 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .control__list-sttl {
    font-size: calc(26 / 640 * 100vw);
  }
}

.control__list-desc {
  line-height: 1.5;
  letter-spacing: 1.6px;
  margin-top: calc(17 / 1920 * 100vw);
}
@media only screen and (max-width: 640px) {
  .control__list-desc {
    margin-top: calc(10 / 640 * 100vw);
  }
}

.after-support__content {
  padding-top: calc(90 / 1920 * 100vw);
  padding-bottom: calc(90 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .after-support__content {
    padding-top: calc(90 / 1200 * 100vw);
    padding-bottom: calc(100 / 1200 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .after-support__content {
    padding-top: calc(70 / 640 * 100vw);
    padding-bottom: calc(100 / 640 * 100vw);
  }
}

.after-support__inner {
  max-width: 1580px;
}

.after-support__wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: calc(94 / 1920 * 100vw);
}
@media only screen and (max-width: 1600px) {
  .after-support__wrap {
    gap: calc(60 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .after-support__wrap {
    flex-direction: column;
    gap: calc(30 / 640 * 100vw);
  }
}

.after-support__body {
  flex: 1;
}

.after-support__sttl {
  font-size: calc(36 / 1920 * 100vw);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 3.6px;
  margin-top: calc(42 / 1920 * 100vw);
  margin-bottom: calc(42 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .after-support__sttl {
    font-size: calc(36 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .after-support__sttl {
    font-size: calc(32 / 640 * 100vw);
    margin-top: calc(30 / 640 * 100vw);
    margin-bottom: calc(30 / 640 * 100vw);
  }
}

.after-support__text {
  line-height: 1.5;
  letter-spacing: 1.6px;
}

.after-support__image {
  width: calc(950 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .after-support__image {
    width: calc(740 / 1200 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .after-support__image {
    width: 100%;
  }
}
.after-support__image img {
  display: block;
}

.warranty__content {
  padding-bottom: calc(100 / 1920 * 100vw);
}
@media only screen and (max-width: 1200px) {
  .warranty__content {
    padding-bottom: calc(100 / 1200 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .warranty__content {
    padding-bottom: calc(100 / 640 * 100vw);
  }
}

.warranty__wrap {
  margin-top: calc(52 / 1920 * 100vw);
}

.warranty__lists {
  display: flex;
}
@media only screen and (max-width: 640px) {
  .warranty__lists {
    flex-direction: column;
    gap: calc(50 / 640 * 100vw);
  }
}

.warranty__list {
  flex: 1;
}

.warranty__list:nth-of-type(1),
.warranty__list:nth-of-type(2) {
  padding-right: calc(45 / 1920 * 100vw);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 640px) {
  .warranty__list:nth-of-type(1),
  .warranty__list:nth-of-type(2) {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: calc(50 / 640 * 100vw);
  }
}

.warranty__list:nth-of-type(2),
.warranty__list:nth-of-type(3) {
  padding-left: calc(45 / 1920 * 100vw);
}
@media only screen and (max-width: 640px) {
  .warranty__list:nth-of-type(2),
  .warranty__list:nth-of-type(3) {
    padding-left: 0;
  }
}

.warranty__sttl {
  color: #0D7CCE;
  font-size: 20px;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1600px) {
  .warranty__sttl {
    font-size: calc(20 / 1600 * 100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .warranty__sttl {
    font-size: calc(20 / 1200 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .warranty__sttl {
    font-size: calc(28 / 640 * 100vw);
  }
}

.warranty__text {
  line-height: 1.5;
  letter-spacing: 1.6px;
  margin-top: calc(17 / 1920 * 100vw);
}

.warrantyv__image {
  max-width: 300px;
  margin-top: calc(30 / 1920 * 100vw);
}
.warrantyv__image img {
  display: block;
}
@media only screen and (max-width: 640px) {
  .warrantyv__image {
    margin: 20px auto 0;
  }
}/*# sourceMappingURL=support.css.map */