@charset "UTF-8";
body {
  /* background-color: #f90 !important; */
}

/* 햄버거 아이콘 표시 안 함 */
.md-header__inner .md-header__button[for=__drawer] {
  display: none;
}

#searchDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 16px;
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 0;
  height: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: height 0.375s ease, transform 0.5s ease, padding 0.5s ease;
  padding: 0px 16px;
  container-type: inline-size;
  container-name: search-dropdown;
}
#searchDropdown.show {
  padding: 16px;
  animation: show 1s ease;
  height: 152px;
  transform: translateY(0);
}
#searchDropdown .dropdown-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}
#searchDropdown .keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 !important;
}
#searchDropdown .keyword-list .keyword-item {
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 28px;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  min-width: 64px;
  margin: 0 !important;
}
#searchDropdown .keyword-list .keyword-item.hide {
  display: none;
}
#searchDropdown .keyword-list .keyword-item:hover {
  background-color: #e5e5e5;
}
@media (max-width: 480px) {
  #searchDropdown#searchDropdown {
    top: unset !important;
  }
  #searchDropdown.search-dropdown {
    transition: none;
  }
  #searchDropdown.search-dropdown.show {
    height: fit-content;
    bottom: 100% !important;
    margin-top: 0;
    margin-bottom: 8px;
  }
}

datalist .option-title {
  color: #ddd !important;
  pointer-events: none !important;
}

/* 좌우 사이드바 영역 제거 */
.md-main {
  padding: 0 !important;
}
.md-main .md-sidebar--secondary {
  display: none !important;
}
.md-main .md-content__inner {
  margin: 0 !important;
  padding-top: 0 !important;
}
.md-main .md-content__inner .md-typeset h1 {
  display: none;
}

/* 푸터 : 이전, 다음 페이지 제거 */
footer .md-footer__inner {
  display: none !important;
}

/********** help custom **********/
.help-custom {
  line-height: 1.6;
  text-align: center;
  /* .direct_links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .home_inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
  }

  .test {
    background-color: #E43D4F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    align-items: center;
    margin: 0 auto;
    width: 1280px;
    padding: 48px 32px;
  }

  article ul .starter-test {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    width: 100%;
    height: 100%;
    list-style: none;
  }

  article ul li {
    display: flex;
    flex: 1;
    height: 100%;
    width: clac((100% - 48px) / 3);
  }

  article ul li a {
    align-items: center;
    flex-grow: 1;
    text-decoration: none;
    color: inherit;
  }

  article ul li a figure {
    border-radius: 16px;
    border: 1.5px solid var(--color-gray-sub_f9);
    overflow: hidden;
    height: 100%;
    flex-grow: 1;
  }

  article ul li a figure .link_btn_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 188px;
    overflow: hidden;
    background-color: var(--color-gray-sub_f9);
  }

  article ul li a figure figcaption {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    font-style: normal !important;
  }

  article ul li a figure figcaption h3 {
    color: #333;
    font: 700 1.25rem / 1.5rem;
    text-transform: capitalize;
  }

  article ul li a figure figcaption p {
    color: #666;
    font: 400 1rem / 1.5rem;
  } */
}
.help-custom .page_title {
  margin: 100px auto;
  padding-top: 64px;
}
.help-custom .page_title .description {
  font-size: 24px;
  margin: 32px 0;
}
.help-custom .page_title .md-search {
  display: flex;
  justify-content: center;
  margin: 0 32px;
}
.help-custom .page_title .md-search .md-search__form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 580px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 56px;
  height: 56px;
  padding: 0 16px;
  box-sizing: border-box;
}
.help-custom .page_title .md-search .md-search__form .md-search__input {
  flex: 1;
  font-size: 18px;
  color: #333;
  padding: 8px 16px;
  border: none;
  outline: none;
}
.help-custom .page_title .md-search .md-search__form .md-search__input::placeholder {
  color: #ddd !important;
}
.help-custom .page_title .md-search .md-search__form .btn_search {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/btn_search.png") no-repeat center;
  background-size: cover;
  margin-left: 16px;
  cursor: pointer;
}
.help-custom .help-custom__h1 {
  font-size: max(24px, 5vw) !important;
  font-weight: 800;
  line-height: 1.2;
  word-break: keep-all;
}
.help-custom .help-custom__h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 48px auto;
}
.help-custom .starter {
  margin: 200px auto 100px;
  padding: 80px 32px;
  background: #f7f7f7;
}
.help-custom .starter .new {
  max-width: 1024px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  grid-gap: 32px !important;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}
