@charset "UTF-8";
/* #HEADER : 인트로 페이지 전용 헤더 스타일*/
#header_intro .header_container {
  height: 6.8rem;
  padding: 1.4rem;
  background-color: #fff;
  display: flex;
  align-items: center;
}
#header_intro .header_container .inner {
  padding: 0;
}
#header_intro .header_container .header-branding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
#header_intro .header_container .header-branding .logo {
  width: 173px;
  display: inline-flex;
  height: 32px;
}
@media screen and (max-width: 767px) {
  #header_intro .header_container .header-branding .logo {
    width: 131px;
    height: 24px;
  }
}
#header_intro .header_container .header-branding .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/logo/head_logo_intro.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#header_intro .header_container .header-branding .header-actions {
  display: inline-flex;
  gap: var(--krds-gap-3);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #header_intro .header_container .header-branding .header-actions {
    display: none;
  }
}

/*모바일 헤더 버튼*/
.header-action_mo {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  margin-block: 3.2rem 5.5rem;
}
.header-action_mo .krds-btn {
  height: 56px;
  position: relative;
  font-size: var(--krds-pc-font-size-label-medium);
}
.header-action_mo .krds-btn .svg-icon {
  position: absolute;
  left: 24px;
  background-size: 18px;
}
@media screen and (max-width: 767px) {
  .header-action_mo {
    display: flex;
  }
}

/*#INTRO VISUAL : 인트로 상단 비주얼 영역*/
.intro-visual {
  background: url("../images/common/img/bg_intro.svg") no-repeat center;
  height: 600px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .intro-visual {
    height: 500px;
  }
}

