@charset "utf-8";
.qa {
  padding-bottom: 80px;
}

.qa__container {
  margin-top: 83px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media screen and (min-width: 768px) {
  .qa__container {
    gap: 100px;
  }
}

.qa__contents-title {
  font-size: clamp(24px, 1.91vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 38px;
}

.qa__contents-title::before {
  content: "";
  width: 3px;
  height: 34px;
  background: var(--color-base);
  flex-shrink: 0;
}

.qa__box {
  padding: 30px 45px 42px 38px;
  border: 1px solid #e5e5e5;
}

.qa__box:not(:first-child) {
  margin-top: 30px;
}

.qa__box-q {
  font-size: clamp(15px, 1.32vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qa__box-q::before {
  content: "Q";
  font-size: clamp(20px, 1.62vw, 22px);
  font-weight: 700;
  color: #fff;
  background: var(--color-base);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .qa__box-q {
    gap: 25px;
  }

  .qa__box-q::before {
    width: 50px;
    height: 50px;
  }
}

.qa__box-a {
  margin-top: 34px;
  font-size: clamp(13px, 1.78vw, 16px);
  font-weight: 400;
  line-height: calc(30 / 16);
  display: flex;
  gap: 10px;
}

.qa__box-a::before {
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
  font-size: clamp(20px, 1.62vw, 22px);
  font-weight: 700;
  background: rgba(52, 99, 129, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .qa__box-a {
    gap: 25px;
  }
  .qa__box-a::before {
    width: 50px;
    height: 50px;
  }
}