.help-custom .large-size {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #efefef;
  padding: 32px 16px;
  height: 100%;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}
.help-custom .large-size img {
  width: 48px;
  /* min-width: 48px !important; */
}
.help-custom .large-size .help-custom__h3 {
  margin: auto 0;
  font-size: 20px;
  color: #333;
  font-weight: 700;
}
.help-custom .large-size .hashtag-wrap {
  display: flex;
  justify-content: center;
  /* flex-direction: column; */
  gap: 8px;
  flex-wrap: wrap;
}
.help-custom .large-size .hashtag-wrap p {
  font-size: 16px;
  margin: 0;
  color: #E43D4F;
  line-height: 1;
  text-wrap: nowrap;
}
.help-custom .large-size:hover {
  transform: translateY(-8px);
  background-color: #eee;
}
.help-custom .faq {
  margin: 100px auto;
  max-width: 1024px;
}
.help-custom .faq .faq_list {
  list-style-type: none;
  list-style-image: none;
  padding: 80px min(32px, 2vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2열 배치 */
  column-gap: 32px; /* 항목 간 간격 */
  padding: 0;
}
.help-custom .faq .faq_list .faq_list_item {
  border-bottom: 1px solid #eee;
  letter-spacing: -1px;
  font-weight: 500;
  padding: 16px;
  font-size: 16px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 !important;
}
.help-custom .faq .faq_list .faq_list_item a {
  text-decoration: none;
  color: #333 !important;
  flex: 1;
  text-align: left;
  line-height: 1.5;
}
.help-custom .faq .faq_list .faq_list_item a:hover {
  color: #333;
}
.help-custom .faq .faq_list .faq_list_item::after {
  content: "›";
  font-size: 24px !important;
  color: #ccc;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-bottom: 4px;
  /* box-sizing: border-box; */
}
.help-custom .card1 {
  /* margin: 200px auto; */
  padding: 80px 32px;
  background: #f8f8f8;
}
.help-custom .card1 .web {
  max-width: 1024px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  grid-gap: 32px !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.help-custom .card2 {
  margin: 80px auto;
}
.help-custom .category {
  font-size: 20px;
  font-weight: 500;
  margin: 20px auto;
}
.help-custom .hor img, .help-custom .ver img {
  width: 42px;
  min-width: 36px !important;
}
.help-custom .ver {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #efefef;
  padding: 32px 16px;
  transition: transform 0.8s ease-in-out;
}
.help-custom .ver h3 {
  margin: auto 0;
}
.help-custom .ver:hover {
  transform: scale(1.02);
  background-color: #efefef;
}
.help-custom #upcoming {
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.help-custom #upcoming:hover {
  background-color: #efefef;
  color: transparent;
}
.help-custom #upcoming:hover::after {
  content: "Coming soon...";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #E43D4F;
  opacity: 1;
}
.help-custom #upcoming::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.help-custom .products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  align-self: stretch;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;
  /* padding: 0 32px; */
}
.help-custom .products .hor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1 0 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #efefef;
  padding: 32px;
  transition: transform 0.8s ease-in-out;
  min-width: 300px;
  text-align: center;
  /* max-width: 480px; */
}
.help-custom .products .hor h3 {
  margin: auto 0;
  word-break: keep-all;
}
.help-custom .products .hor:hover {
  transform: scale(1.02);
  background-color: #f9f9f9;
}
.help-custom #contact {
  background-color: #eee;
  /* background-image: url(../img/gradient2.jpg);
  background-size: cover;
  background-repeat: no-repeat; */
  padding: 80px 0 32px;
}
.help-custom #contact .subtitle {
  margin-bottom: 80px;
}
.help-custom #contact p {
  font-size: 16px;
}
.help-custom #contact a {
  color: var(--md-typeset-a-color);
  text-decoration: none;
}
.help-custom #contact a:hover {
  color: var(--md-typeset-a-color);
}

