.cleaning-target {
  position: relative;

  .wave-bg-top {
    position: absolute;
    bottom: 0;
  }

  .cleaning-target__inner {
    max-width: var(--container-md);
    margin: 80px auto 0;
  }

  .cleaning-target-top {
    .cleaning-target-top-title {
      text-align: center;
      font-size: var(--section-title);
      color: var(--color-primary);
    }

    p {
      margin-top: var(--space-md);
    }
  }

  .cleaning-target-wrap {
    position: relative;
    margin-top: 100px;

    .cleaning-target-bg {
      img:nth-child(1) {
        position: absolute;
        top: -52px;
        left: 130px;
        height: 165px;
        z-index: 1;
      }

      img:nth-child(2) {
        position: absolute;
        top: -52px;
        right: 130px;
        height: 165px;
        z-index: 1;
      }
    }

    .cleaning-target__title {
      display: flex;
      align-items: center;
      gap: 10px;
      text-align: center;
      width: fit-content;
      margin: auto;
      font-size: 40px;

      &::after {
        display: inline-block;
        content: "";
        width: 56px;
        height: 2px;
        background-color: var(--color-primary);
        transform: rotate(-65deg);
      }

      &::before {
        display: inline-block;
        content: "";
        width: 56px;
        height: 2px;
        background-color: var(--color-primary);
        transform: rotate(65deg);
      }
    }

    .cleaning-target__list {
      display: grid;
      grid-template-columns: repeat(2, 3fr);
      gap: 16px;
      margin-top: 32px;

      li {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 48px;
        border-radius: 24px;
        background-color: var(--color-primary);

        .target__item-inner {
          display: flex;
          align-items: start;
          gap: 16px;
        }

        img {
          margin-top: 8px;
        }

        p {
          font-size: 20px;
          font-weight: bold;
          color: var(--color-bg);
        }
      }
    }
  }
}


.cleaning-reasons {
  padding-top: 240px;

  .cleaning-reasons-title {
    span {
      color: #e1ebdd;
    }
  }

  .cleaning-reasons__inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 48px;

    .cleaning-reasons__card {
      display: flex;
      align-items: center;
      gap: 80px;

      .cleaning-reasons__img {
        width: 40%;
      }

      .cleaning-reasons__text-box {
        width: 60%;

        h3 {
          font-size: 36px;
          line-height: 1.6;
        }

        p {
          margin-top: 32px;
        }
      }
    }
  }
}


.cleaning-service {
  .cleaning-service__inner {
    display: flex;
    flex-direction: column;
    gap: 160px;
    margin-top: 64px;
  }

  .cleaning-service__unit {
    position: relative;
    display: flex;
    align-items: end;
    gap: 80px;
    z-index: 1;

    /*&::after {
      position: absolute;
      bottom: -64px;
      content: "";
      width: 10%;
      height: 103%;
      border-radius: 24px;
      background-color: var(--color-accent);
      z-index: -1;
    }*/

    &::before {
      position: absolute;
      right: 0;
      bottom: -39px;
      content: "";
      width: 95%;
      height: 93%;
      border-radius: 24px;
      background-color: var(--color-bg);
      z-index: -1;
    }

    .cleaning-service__img {
      width: 55%;

      img {
        border-radius: 24px;
      }
    }

    .cleaning-service__body {
      width: 45%;
      padding-right: 80px;

      .service-number {
        display: flex;
        align-items: end;
        gap: 12px;

        span {
          font-size: 18px;
          font-weight: 900;
          line-height: 1.3;
          color: var(--color-primary);
        }
      }

      h3 {
        margin-top: 8px;
        font-size: 28px;
      }

      p {
        margin-top: 16px;
      }
    }
  }

  .reverse {
    flex-direction: row-reverse;

    &::before {
      position: absolute;
      left: 0;
      bottom: -39px;
      content: "";
      width: 95%;
      height: 96%;
      border-radius: 24px;
      background-color: var(--color-bg);
      z-index: -1;
    }

    .cleaning-service__body {
      padding-left: 80px;
      padding-right: 0;
    }
  }
}


.cleaning-support {
  .cleaning-support__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;

    .cleaning-support__card {
      padding: 32px;
      border-radius: 24px;
      background-color: var(--color-bg);

      .cleaning-support__icon {
        text-align: center;
      }

      h3 {
        text-align: center;
        margin-top: 16px;
        font-size: 20px;
      }

      p {
        margin-top: 12px;
      }
    }
  }
}


