.faq {
    width: 100%;
    background-color: #F8F9F4;
    position: relative;
    padding:60px 18px 122px;
}

.faq__top {
    width: 120px;

    position: absolute;
    top: -80px;
    right: 0;
}

.faq__title {
    width: 132px;
    margin: 0 auto;
}

.faq__accordion {
    width: 335px;
    display: grid;
    gap: 22px;
    margin: 22px auto 0;
}

.faq__question {
  background-color: #fff;
  padding: 12px 0 10px 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q,
.faq__answer {
  display: grid;
  grid-template-columns: 21px auto;
  gap: 7px;
}

.faq__q {
  align-items: center;
}

.faq__icon {
    width: 21px;
}

.faq__text {
    width: 100%;
    color: #369978;
    font-size: 15px;
}

.faq__arrow {
    width: 15px;
    height: auto;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__arrow {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 12px 9px 10px;
}

.faq__answer--text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.faq__bottom {
    width: 140px;

    position: absolute;
    bottom: -50px;
    left: 0;
}


/* =========================
   PC
========================= */
@media (min-width: 980px) {
    .faq {
        padding: 60px 18px 68px;
    }

    .faq__top {
        width: 270px;
        top: -100px;
    }

    .faq__title {
        width: 216px;
    }

    .faq__accordion {
        width: 702px;
        gap: 25px;
        margin: 37px auto 0;
    }

    .faq__question {
        padding: 19px 15px;
        gap: 13px;
    }

    .faq__q,
    .faq__answer {
        grid-template-columns: 36px auto;
        gap: 13px;
    }

    .faq__icon {
        width: 36px;
    }

    .faq__text {
        font-size: 18px;
    }

    .faq__answer {
        padding: 20px 15px;
    }

    .faq__answer--text {
        font-size: 16px;
        margin: 4px 0 0 0;
    }

    .faq__bottom {
        width: 200px;
        bottom: -160px;
    }
}
@media (min-width: 1390px) {
    .faq__top {
        width: 360px;
        top: -100px;
    }

    .faq__bottom {
        width: 350px;
        bottom: -160px;
    }
}
