@charset "utf-8";
/* ====================================================
cmn-header
==================================================== */
.faq .cmn-header .flex h1:after {
  position: absolute;
  top: -16px;
  right: max(-10.5vw, -142px);
  display: inline-block;
  width: 6.954vw;
  max-width: 95px;
  background-image: url(../img/faq/cmn_header_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";

  aspect-ratio: 1 / 1.074;
}
@media screen and (max-width: 1024px) {
  .faq .cmn-header .flex h1:after {
    top: -9px;
    right: -100px;
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .faq .cmn-header .flex h1:after {
    right: -80px;
    right: max(-21vw, -80px);
    width: 15vw;
    max-width: 55px;
  }
}
/* ====================================================
faq-contents
==================================================== */
.faq-contents {
  padding: 98px 0 150px;
  border-radius: 70px 70px 0 0;
  background-color: #fff;
}
.faq-contents .inner {
  display: block;
}
.faq-contents .faq-category {
  display: flex;
  flex-direction: column;

  gap: 35px;
}
.faq-contents .faq-category h2 {
  margin-bottom: 3px;
  padding-top: 83px;
  font-size: var(--font-size30);
  font-weight: bold;
  text-align: center;
}
.faq-contents .faq-category h2 span {
  display: block;
  font-size: var(--font-size15);
  font-weight: normal;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .faq-contents {
    padding: 50px 0 150px;
    border-radius: 25px 25px 0 0;
  }
  .faq-contents .faq-category {
    gap: 15px;
  }
  .faq-contents .faq-category h2 {
    padding-top: 50px;
    font-size: var(--font-size22);
  }
}

.faq-contents .anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 800px;
  margin: auto;

  gap: 15px;
}
.faq-contents .anchor-list li {
  position: relative;
  width: 200px;
  height: 50px;
  font-size: var(--font-size16);
  font-weight: bold;
  line-height: 49px;
  text-align: center;
}
.faq-contents .anchor-list li a:after {
  position: absolute;
  top: 0;
  right: 23px;
  bottom: 0;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: auto;
  border: 0;
  border-right: solid 1px #272724;
  border-bottom: solid 1px #272724;
  content: "";
  transform: rotate(45deg);
}
.faq-contents .anchor-list li a {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 2px #f7ed53;
  border-radius: 30px;
  background-color: #f7ed53;
  color: #272724;
  transition: all 0.3s;
}
/* hover */
.faq-contents .anchor-list li a:hover {
  background-color: #fff;
  transform: scale(1.05);
  opacity: 1;
}

.faq-content .faq-txt .course-tag {
  margin-top: 12px;
  text-align: right;
}

.faq-content .faq-txt .course-tag li {
  display: inline-block;
  margin-left: 8px;
  padding: 9px 17px;
  border-radius: 22px;
  font-size: var(--font-size15);
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

.faq-content .faq-txt .course-tag li.course-robo {
  background: #ec4949;
}
.faq-content .faq-txt .course-tag li.course-alpha {
  background: #038c33;
}
.faq-content .faq-txt .course-tag li.course-discovery {
  background: #f8b62d;
}
.faq-content .faq-txt .course-tag li.course-tanken {
  background: #8367ab;
}
@media screen and (max-width: 767px) {
  .faq-contents .anchor-list {
    margin-top: 32px;

    gap: 10px;
  }
  .faq-contents .anchor-list li {
    position: relative;
    width: 48%;
    max-width: 190px;
    height: 39px;
    font-size: var(--font-size13);
    font-weight: normal;
    line-height: 35px;
    letter-spacing: normal;
  }
  .faq-contents .anchor-list li a:after {
    right: 18px;
  }
}