/*#INNER.INTRO : 인트로 메인 콘텐츠 구조*/
.inner.intro {
  margin-top: -70px;
}
.inner.intro .krds-tab-area {
  position: relative;
  gap: 5.6rem;
}
@media screen and (max-width: 767px) {
  .inner.intro .krds-tab-area {
    gap: 3.2rem;
  }
}
.inner.intro .krds-tab-area::before {
  content: "";
  position: absolute;
  top: -45px;
  right: 0;
  background: url("../images/common/ico/ico-isolation-mode.svg") no-repeat center;
  border: 1px solid var(--krds-color-high-contrast-gray-20);
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: none;
}
@media screen and (max-width: 1220px) {
  .inner.intro .krds-tab-area::before {
    display: block;
  }
}
.inner.intro .tab.intro {
  width: 100%;
  border-radius: var(--krds-radius-xlarge1);
  overflow: hidden;
}
.inner.intro .tab.intro ul {
  gap: unset;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.inner.intro .tab.intro ul ::-webkit-scrollbar {
  display: none;
}
.inner.intro .tab.intro ul li {
  position: relative;
  height: 130px;
  /*251015 김주연 추가*/
  min-width: 120px;
  flex: 1;
  background-color: var(--krds-light-color-element-primary);
}
.inner.intro .tab.intro ul li:hover {
  background-color: var(--krds-light-color-element-secondary);
}
.inner.intro .tab.intro ul li:nth-child(1) {
  width: 130px;
}
.inner.intro .tab.intro ul li::before {
  content: "";
  background: url("../images/common/ico/ico-active.svg") no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.inner.intro .tab.intro ul li .btn-tab {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  transition: all 0.3s;
}
.inner.intro .tab.intro ul li .btn-tab:hover {
  background-color: transparent;
}
.inner.intro .tab.intro ul li .btn-tab:hover::before {
  animation: wiggleTop 0.8s ease-in-out infinite;
}
.inner.intro .tab.intro ul li .btn-tab:hover span::before {
  width: 100%;
}
.inner.intro .tab.intro ul li .btn-tab:active {
  background-color: transparent;
}
.inner.intro .tab.intro ul li .btn-tab::before {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
}
.inner.intro .tab.intro ul li .btn-tab.b01::before {
  background: url(../images/common/ico/ico-intro01.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b02::before {
  background: url(../images/common/ico/ico-intro02.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b03::before {
  background: url(../images/common/ico/ico-intro03.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b04::before {
  background: url(../images/common/ico/ico-intro04.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b05::before {
  background: url(../images/common/ico/ico-intro05.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b06::before {
  background: url(../images/common/ico/ico-intro06.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b07::before {
  background: url(../images/common/ico/ico-intro07.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b08::before {
  background: url(../images/common/ico/ico-intro08.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b09::before {
  background: url(../images/common/ico/ico-intro09.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab.b10::before {
  background: url(../images/common/ico/ico-intro10.svg) no-repeat center;
}
.inner.intro .tab.intro ul li .btn-tab span {
  white-space: nowrap;
  position: relative;
}
.inner.intro .tab.intro ul li .btn-tab span::before {
  position: absolute;
  left: 50%;
  bottom: -0.7rem;
  width: 0;
  height: 0.1rem;
  background-color: #fff;
  content: "";
  transform: translateX(-50%);
  transition: width 0.25s ease-in-out;
}
.inner.intro .tab.intro ul li.active .btn-tab {
  background-color: var(--krds-light-color-element-secondary);
}
.inner.intro .tab.intro ul li.active .btn-tab span::before {
  width: 100%;
}
.inner.intro .tab.intro ul li.active::before {
  opacity: 1;
  visibility: visible;
}
@keyframes wiggleTop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.4rem);
  }
  100% {
    transform: translateY(0);
  }
}
.inner.intro .conts-wrap .cont-tit {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 3.2rem;
}
.inner.intro .conts-wrap .cont-tit span {
  font-size: var(--krds-pc-font-size-heading-medium);
  font-weight: 700;
}
.inner.intro .card_date {
  text-align: right;
}
.inner.intro .card_date .date {
  font-size: var(--krds-pc-font-size-body-small);
  color: var(--krds-light-color-text-subtle);
}
.inner.intro .krds-structured-list > li:hover {
  box-shadow: inset 0 0 0 2px var(--krds-light-color-border-secondary), var(--card-shadow);
  border: 1px solid transparent;
}
.inner.intro .structured-item.no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.inner.intro .structured-item.no-data img {
  max-width: 76px;
  max-height: 76px;
}
.inner.intro .structured-item.no-data span {
  font-size: var(--krds-pc-font-size-body-small);
  color: var(--krds-light-color-text-subtle);
}
.inner.intro .structured-item.no-data .card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .inner.intro {
    margin-top: 0;
  }
}
/*qna 상세페이지*/
.qna .page-title-wrap .h-tit {
  font-size: var(--krds-pc-font-size-heading-medium);
}
.qna .search-top-box .sch-filter-box .filter-form .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.4rem;
}
.qna .search-top-box .sch-filter-box .filter-form .row .cate select {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .qna .search-top-box .sch-filter-box .filter-form .row {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.krds-table-wrap .table.col.data.qna tbody tr td.tit {
  font-weight: 700;
}
.krds-table-wrap .table.col.data.qna tbody tr.answer td.tit {
  gap: 4px;
}
.krds-table-wrap .table.col.data.qna tbody tr.answer td.tit .krds-badge {
  margin-right: 4px;
}
.krds-table-wrap .table.col.data.qna tbody tr.answer td.tit::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  background: url("../images/common/ico/ico-reply.svg") no-repeat;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

@media screen and (max-width: 1024px) {
  .krds-table-wrap .table.col.data.qna {
    border-top: 2px solid var(--krds-light-color-divider-gray-darker);
  }
  .krds-table-wrap .table.col.data.qna th::before,
  .krds-table-wrap .table.col.data.qna td::before {
    content: none;
    min-width: unset;
  }
  .krds-table-wrap .table.col.data.qna tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 12px;
    row-gap: 12px;
    padding-block: 16px;
  }
  .krds-table-wrap .table.col.data.qna tbody tr:hover td {
    background-color: unset;
  }
  .krds-table-wrap .table.col.data.qna tbody tr th {
    display: none;
  }
  .krds-table-wrap .table.col.data.qna tbody tr td.tit {
    color: var(--krds-light-color-text-primary);
    flex: 1px;
    flex: 1 0 100%;
    order: 0;
    font-size: var(--krds-pc-font-size-heading-xsmall);
    padding: 0;
  }
  .krds-table-wrap .table.col.data.qna tbody tr td:not(.tit) {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: var(--krds-pc-font-size-label-small);
    position: relative;
    padding: 0;
  }
  .krds-table-wrap .table.col.data.qna tbody tr td:not(.tit)::after {
    content: "";
    width: 1px;
    height: 16px;
    background-color: var(--krds-light-color-divider-gray-light);
  }
  .krds-table-wrap .table.col.data.qna tbody tr td:not(.tit):nth-of-type(1) {
    order: 2;
  }
  .krds-table-wrap .table.col.data.qna tbody tr td:not(.tit):nth-of-type(3) {
    order: 3;
  }
  .krds-table-wrap .table.col.data.qna tbody tr td:not(.tit):nth-of-type(4) {
    order: 4;
  }
  .krds-table-wrap .table.col.data.qna tbody tr td:not(.tit):nth-of-type(4)::after {
    content: none;
  }
  .krds-table-wrap .table.col.data.qna tbody tr.answer td:not(.tit):nth-of-type(1) {
    margin-left: 22px;
  }
}
/*# sourceMappingURL=ras_intro.css.map */