.cleaning-flow {
  margin-top: 320px;

  .cleaning-flow__number-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    max-width: 862px;
    padding: 0;
    margin: 64px auto 0;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, #297048, #BDE881);
      z-index: 1;
    }
  }

  .cleaning-flow__number {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 3px solid transparent;
    border-radius: 50%;
    background-image:
      linear-gradient(#fff, #fff),
      linear-gradient(135deg, #297048, #BDE881);
    background-origin: border-box;
    background-clip: content-box, border-box;
    z-index: 2;

    .gd-number {
      font-size: 20px;
      font-weight: bold;
      background: linear-gradient(135deg, #297048, #BDE881);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
    }
  }

  .cleaning-flow__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    margin-top: 48px;

    .cleaning-flow__item {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: start;

      .cleaning-flow__number_sp {
        display: none;
      }

      h3 {
        text-align: center;
        font-size: 24px;
        color: var(--color-primary);
      }

      img {
        height: 267px;
        margin: 24px auto 0;
      }

      p {
        margin-top: 24px;
      }

      .cleaning-flow-arrow {
        position: absolute;
        top: 40%;
        right: -64px;
        transform: translateY(-50%);

        img {
          margin: 0;
          height: 64px;
        }
      }
    }
  }
}


.cleaning-price {
  margin-top: 420px;

  .cleaning-price-wrap {
    max-width: 1024px;
    width: 100%;
    margin: 48px auto 0;

    .cleaning-price__box {
      padding: 48px;
      border-radius: 24px;
      border: 1px solid var(--color-border);

      h3 {
        font-size: 24px;
        color: var(--color-primary);
      }

      .cleaning-price__amount {
        margin-top: 16px;

        span {
          font-weight: 500;
        }

        p {
          margin-top: 4px;
          font-size: 32px;
          font-weight: 900;
          line-height: 1;
        }

        .color-gr {
          font-size: 64px;
          font-weight: 900;
          color: var(--color-primary);
        }

        .space {
          margin-right: 4px;
        }

        .wave {
          font-size: 64px;
          color: var(--color-text);
        }

        .annotation {
          margin-top: 16px;
          font-size: 14px;
          font-weight: 500;
          color: #888888;
        }
      }

      .cleaning-price__note {
        margin-top: 24px;
      }
    }
  }
}


.cleaning-faq {
  .cleaning-faq-inner {
    max-width: var(--container-md);
    margin: auto;

    .question-wrap {
      display: grid;
      grid-template-columns: repeat(1, 7fr);
      gap: var(--space-sm);
      margin-top: var(--space-xl);

      .question-item {
        padding: var(--space-md);
        border-radius: var(--radius-sm);
        background-color: var(--color-bg-light);

        .question {
          position: relative;
          display: flex;
          align-items: center;
          gap: 16px;
          font-size: var(--font-lg);
          cursor: pointer;

          span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            font-size: 18px;
            font-weight: 700;
            border-radius: var(--radius-round);
            color: var(--color-bg);
            background-color: var(--color-primary);
          }

          h3 {
            flex: 1;
            font-weight: 700;
          }

          img {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            transition: transform 0.4s ease;
          }
        }

        .answer {
          display: flex;
          align-items: center;
          gap: 16px;
          max-height: 0;
          font-weight: 500;
          opacity: 0;
          overflow: hidden;
          transition:
            max-height 0.4s ease,
            opacity 0.3s ease;

          span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            font-size: 18px;
            font-weight: 700;
            border-radius: var(--radius-round);
            border: 1px solid var(--color-primary);
            color: var(--color-primary);
          }

          p {
            flex: 1;
          }
        }
      }

      .question-item.is-open img {
        transform: translateY(-60%) rotate(180deg);
      }

      .question-item.is-open .answer {
        max-height: 500px;
        opacity: 1;
        margin-top: 16px;
      }
    }
  }
}


@media (max-width:1200px) {}