/********** 반응형 css **********/
/* 데스크탑 (1220px 이상) */
@media screen and (min-width: 1220px) {
  /* 사이드바 : 좌측 네비게이션 메뉴 표시 안 함 */
  .md-sidebar--primary {
    display: none !important;
  }
}
/* 태블릿 (960px ~ 1220px) */
@media screen and (max-width: 1220px) {
  /*  delete hover  */
  .large-size:hover, .ver:hover, .hor:hover {
    transform: scale(1) !important;
    background-color: #fff !important;
  }
  .large-size:hover::after, .ver:hover::after, .hor:hover::after {
    opacity: 0 !important;
  }
  .large-size#upcoming::after, .ver#upcoming::after, .hor#upcoming::after {
    content: "Coming soon...";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #E43D4F;
    opacity: 0.9 !important;
  }
  /* card2 flex column */
  .help-custom .hor {
    /* gap: 32px !important; */
    flex-direction: column;
    justify-content: center;
  }
}
/* 태블릿 (960px 이하) */
@media screen and (max-width: 959px) {
  /* 햄버거 아이콘 표시됨 */
  .md-header__inner {
    padding: 0 16px !important;
  }
  .md-header__inner .md-header__button[for=__drawer] {
    display: block;
  }
  /* 좌측 사이드바 : 햄버거 아이콘 클릭 시 네비게이션 메뉴 표시됨 */
  .md-sidebar--primary {
    display: block;
  }
  .help-custom .page_title {
    margin: 96px auto;
    padding-top: 32px;
  }
  .help-custom .starter {
    margin: 80px auto 80px;
    padding: 40px 16px;
    background: #f7f7f7;
  }
  .help-custom .starter .new {
    margin: 32px auto;
    grid-gap: 16px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .help-custom .starter .new .large-size {
    width: 100%;
    border-radius: 16px !important;
    gap: 8px !important;
    padding: 32px 16px !important;
  }
  .help-custom .faq {
    margin: 80px auto !important;
  }
  .help-custom .faq .help-custom__h2 {
    text-wrap: wrap;
    word-break: keep-all;
  }
  .help-custom .faq .faq_list {
    padding: 0px !important;
  }
  .help-custom .faq .faq_list .faq_list_item {
    margin: 0px !important;
    padding: 16px !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }
  .help-custom .card1 {
    padding: 40px 16px !important;
  }
  .help-custom .card1 .web {
    grid-gap: 16px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .help-custom .card1 .web .ver {
    width: 100%;
    padding: 32px 16px !important;
    border-radius: 16px !important;
  }
  .help-custom .card1 .card2 .products {
    padding: 0 !important;
    gap: 16px !important;
  }
  .help-custom .card1 .card2 .products .hor {
    border-radius: 16px !important;
  }
  .help-custom #contact {
    padding: 40px 16px !important;
  }
  .help-custom #contact .help-custom__h2 {
    text-wrap: wrap;
    word-break: keep-all;
  }
  .help-custom #contact .subtitle {
    font-size: 14px !important;
    margin: 16px auto 32px !important;
  }
  /* 폰트 크기 조정 */
  .help-custom .page_title .description {
    font-size: 16px;
  }
  .help-custom .page_title .large-size:hover {
    transform: scale(1) !important;
  }
  .help-custom .help-custom__h2 {
    font-size: 24px;
    text-wrap: wrap;
    word-break: keep-all;
    /* margin: 32px auto !important; */
  }
  .large-size {
    gap: 16px !important;
    padding: 50px 20px !important;
  }
  .large-size .help-custom__h3 {
    font-size: 20px !important;
  }
  .large-size .hashtag {
    font-size: 14px !important;
  }
  .large-size img {
    width: 48px !important;
  }
  .faq {
    margin: 200px auto !important;
  }
  .faq_list {
    grid-template-columns: 1fr !important; /* 1열 배치 */
    padding: 40px min(16px, 2vw) !important; /* 좌우 padding 감소 */
  }
}
/* 모바일 (480px 이하) */
@media screen and (max-width: 480px) {
  /* 통합 검색 크기 조정 */
  .help-custom {
    /* card1, card2 이미지 크기 조정 */
  }
  .help-custom .page_title .md-search__form {
    width: 320px;
    height: 48px !important;
  }
  .help-custom .page_title .md-search__form .md-search__input {
    padding: 5px 10px;
    font-size: 14px !important;
  }
  .help-custom .page_title .md-search__form .btn_search {
    width: 16px;
    height: 16px;
  }
  .help-custom .hor img, .help-custom .ver img {
    width: 36px !important;
    height: 36px !important;
  }
}

/*# sourceMappingURL=index.css.map */
