/* 문의사항 목록 */

/* 헤더 메뉴 항목 */
.headerMenu2 {
  color: var(--mainColor);
}

.headerMenu2 > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}
.headerMenu2:hover > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}

.headerMenu2 .subMenuLi:nth-of-type(2) > .subMenuDiv {
  background-color: var(--mainColor);
  color:var(--whiteColor);
}

/* 메뉴 항목 */
.asideMenu > li:nth-child(2) > span {
  background-color: var(--anColor);
}

.asideMenu > li:nth-child(2) > .asideSubMenu > li:first-child > a {
  color: var(--mainColor);
}
.asideMenu > li:nth-child(2) > .asideSubMenu > li:first-child > a::before {
  color: var(--mainColor);
}

.pageContents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.guideInner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqBox {
  width: 100%;
  display: flex;
  align-items: center;
}

.faqBox details {
  width: 100%;
  border: 1px solid var(--borderLine);
  border-radius: 10px;
}

.faqBox details summary {
  display: flex;
  cursor: pointer;
  flex-direction: column;
}

.faqQ {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  font-size: 14px;
  background-color: var(--backColor);
  border-radius: 10px;
}
.faqQ > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.faqQ span {
  color: var(--txtColor);
  font-weight: 700;
  font-size: 15px;
}
.xi-angle-up {
  display: none !important;
}
.faqQ i {
  color: var(--mainColor);
}

.IconQ {
  width: 30px;
  height: 30px;
  background-color: var(--whiteColor);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--mainColor);
  font-weight: 700;
}

/* 열린 경우 */
.faqBox details[open] .faqQ span {
  color: var(--mainColor)
}
.faqBox details[open] .xi-angle-down {
  display: none;
}
.faqBox details[open] .xi-angle-up {
  display: block !important;
}

.faqA {
  padding: 10px;
  font-size: 15px;
  line-height: 25px;
  color: var(--txtColor);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faqABox {
  display: flex;
  gap: 12px;
  overflow-y: auto;
}

.faqContents {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.IconA {
  width: 26px;
  height: 26px;
  background-color: var(--subColor);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mainColor);
  font-weight: 700;
}
.faqBox details[open] .faqA {
  max-height: fit-content;
  padding: 20px 10px;
}

/* 검색바 */
.searchArt {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0 0;
}
.searchForm {
  width: 50%;
}

.searchBox {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  border:4px solid transparent ;
  border-radius:10px;
  background-image:linear-gradient(#fff, #fff), linear-gradient(to right ,#26A6D5, #7426D5);
  background-origin:border-box; 
  background-clip:padding-box, border-box;
  border-radius: 50px;
}
.searchBox > input {
  width: 92%;
  height: 40px;
  border: none;
  border-radius: 50px 0 0 50px;
  padding: 0 0 0 25px;
  font-size: 15px;
}
.searchBox > input:focus {
  outline: none;
}
.searchBtn {
  width: 5%;
  height: 50px;
  background: none;
  border: none;
}
.searchBtn > i {
  color: var(--mainColor);
  cursor: pointer;
  font-size: 20px;
}

/* 모바일 사이드 메뉴 */
.sideNav > li:nth-child(2) .sideSubNav {
  display: flex;
}
.sideNav > li:nth-child(2) .sideSubNav > .sideSubNavLi:nth-child(2) .sideInnerNav {
  display: flex;
}
.sideNav > li:nth-child(2) .sideSubNav > .sideSubNavLi:nth-child(2) > .sideSubNavTop {
  background-color: var(--subColor);
  color: var(--mainColor);
}

.addFiles {
  gap: 2px;
}

@media screen and (max-width: 1200px) {
  .searchForm {
    width: 80%;
  }

  .IconQ {
    font-size: 13px;
    width: 25px;
    height: 25px;
  }
  .faqQ {
    font-size: 13px;
  }

  .IconA {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .faqContents {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .faqQ {
    font-size: 13px;
  }
  .faqContents {
    font-size: 13px;
  }
  .faqQ span {
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .faqQ {
    padding: 10px;
  }

  .faqBox details[open] .faqA {
    padding: 10px;
  }

  .IconA {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .searchArt {
    margin: 0;
  }
  .searchBox > input {
    height: 35px;
    font-size: 13px;
    padding: 0 0 0 15px;
  }
  .searchBtn {
    width: 50px;
  }

  .searchBox {
    height: 45px;
  }

  .searchForm {
    width: 100%;
  }

}