@media (max-width:1024px) {
  .cleaning-target {
    margin: 64px auto 0;

    .cleaning-target__inner {
      max-width: 768px;
      padding: 0 16px;
      margin: 0 auto;

      .cleaning-target-top {
        .cleaning-target-top-title {
          font-size: 40px;
        }

        p {
          margin-top: 24px;
        }
      }

      .cleaning-target-wrap {
        margin-top: 72px;

        .cleaning-target-bg {
          img:nth-child(1) {
            top: -45px;
            left: 64px;
            height: 140px;
          }

          img:nth-child(2) {
            top: -45px;
            right: 64px;
            height: 140px;
          }
        }

        .cleaning-target__title {
          font-size: 32px;
        }

        .cleaning-target__list {
          margin-top: 24px;
        }
      }
    }
  }


  .cleaning-reasons {
    padding-top: 120px;

    .cleaning-reasons__inner {
      gap: 64px;
      margin-top: 40px;

      .cleaning-reasons__card {
        gap: 64px;

        .cleaning-reasons__text-box {
          h3 {
            font-size: 32px;
          }

          p {
            margin-top: 24px;
          }
        }
      }
    }
  }


  .cleaning-service {
    .cleaning-service__inner {
      gap: 48px;
    }

    .cleaning-service__unit {
      flex-direction: column;
      gap: 0;
      border-radius: 24px;

      &::before {
        bottom: 0;
        width: 100%;
        height: 100%;
      }

      .cleaning-service__img {
        width: 100%;

        img {
          border-radius: 24px 24px 0 0;
        }
      }

      .cleaning-service__body {
        width: 100%;
        margin-top: -46px;
        padding: 32px;
        border-radius: 0 0 24px 24px;

        .service-number {
          img {
            height: 45px;
          }
        }

        p {
          margin-top: 16px;
        }
      }
    }
  }


  .cleaning-support {
    .cleaning-support__grid {
      grid-template-columns: repeat(1, 3fr);
      gap: 24px;
      margin: 32px auto 0;

      .cleaning-support__card {
        h3 {
          margin-top: 20px;
        }

        p {
          margin-top: 16px;
        }
      }
    }
  }


  .cleaning-flow {
    margin-top: 420px;

    .cleaning-flow__number-list {
      display: none;
    }

    .cleaning-flow__grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 100px;
      margin-top: 40px;

      .cleaning-flow__item {
        .cleaning-flow__item-title {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 12px;
        }

        .cleaning-flow__number_sp {
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 32px;
          height: 32px;
          border: 3px solid transparent;
          border-radius: 50%;
          background-image:
            linear-gradient(#fff, #fff),
            linear-gradient(135deg, #297048, #BDE881);
          background-origin: border-box;
          background-clip: content-box, border-box;
          z-index: 2;

          .gd-number {
            font-size: 18px;
            font-weight: 900;
            background: linear-gradient(135deg, #297048, #BDE881);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
          }
        }

        h3 {
          font-size: 28px;
        }

        img {
          height: 280px;
        }

        .cleaning-flow-arrow {
          top: inherit;
          right: inherit;
          bottom: -80px;
          left: 50%;
          transform: translateX(-50%) rotate(90deg);
        }
      }
    }
  }


  .cleaning-price {
    .cleaning-price-wrap {
      grid-template-columns: repeat(1, 1fr);
      gap: 32px;

      .cleaning-price__box {
        .cleaning-price__amount {
          p {
            margin-top: 0;
            font-size: 28px;
          }

          .color-gr {
            font-size: 56px;
          }

          .wave {
            font-size: 56px;
          }
        }
      }
    }
  }


  .cleaning-faq {
    padding: 0 16px;

    .cleaning-faq-inner {
      .question-wrap {
        margin-top: clamp(2rem, 0.585rem + 5.03vw, 3rem);

        .question-item {
          .question {
            font-size: clamp(1.125rem, 0.948rem + 0.63vw, 1.25rem);

            span {
              width: clamp(1.875rem, 0.991rem + 3.14vw, 2.5rem);
              height: clamp(1.875rem, 0.991rem + 3.14vw, 2.5rem);
              font-size: clamp(0.813rem, 0.37rem + 1.57vw, 1.125rem);
            }
          }

          .answer {
            align-items: baseline;
            font-size: clamp(1.125rem, 0.948rem + 0.63vw, 1.25rem);

            span {
              width: clamp(1.875rem, 0.991rem + 3.14vw, 2.5rem);
              height: clamp(1.875rem, 0.991rem + 3.14vw, 2.5rem);
              font-size: clamp(0.813rem, 0.37rem + 1.57vw, 1.125rem);
            }
          }
        }
      }
    }
  }

}

@media (max-width:768px) {
  .cleaning-target {
    margin: clamp(3rem, 1.585rem + 5.03vw, 4rem) auto 0;

    .cleaning-target__inner {
      .cleaning-target-top {
        .cleaning-target-top-title {
          font-size: clamp(2rem, 1.292rem + 2.52vw, 2.5rem);
        }

        p {
          margin-top: clamp(1rem, 0.292rem + 2.52vw, 1.5rem);
        }
      }

      .cleaning-target-wrap {
        margin-top: clamp(3.5rem, -0.392rem + 13.84vw, 6.25rem);

        .cleaning-target-bg {
          img:nth-child(1) {
            top: -48px;
            left: clamp(0.125rem, -5.358rem + 19.5vw, 4rem);
            height: clamp(5rem, -0.307rem + 18.87vw, 8.75rem);
          }

          img:nth-child(2) {
            top: -48px;
            right: clamp(0.125rem, -5.358rem + 19.5vw, 4rem);
            height: clamp(5rem, -0.307rem + 18.87vw, 8.75rem);
          }
        }

        .cleaning-target__title {
          font-size: clamp(1.5rem, 0.792rem + 2.52vw, 2rem);
          gap: 0;

          &::before {
            width: clamp(2.5rem, 1.085rem + 5.03vw, 3.5rem);
          }

          &::after {
            width: clamp(2.5rem, 1.085rem + 5.03vw, 3.5rem);
          }
        }

        .cleaning-target__list {
          margin-top: clamp(1rem, 0.292rem + 2.52vw, 1.5rem);
          gap: clamp(0.75rem, 0.396rem + 1.26vw, 1rem);

          li {
            .target__item-inner {
              gap: clamp(0.75rem, 0.396rem + 1.26vw, 1rem);
            }

            img {
              margin-top: clamp(0.375rem, 0.198rem + 0.63vw, 0.5rem);
            }

            p {
              font-size: clamp(1.125rem, 0.948rem + 0.63vw, 1.25rem);
            }
          }
        }
      }
    }
  }


  .cleaning-reasons {
    padding-top: clamp(6.25rem, 4.481rem + 6.29vw, 7.5rem);

    .cleaning-reasons__inner {
      gap: clamp(3rem, 1.585rem + 5.03vw, 4rem);
      margin-top: clamp(1.5rem, 0.085rem + 5.03vw, 2.5rem);

      .cleaning-reasons__card {
        gap: clamp(1.5rem, -2.038rem + 12.58vw, 4rem);

        .cleaning-reasons__text-box {
          h3 {
            font-size: clamp(1.75rem, 1.396rem + 1.26vw, 2rem);
          }

          p {
            margin-top: clamp(1rem, 0.292rem + 2.52vw, 1.5rem);
          }
        }
      }
    }
  }


  .cleaning-service {
    .cleaning-service__inner {
      gap: clamp(2.5rem, 1.792rem + 2.52vw, 3rem);
      margin-top: clamp(1.5rem, -0.623rem + 7.55vw, 3rem);

      .cleaning-service__unit {
        .cleaning-service__body {
          .service-number {
            span {
              font-size: clamp(1rem, 0.823rem + 0.63vw, 1.125rem);
            }

            img {
              height: clamp(2.688rem, 2.511rem + 0.63vw, 2.813rem);
            }
          }

          h3 {
            margin-top: 8px;
            font-size: clamp(1.5rem, 1.146rem + 1.26vw, 1.75rem);
          }

          P {
            margin-top: clamp(0.5rem, -0.208rem + 2.52vw, 1rem);
          }
        }
      }
    }
  }


  .cleaning-support {
    .cleaning-support__grid {
      margin-top: clamp(1.5rem, 0.792rem + 2.52vw, 2rem);
    }
  }


  .cleaning-flow {
    margin-top: clamp(21.875rem, 15.684rem + 22.01vw, 26.25rem);

    .cleaning-flow__grid {
      gap: clamp(5rem, 3.231rem + 6.29vw, 6.25rem);
      margin-top: clamp(1.5rem, 0.085rem + 5.03vw, 2.5rem);

      .cleaning-flow__item {
        .cleaning-flow__item-title {
          gap: clamp(0.625rem, 0.448rem + 0.63vw, 0.75rem);

          .cleaning-flow__number_sp {
            width: clamp(1.75rem, 1.396rem + 1.26vw, 2rem);
            height: clamp(1.75rem, 1.396rem + 1.26vw, 2rem);
            border: 3px solid transparent;

            .gd-number {
              font-size: clamp(0.875rem, 0.521rem + 1.26vw, 1.125rem);
            }
          }

          h3 {
            font-size: clamp(1.5rem, 1.146rem + 1.26vw, 1.75rem);
          }
        }

        p {
          margin-top: clamp(1rem, 0.292rem + 2.52vw, 1.5rem);
        }
      }
    }

    .cleaning-flow-arrow {
      img {
        height: clamp(3rem, 1.585rem + 5.03vw, 4rem);
      }
    }
  }
}


.cleaning-price {
  margin-top: clamp(21.875rem, 15.684rem + 22.01vw, 26.25rem);

  .cleaning-price-wrap {
    gap: clamp(1.5rem, 0.792rem + 2.52vw, 2rem);
    margin-top: clamp(1.5rem, -0.623rem + 7.55vw, 3rem);

    .cleaning-price__box {
      padding: clamp(2rem, 0.585rem + 5.03vw, 3rem);

      h3 {
        font-size: clamp(1.25rem, 0.896rem + 1.26vw, 1.5rem);
      }

      .cleaning-price__amount {
        margin-top: clamp(0.75rem, 0.396rem + 1.26vw, 1rem);

        span {
          font-size: clamp(0.875rem, 0.698rem + 0.63vw, 1rem);
        }

        p {
          font-size: clamp(1.25rem, 0.542rem + 2.52vw, 1.75rem);
        }

        .color-gr {
          font-size: clamp(3rem, 2.292rem + 2.52vw, 3.5rem);
        }

        .wave {
          font-size: clamp(3rem, 2.292rem + 2.52vw, 3.5rem);
        }
      }

      .cleaning-price__note {
        margin-top: clamp(1rem, 0.292rem + 2.52vw, 1.5rem);
      }
    }
  }
}

@media (max-width: 600px) {
  .cleaning-target {
    .cleaning-target-wrap {
      .cleaning-target__list {
        grid-template-columns: repeat(1, 6fr);
      }
    }
  }
}


@media (max-width:450px) {
  .cleaning-target {
    margin: 48px auto 0;

    .cleaning-target__inner {
      .cleaning-target-top {
        .cleaning-target-top-title {
          word-break: keep-all;
          font-size: clamp(1.75rem, 0.875rem + 4vw, 2rem);
        }
      }

      .cleaning-target-wrap {
        .cleaning-target-bg {
          img:nth-child(1) {
            top: clamp(0.188rem, -1.781rem + 9vw, 0.75rem);
            left: clamp(0.75rem, -1rem + 8vw, 1.25rem);
            height: clamp(5rem, 0.625rem + 20vw, 6.25rem);
          }

          img:nth-child(2) {
            top: clamp(0.188rem, -1.781rem + 9vw, 0.75rem);
            right: clamp(0.75rem, -1rem + 8vw, 1.25rem);
            height: clamp(5rem, 0.625rem + 20vw, 6.25rem);
          }
        }

        .cleaning-target__title {
          font-size: clamp(1.125rem, -1.063rem + 10vw, 1.75rem);
          gap: clamp(0.125rem, -1.188rem + 6vw, 0.5rem);

          &::before {
            width: clamp(3.5rem, 1.75rem + 8vw, 4rem);
          }

          &::after {
            width: clamp(3.5rem, 1.75rem + 8vw, 4rem);
          }
        }

        .cleaning-target__list {
          li {
            padding: clamp(2.5rem, 0.75rem + 8vw, 3rem);

            img {
              margin-top: 6px;
            }

            p {
              font-size: 18px;
              font-weight: 800;
            }
          }
        }
      }
    }
  }


  .cleaning-reasons {
    padding-top: 100px;

    .cleaning-reasons__inner {
      gap: clamp(2.5rem, 0.75rem + 8vw, 3rem);
      margin-top: clamp(1rem, -0.75rem + 8vw, 1.5rem);

      .cleaning-reasons__card {
        flex-direction: column;
        gap: clamp(1rem, -0.75rem + 8vw, 1.5rem);

        .cleaning-reasons__img {
          width: 100%;
        }

        .cleaning-reasons__text-box {
          width: 100%;

          h3 {
            font-size: clamp(1.5rem, 0.625rem + 4vw, 1.75rem);
          }

          p {
            margin-top: clamp(0.5rem, -1.25rem + 8vw, 1rem);
          }
        }
      }
    }
  }


  .cleaning-service {
    .cleaning-service__inner {
      gap: 40px;
      margin-top: clamp(1rem, -0.75rem + 8vw, 1.5rem);

      .cleaning-service__unit {
        .cleaning-service__body {
          p {
            margin-top: 8px;
          }

          .service-number {
            gap: clamp(0.625rem, 0.188rem + 2vw, 0.75rem);

            span {
              font-size: clamp(0.875rem, 0.438rem + 2vw, 1rem);
            }

            img {
              height: clamp(2.5rem, 1.844rem + 3vw, 2.688rem);
            }
          }

          h3 {
            font-size: clamp(1.25rem, 0.375rem + 4vw, 1.5rem);
          }
        }
      }
    }
  }


  .cleaning-support {
    .cleaning-support__grid {
      gap: clamp(1rem, -0.75rem + 8vw, 1.5rem);
      margin-top: clamp(1rem, -0.75rem + 8vw, 1.5rem);

      .cleaning-support__card {
        .cleaning-support__icon {
          img {
            width: clamp(3.5rem, 16vw, 4.5rem);
          }
        }

        h3 {
          font-size: clamp(1.125rem, 0.688rem + 2vw, 1.25rem);
        }

        p {
          margin-top: clamp(0.75rem, -0.125rem + 4vw, 1rem);
        }
      }
    }
  }


  .cleaning-flow {
    margin-top: clamp(15.625rem, -4.063rem + 90vw, 21.25rem);

    .cleaning-flow__grid {
      gap: 80px;
      margin-top: 24px;

      .cleaning-flow__item {
        .cleaning-flow__item-title {
          gap: 10px;

          .cleaning-flow__number_sp {
            width: clamp(1.5rem, 0.625rem + 4vw, 1.75rem);
            height: clamp(1.5rem, 0.625rem + 4vw, 1.75rem);
            border: 3px solid transparent;

            .gd-number {
              font-size: clamp(0.75rem, 0.313rem + 2vw, 0.875rem);
            }
          }

          h3 {
            font-size: clamp(1.25rem, 0.375rem + 4vw, 1.5rem);
          }
        }

        p {
          margin-top: 16px;
        }

        .cleaning-flow-arrow {
          bottom: -64px;

          img {
            height: 48px;
          }
        }

        img {
          height: clamp(15.25rem, 10.219rem + 23vw, 16.688rem);
        }
      }
    }
  }


  .cleaning-price {
    margin-top: clamp(15.625rem, -4.063rem + 90vw, 21.25rem);

    .cleaning-price-wrap {
      gap: 24px;
      margin-top: clamp(1rem, -0.75rem + 8vw, 1.5rem);

      .cleaning-price__box {
        padding: 32px;

        h3 {
          font-size: clamp(1.125rem, 0.688rem + 2vw, 1.25rem);
        }

        .cleaning-price__amount {
          margin-top: clamp(0.5rem, -0.375rem + 4vw, 0.75rem);

          span {
            font-size: 14px;
          }

          p {
            font-size: clamp(1.125rem, 0.688rem + 2vw, 1.25rem);
          }

          .color-gr {
            font-size: clamp(2.5rem, 0.75rem + 8vw, 3rem);
          }

          .wave {
            font-size: clamp(2.5rem, 0.75rem + 8vw, 3rem);
          }
        }

        .cleaning-price__note {
          margin-top: 16px;
        }
      }
    }
  }

  .cleaning-faq {
    .cleaning-faq-inner {
      .question-wrap {
        gap: 16px;
        margin-top: clamp(1.5rem, -0.25rem + 8vw, 2rem);

        .question-item {
          padding: 24px;

          .question {
            align-items: center;
            font-size: 18px;

            span {
              width: 34px;
              height: 34px;
              font-size: 14px;
            }

            h3 {
              flex: .9;
            }

            img {
              right: -12px;
            }
          }

          .answer {
            align-items: baseline;

            span {
              width: 34px;
              height: 34px;
              font-size: 14px;
            }

            p {
              flex: .9;
              font-size: 16px;
            }
          }
        }
      }
    }
  }
}