html {
    scroll-behavior: smooth;
}

.sub-container {
    padding: 0 16px 0;
    max-width: 1400px;
    width: 100%;
    margin: 80px auto 160px;
    position: relative;
}

.sub-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 32px;
    overflow: hidden;
    min-height: 232px;
}

.sub-tit>h1 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 4px;
}
.sub-tit>span{
    word-break: keep-all;
}

.visual-img {
    height: 200px;
    position: relative;
    opacity: 0;
    transform: translateY(160px);
    left: -24px;
}

.sub-visual.ani .visual-img {
    animation: fade-in 800ms 50ms ease both;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(160px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.sub-tab-area {
    transition-delay: .3s;
    overflow: auto;
}
.sub-tab-area::-webkit-scrollbar{
    display: none;
}
.dt-sh-wrap {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.dt-search-area .autocomplete {
    position: absolute;
    right: 0;
    top: 72px;
    background: #fff;
    width: calc(100% - 162px);
    box-shadow: 0 0 14px rgba(28, 64, 141, 0.08);
    padding: 20px 16px;
    border-radius: 12px;
    transition: all .2s;
    display: none;
    height: 320px;
    overflow-y: auto;
}
.dt-search-area .autocomplete.full{
    width: 100% !important;
}

.filter-btn {
    height: 64px;
    padding: 0 32px;
    border-radius: 100px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn>span {
    color: #fff;
}

.ss-wrap {
    height: 64px;
    width: 100%;
    border-radius: 100px;
    border: 2px solid var(--main-color);
    padding: 8px 8px 8px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-wrap input[type="text"] {
    height: 40px;
    width: 100%;
    border: none;
}
.ss-wrap input[type="text"]:focus{
    outline: transparent;
}

.ss-wrap>.btn-search {
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    position: relative;
}

.ss-wrap>.btn-search::after {
    content: "";
    background: url(../images/icon/uni-search.svg) no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
    display: block;
}

.dt-search-area .tag-wrap {
    justify-content: flex-end;
    margin-top: 16px;
}

.dt-search-area {
    transition-delay: .2s;
    position: relative;
    z-index: 100;
}


.filter-area {
    display: flex;
}

.filter-nav {
    max-width: 240px;
    width: 100%;
    padding-right: 20px;
    padding-bottom: 40px;
    position: relative;
}

.filter-nav:after {
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background: #eee;
}

.filter-item,
.df-select,
.df-checkbox {
    padding: 8px 12px 8px 16px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease;
    margin-bottom: 4px;
    cursor: pointer;
}

.filter-item>span,
.df-select>span,
.df-checkbox>span {
    font-weight: 500;
}

.filter-item:last-child {
    margin-bottom: 0;
}

.filter-item>span:nth-child(2) {
    width: 24px;
    height: 24px;
}

.filter-item:hover,
.filter-item.on,
.df-select:hover,
.df-checkbox:hover {
    background: #F7F7F8;
}

.df-con {
    display: none;
}

.df-con.on {
    display: block;
}

.df-area {
    width: 100%;
    padding-left: 20px;
    overflow-y: auto;
    height: 388px;
}

.df-select>img,
.df-checkbox>img {
    display: none;
}

input[type="checkbox"]:checked+.df-checkbox>img {
    display: block;
}

input[type="checkbox"]:checked+.df-checkbox>span {
    color: var(--point-color);
}

.df-select.on>span {
    color: var(--point-color);
}

.df-select.on>img {
    display: block;
}

.df-item .df-2dep {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px 10px 16px;
    display: none;
}

.df-item .df-2dep.on {
    display: flex;
}

.df-con .df-1dep {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 2px;
}

.df-item input[type="text"] {
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
}

.df-range-wrap {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.df-range-wrap .range {
    width: 100%;
}

.initial-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    height: 100%;
    justify-content: center;
}

.initial-con>p {
    text-align: center;
    font-weight: 500;
}

.initial-con>.character {
    width: 100px;
}

.initial-con>.character>img {
    width: 100%;
    object-fit: contain;
}

.sl-item-wrap {
    position: relative;
    display: flex;
    gap: 8px;
    padding-top: 24px;
}
.filter-btn-wrap{
    position: relative;
    padding-top: 32px;
    margin-top: 0 !important;
}
.sl-item-wrap:after,
.filter-btn-wrap::after {
    content: "";
    position: absolute;
    width: calc(100% + 64px);
    height: 1px;
    left: -32px;
    top: 0;
    background: #eee;
}
.scroll-wrap{
    overflow-x: auto;
}
.search-value-list {
    position: relative;
    display: flex;
    gap: 8px;
    padding: 20px 0;
}
.chip {
    background: var(--point-bg);
    padding: 0 12px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    gap: 12px;
}

.chip>span {
    font-size: 13px;
    font-weight: 500;
    color: var(--point-color);
    white-space: nowrap;
}

.sub-content>.top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    transition-delay: .3s;
}

.fc-area {
    display: flex;
    gap: 24px;
    align-items: center;
}

.lt-tog .toggle-btn {
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lt-tog .horiz {
    border-radius: 6px;
    width: 32px;
}

.lt-tog .toggle-btn>img {
    position: relative;
}

.lt-tog .toggle-btn>.on {
    display: none;
}

.lt-tog .toggle-btn.on>.on {
    display: block;
}

.lt-tog .toggle-btn.on>.off {
    display: none;
}
.ft-tab-wrap{
    overflow-x: auto;
}
.ft-tab-wrap .ft-tab {
    color: var(--disabled-text);
    font-weight: 600;
    font-size: 14px;
}

.ft-tab-wrap .ft-tab.on {
    color: var(--bk);
}

.tc-txt,
.tc-txt>span {
    font-weight: 600;
}

.card-grid {
    display: grid;
    gap: 24px;
}

.sub-content {
    animation: fade-in-up 800ms 50ms ease both;
    animation-delay: .4s;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(120px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-btn-wrap {
    display: flex;
}

.card-item {
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #eee;
    transition: all .3s ease;
    cursor: pointer;
}

.card-item:hover {
    transform: translateY(-10px);
}

.sum-pop-btn {
    height: 40px;
    padding: 6px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.sum-pop-btn::before {
    content: "";
    background: url(../images/icon/info-pop.svg) no-repeat;
    display: block;
    width: 20px;
    height: 20px;
}

.sum-pop-btn>span {
    font-size: 14px;
    font-weight: 500;
}

.list-type {
    display: none;
}

.list-type.open {
    display: block;
}

.card-grid.open {
    display: grid;
}
.list-type.table-wrap{
    overflow-x: auto;
}
.list-type.table-wrap .nomal-table{
    min-width: 1024px;
}

.box-btn-wrap {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    transition-delay: 0.3s;
    overflow: auto;
}
.box-btn-wrap::-webkit-scrollbar{
    display: none;
}

.box-btn-wrap>li {
    width: 100%;
}

.dh-wrap {
    border: 1px solid #eee;
    height: 40px;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    overflow: hidden;
    width: 280px;
}

.dh-wrap input[type="text"] {
    padding: 0 12px;
    font-size: 14px;
    width: 100%;
}

.dh-wrap .detail-sh-btn {
    background-color: #eee;
    min-width: 40px;
    height: 100%;
    position: relative;
}

.dh-wrap .detail-sh-btn::before {
    content: "";
    background: url(../images/icon/uni-search2.svg) no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.benefit-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item>span {
    position: relative;
    white-space: nowrap;
    padding-left: 28px;
    font-size: 14px;
}

.benefit-item>span::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    top: -1px;
}

.benefit-item .milege::before {
    background: url(../images/icon/mileage-off.svg) no-repeat;
    background-size: contain;
}

.benefit-item.on .milege::before {
    background: url(../images/icon/mileage.svg) no-repeat;
    background-size: contain;
}

.benefit-item .uni-point::before {
    background: url(../images/icon/uni-point-off.svg) no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.benefit-item.on .uni-point::before {
    background: url(../images/icon/uni-point.svg) no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.benefit-item .ec-time::before {
    background: url(../images/icon/ec-time-off.svg) no-repeat;
    background-size: contain;
}

.benefit-item.on .ec-time::before {
    background: url(../images/icon/ec-time.svg) no-repeat;
    background-size: contain;
}

.benefit-item>.scroe {
    font-weight: 700;
    font-size: 14px;
}


.detail-con {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
    padding-top: 40px;
    gap: 40px;
}

.detail-con .dt-info-area {
    padding-top: 40px;
    width: 100%;
    max-width: 928px;
}

.detail-con .dt-info-area.full {
    max-width: 100%;
    padding-top: 0;
}

.sticky-area {
    height: 100%;
    position: sticky;
    top: 80px;
    right: 0;
    max-width: 324px;
    min-width: 200px;
    margin-top: 40px;
    width: 100%;
}

.sticky-box {
    border: 1px solid #ddd;
    padding: 24px;
    border-radius: 8px;
}
.sticky-box .label{
    background: var(--text700);
    color: #fff;
}
.sticky-box .label.point-label{
    background: var(--point-color);
}

.lnb>li {
    padding: 10px;
}

.lnb>li:first-child {
    padding-top: 0;
}

.lnb>li.on a::after {
    content: "";
    display: block;
    width: 2px;
    height: 15px;
    background: var(--point-color2);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.lnb>li.on a {
    color: var(--bk);
    padding-left: 10px;
}

.lnb>li a {
    color: var(--disabled-text);
    font-weight: 500;
    position: relative;
    transition: all .3s;
}

.lnb>li a:hover {
    color: var(--bk);
}

.top-fsb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-con .tit {
    font-size: 32px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 130%;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.detail-con .dt-tit {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-top: 60px;
}

.detail-con .box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 32px;
}

.target-info>strong {
    font-weight: 600;
}

.target-info .inr {
    padding-top: 20px;
}

.target-info .inr>li {
    display: flex;
    margin-bottom: 10px;
}

.target-info .inr>li:last-child {
    margin: 0;
}

.target-info .inr>li>span {
    min-width: 80px;
    color: var(--text600);
    white-space: nowrap;
}

.target-info .inr>li>div {
    font-weight: 500;
}

.detail-con .dt-item {
    margin-top: 20px;
}

.detail-con .poster-img {
    max-width: 600px;
    min-width: 320px;
    width: 100%;
    height: auto;
}

.detail-con .poster-img>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.line-box {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.line-box>.head {
    background: var(--gray-bg);
    padding: 0 24px;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 500;
}

.line-box>.body {
    padding: 8px 24px 16px;
}

.line-box>.body>li {
    padding: 12px 0;
    display: flex;
    border-bottom: 1px solid #eee;
}

.line-box>.body>li:last-child {
    border-bottom: 0;
}

.line-box>.body>li>span {
    color: var(--text600);
    min-width: 100px;
    font-size: 14px;
    font-weight: 500;
}

.line-box>.body>li>p {
    font-size: 14px;
    font-weight: 500;
}

.detail-con .save-btn {
    min-width: 28px;
    min-height: 28px;
}

.detail-con .save-btn>img {
    width: 16px;
    height: 16px;
}

.dt-sort {
    align-items: center;
    margin-bottom: 20px;
    padding-top: 80px;
}

.dt-sort>.dt-tit,
.dt-sort>.si-tit {
    margin: 0 !important;
    padding: 0 !important;
}

.dt-item .gray-box {
    padding: 20px 24px;
    border-radius: 8px;
    background: var(--gray-bg);
    font-size: 14px;
    color: var(--text800);
}

.dt-item .si-tit {
    font-weight: 600;
    margin-bottom: 12px;
}

.ol-tb {
    border-top: 1px solid var(--bk);
}

.ol-tb>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px;
    border-bottom: 1px solid #eee;
}

.dt-item .move-btn {
    min-width: 116px;
    height: 40px;
    border-radius: 8px;
    transition: all .2s;
    font-size: 14px;
    justify-content: center;
}

.dt-item .move-btn:hover {
    background: #F3F4F6;
}

.prof-imgbox {
    min-width: 64px;
    width: 64px;
    min-height: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.prof-imgbox .img {
    width: 100%;
    height: 100%;
    background: url(../images/icon/no-img.svg) no-repeat;
    background-color: #FAF4EC;
}

.prof-imgbox .img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prof-info {
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.prof-info>li {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.prof-info>li:last-child {
    border-bottom: 0;
}

.prof-info>li span {
    font-size: 14px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}


/* 차트 */
.chart-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 32px;
}

.chart-box .chart-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.chart-box .total-num {
    display: flex;
    gap: 6px;
}

.chart-box .total-num>p {
    font-weight: 500;
}

.chart-box .legend>span {
    font-size: 13px;
    position: relative;
}

.chart-box .legend>span::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #e6e6e6;
    margin-right: 4px;
    position: relative;
    top: 1px;
}

.chart-box .legend>span.point::before {
    background: var(--point-color);
}

.chart-wrap {
    max-width: 860px;
    width: 100%;
    padding: 20px 0;
    overflow: auto;
}

.chart-wrap>#barChart {
    min-width: 480px;
}

.back-btn,
.guide-back-btn {
    padding: 0 12px 0 24px;
    position: relative;
}

.back-btn>span {
    font-size: 14px;
    font-weight: 500;
}

.back-btn::before,
.guide-back-btn::before {
    content: "";
    background: url(../images/icon/right-arrow.svg) no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    background-size: contain;
    transform: rotate(180deg);
    position: absolute;
    left: 4px;
    top: 7px;
}

.full-head {
    position: relative;
}

.full-head .tit {
    text-align: center;
    padding: 0 100px;
    width: 100%;
}

.dt-tb input[type="text"] {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
    padding: 0 16px;
    font-size: 14px;
}


.status-wrap {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    overflow: auto;
}

.status-wrap>li {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    width: 100%;
    min-width: 188px;
}

.status-wrap>.status-item>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-item .head {
    margin-bottom: 12px;
}

.status-item .head>strong {
    font-weight: 600;
}

.status-item .head>span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text600);
}

.status-item .dl {
    padding: 4px 0;
}

.status-item .dl>span {
    font-size: 14px;
}

.status-item .dl>.dd {
    font-weight: 600;
}

.status-item.total {
    background: var(--gray-bg);
    border: 1px solid transparent;
}

.status-item.total .p-color {
    font-size: 14px;
    font-weight: 600;
}

.full-head .back-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* 통합검색 */
.total-count {
    text-align: center;
    padding: 64px 0;
}

.total-count>.stg {
    margin-bottom: 4px;
}

.total-count>.stg,
.total-count>.stg>span {
    font-size: 24px;
    font-weight: 600;
}

.total-count .list-count>span {
    font-weight: 400;
}

.result-card {
    display: flex;
    gap: 24px;
    overflow: auto;
}

.result-card>li {
    width: 100%;
    height: 148px;
}

.result-card>li>a {
    border: 1px solid #eee;
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .2s;
    min-width: 208px;
}

.result-card>li>a:hover {
    background: var(--gray-bg);
}

.result-card>li .inr-dep {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-card>li .count {
    font-size: 20px;
    font-weight: 700;
}

.search-bord .srch-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.search-bord .srch-hd .intg-tit {
    font-size: 32px;
    font-weight: 600;
}

.search-bord .srch-hd .case-wrap {
    background: var(--point-bg);
    color: var(--point-color);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
}

.srch-content>li {
    margin-top: 16px;
}

.srch-item {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.srch-item .crd-hd {
    display: flex;
    gap: 8px;
    align-items: center;
}

.srch-item .crd-tit {
    margin: 12px 0 24px;
}

.srch-item .crd-tit .tit {
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 130%;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.srch-item .crd-tit .code {
    font-size: 13px;
    color: var(--text700);
}

.srch-item .crd-info {
    white-space: wrap;
    font-size: 14px;
}

.search-bord>.item {
    margin-top: 100px;
}

/* 유니아이 소식 영역 */
.news-area {}

.news-table {
    border-top: 1px solid var(--bk);
}

.news-table>li {
    border-bottom: 1px solid #eee;
}

.news-table>li>a {
    display: flex;
    padding: 40px;
    justify-content: space-between;
    position: relative;
    align-items: center;
    transition: all .2s;
}

.news-table>li>a:hover .tit,
.news-table>li>a:hover .num {
    color: var(--main-color);
}

.news-table>li>a:hover .gray-label2 {
    background: var(--main-color);
    color: #fff;
}
.news-table .num {
    width: 60px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.news-table .tit{
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    width: calc(100% - 230px);
    padding-left: 20px;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.news-table .file-icon{
    font-size: 0 !important;
    background: none;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    vertical-align: middle;
    display: inline-block;
    margin: 0 8px;
}
.news-table .file-icon::after {
    content: "";
    background: url(../images/icon/file.svg) no-repeat;
    display: block;
    min-width: 24px;
    min-height: 24px;
    background-size: contain;
}

.news-table .label {
    font-size: 14px;
    height: auto;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all .2s;
}
.nt-dv-item{
    display: flex;
    align-items: center;
}
.news-table .num,
.news-table .date,
.views{
    color: var(--text500);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-card-info .views{
    color: var(--bk);
}
.news-table .date{
    width: 10%;
    min-width: 100px;
}
.news-table .views {
    width: 7%;
    min-width: 80px;
}
.nd-top{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 40px;
}
.nd-top .tit{
    font-size: 48px;
    font-weight: 600;
    margin-top: 16px;
}
.nd-top .sp-card-info>li{
    font-size: 18px;
}
.nd-top .sp-card-info>li.cap{
    font-size: 16px;
    border-color: var(--point-color);
    color: var(--point-color);
}
.nd-con .bottom-btn-wrap{
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}
.nd-con .bottom-btn-wrap .aw{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
}
.nd-con .bottom-btn-wrap .aw::after{
    content: "";
    background: url(../images/icon/right-arrow.svg) no-repeat;
    display: block;
    width: 28px;
    height: 28px;
    background-size: contain;
    position: relative;
}
.nd-con .bottom-btn-wrap .prev>.aw:after{
    transform: rotate(180deg);
    left: -1px;
}
.nd-con .bottom-btn-wrap .xl-btn{
    border-radius: 100px;
    padding: 0 48px;
}
.nd-con>.inr p,
.nd-con>.inr span{
    font-family: 'Pretendard' ,sans-serif !important;
     letter-spacing: calc(-2 * 16px / 100) !important;
    font-size: 16px !important;
}


.views::before {
    content: "";
    background: url(../images/icon/view.svg) no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: relative;
    padding-right: 4px;
}
.requiredHeader{
    display: none;
}
.requiredHeader span {
    font-size: 13px;
    color: var(--text700);
}

.file-dt-box {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    min-height: 120px;
    margin-top: 12px;
}

.file-item {
    background: var(--gray-bg);
    padding: 8px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 36px;
    transition: all .2s;
}

.file-item:hover {
    background: var(--gray-hover);
}

.file-item .name {
    color: var(--text700);
}

.file-item .delete {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.file-item .delete>img {
    width: 100%;
    object-fit: contain;
}
.mob-fixed-wrap{
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
}
.mob-fixed-wrap .mf-inr{
    display: flex;
    gap: 8px;
    background-color: #fff; 
    padding: 8px 16px 16px;
}
.mob-fixed-wrap::before{
    content: "";
    width: 100%;
    height: 32px;
    display: block;
    background: #fff;
    background: linear-gradient(180deg,hsla(0,0%,100%,0),#fff);
}
.mf-inr .save-btn{
    min-width: 56px;
    border-radius: 8px;
}
.mf-inr button{
    height: 56px;
}
.fi-dw-wrap>a{
    padding: 20px 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.fi-dw-wrap>a::before{
    content: "";
    background: url(../images/icon/file.svg) no-repeat;
    background-size: contain;
    display: block;
    width: 24px;
    height: 24px;
}
.file-td-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.requiredHeader span{
    font-size: 13px;
    color: var(--text700);
}
.faq-con{
    display: flex;
}

/* 만족도 조사 */
.sf-fixed{
    position: fixed;
    z-index: 1000;
    width: 100%;
    bottom: -10%;
    transition: bottom .7s ease-in-out;
}
.sf-fixed .sf-pst{
    display: flex;
    justify-content: center;
}
.sf-fixed.open {
    bottom: 16px;
}

.sf-fixed .sf-before{
    text-align: center;
    max-width: 640px;
    width: 100%;
    transition: all .2s;
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 0 12px;
}
.sf-before .sf-befor-btn{
    color: #fff;
    width: 100%;
    background: rgba(25,25,25,.7);
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter:saturate(150%) blur(10px);
    filter: drop-shadow(6px 6px 22px rgba(0,0,0,0.22));
    border-radius: 8px;
}

.sf-fixed .sf-after{
    position: absolute;
    background: #fff;
    max-width: 640px;
    width: calc(100% - 24px);
    border-radius: 16px;
    bottom: -70vh;
    transition: all 0.8s ease-in-out;
    box-shadow: var(--box-shadow);
}
.sf-after.on{
    bottom: 0;
}
.sf-after .sfp-head{
    padding: 16px 32px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}
.sf-after .sfp-head .basic-ck>span{
    font-size: 14px;
}
.sfp-head>.sfp-close{
    width: 24px;
    height: 24px;
}
.sfp-head>.sfp-close>img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sf-after .sfp-body{
    padding: 24px 32px;
}
.sfp-btn-wrap{
    margin-top: 40px;
}
.sfp-btn-wrap>button{
    width: 100%;
}
.sfp-body .tit-wrap{
    text-align: center;
    padding: 8px 0 64px;
}
.sfp-body .tit-wrap>.tit{
    font-size: 32px;
    font-weight: 600;
}
.sfp-body .tit-wrap>span{
    color: var(--text600);
    margin-top: 4px;
}
.sfp-body .evaluate-list>li{
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.sfp-body .evaluate-list>li:last-child{
    margin-bottom: 0;
}
.sfp-body .evaluate-list>li span{
    font-size: 14px;
    white-space: nowrap;
}
.sfp-body .evaluate-list>li select,
.sfp-body .evaluate-list>li input[type="text"]{
    width: 100%;
    height: 40px;
    font-size: 14px;
}
.sfp-body .evaluate-list>li select{
    max-width: 200px;
}


.starpoint_wrap{
	display:inline-block;
	white-space: nowrap;
}
.starpoint_box{
	position:relative;
	background-image:url(../images/icon/icon_starpoint.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	font-size:0;
}
.starpoint_box .starpoint_bg{
	display:block;
	position:absolute;
	top:0;
	left:0;
	height: 24px;
	background-image:url(../images/icon/icon_starpoint_on.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	pointer-events:none;
}
.starpoint_box .label_star{
	display:inline-block;
	width:14px;
	height:24px;
	box-sizing:border-box;
    cursor: pointer;
}
.starpoint_box .star_radio{
	opacity:0;
	width:0;
	height:0;
	position:absolute;
}
.starpoint_box .star_radio:nth-of-type(1):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(1):checked ~ .starpoint_bg{
	width:10%;
}
.starpoint_box .star_radio:nth-of-type(2):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(2):checked ~ .starpoint_bg{
	width:20%;
}
.starpoint_box .star_radio:nth-of-type(3):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(3):checked ~ .starpoint_bg{
	width:30%;
}
.starpoint_box .star_radio:nth-of-type(4):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(4):checked ~ .starpoint_bg{
	width:40%;
}
.starpoint_box .star_radio:nth-of-type(5):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(5):checked ~ .starpoint_bg{
	width:50%;
}
.starpoint_box .star_radio:nth-of-type(6):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(6):checked ~ .starpoint_bg{
	width:60%;
}
.starpoint_box .star_radio:nth-of-type(7):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(7):checked ~ .starpoint_bg{
	width:70%;
}
.starpoint_box .star_radio:nth-of-type(8):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(8):checked ~ .starpoint_bg{
	width:80%;
}
.starpoint_box .star_radio:nth-of-type(9):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(9):checked ~ .starpoint_bg{
	width:90%;
}
.starpoint_box .star_radio:nth-of-type(10):hover ~ .starpoint_bg,
.starpoint_box .star_radio:nth-of-type(10):checked ~ .starpoint_bg{
	width:100%;
}

.mob-tab-wrap{
    border-bottom: 1px solid #ddd;
    margin-top: 40px;
    display: none;
}
.mob-tab-wrap>.mob-tab-btn{
    width: 100%;
    height: 40px;
    font-weight: 500;
    border-bottom: 3px solid transparent
}
.mob-tab-btn.on{
    border-bottom: 3px solid var(--point-color);
    color: var(--point-color);
}
.et-summary .team{
    margin-bottom: 0;
}


/* 반응형 */
@media(max-width:1366px){
    .card-grid.grid-3{
        grid-template-columns: repeat(2,1fr);
    }
    .card-grid{
        gap: 16px;
    }
    .sub-tit>h1{
        font-size: 48px;
    }
    .detail-con .dt-info-area{
        max-width: 100%;
    }
    .result-card{
        gap: 16px;
    }
}
@media(max-width:1024px){
    .detail-con{
        display: block;
    }
    .sticky-area{
         display: none;
    }
    .mob-fixed-wrap{
        display: block;
    }
    .copy-btn{
        width: 100%;
    }
}
@media(max-width:768px){
    .sub-visual{
        /*display: block;*/
        min-height: 130px;
    }
    .visual-img {
	    left: 0px;
	}
    .sub-visual .visual-img{
        margin: 0 auto;
        /*padding-top: 32px;*/
        height: 130px !important;
        margin: 0;
        width: auto !important;
    }    
    .sub-tab-area {
        width: calc(100% + 16px);
        padding: 34px 16px 14px 0;
    }
    
    .sub-tit>h1{
        font-size: 32px;
        margin-bottom: 0;
    }
    .dt-sh-wrap{
        flex-direction: column;
    }
    .card-grid{
         grid-template-columns: repeat(1,1fr) !important;
    }
    #search-filter .modal-btn-wrap{
        position: fixed;
        bottom: 24px;
        z-index: 1;
        background: #fff;
        width: 100%;
        padding: 24px 16px 0;
    }
    input::placeholder{
        opacity: 0;
    }
    .sub-content>.top{
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }
    .fc-area{
        justify-content: space-between;
        width: 100%;
    }
    .sub-content>.top .lt-tog{
        display: none;
    }
    .card-item{
        padding: 16px;
    }
    .box-btn-wrap{
        gap: 12px;
        width: calc(100% + 16px);
        padding-right: 16px;
    }
    .box-btn{
        padding: 24px;
        min-width: auto;
    }
    .box-btn strong,
    .search-bord .srch-hd .case-wrap{
        font-size: 16px;
    }
    .box-btn .blink{
        font-size: 14px;
    }
    .detail-con .box{
        padding: 20px 16px;
    }
    .line-box>.body{
        padding: 8px 12px 16px;
    }
    .line-box>.body>li>span{
        min-width: 80px;
    }
    .detail-con .tit{
        font-size: 24px;
    }
    .detail-con .dt-tit{
        padding-top: 20px;
        margin-bottom: 12px;
        font-size: 20px;
    }
    .dt-sort{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .chart-wrap{
        padding: 0;
    }
    .chart-box{
        padding: 20px;
    }
    .history-item>.top{
        gap: 8px;
        justify-content: space-between;
    }
    .history-item>.top>.sort{
        gap: 8px;
    }
    .history-item>.sort{
        flex-direction: column;
        align-items: flex-start !important;
        gap: 4px !important;
    }
    .history-item>.sort .f-line{
        display: none;
    }
    .line-box>.head{
        padding: 0 12px;
    }
    .srch-item{
        padding: 20px 16px;
    }
    .search-bord .srch-hd .intg-tit{
        font-size: 24px;
    }
    .news-table>li>a{
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .news-table .num{
        width: auto;
    }
    .news-table .tit{
        padding-left: 0 !important;
        width: 100%;
        margin: 8px 0 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space:normal;
        font-size: 18px;

    }
    .news-table .nt-rt-wrap>span{
        min-width: auto;
        width: auto;
        text-align: left;
    }
    .news-table .nt-rt-wrap>span:nth-child(1){
        margin-right: 12px;
    }
    .card-grid{
        gap: 12px;
    }
    .nt-dv-item{
        gap: 20px;
    }
    .news-table .views,
    .news-table .date{
        min-width: auto;
        width: auto;
        font-size: 14px;
    }
    .file-icon{
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 10;
    }
    
    .dt-sort{
        margin-bottom: 12px;
    }
    .filter-area{
        height: calc(100vh - 252px);
        border-top: 1px solid #eee;
    }
    #search-filter .modal-wrap{
        padding: 24px 0 32px;
    }
    #search-filter .modal-head{
        padding: 0 16px 24px;  
    }
    #search-filter .filter-toggle{
        margin: 0 16px 20px;
    }
    .filter-nav{
        padding-right: 0;
        max-width: 38%;
    }
    .df-area{
        padding: 8px 12px;
    }
    .filter-item{
        border-radius: 0;
        height: 48px;
        margin-bottom: 0;
    }
    .filter-item>span, .df-select>span, .df-checkbox>span{
        font-size: 14px;
    }
    .df-item .df-2dep{
        padding: 10px 0;
    }
    #search-filter .df-item.f-g4{
        flex-direction: column;
        gap: 8px;
    }
    #search-filter .df-item>button{
        width: 100%;
    }
    .full-head .back-btn{
        position: relative;
    }
    .full-head .tit{
        padding: 0 !important;
    }
    .status-wrap{
        gap: 12px;
        width: calc(100% + 16px);
        padding-right: 16px;
    }
    .status-wrap>li{
        padding: 16px 12px;
    }
    .status-item .head>strong{
        font-size: 14px;
    }
    .nd-top .sp-card-info>li{
        font-size: 14px;
    }
    .nd-top .tit{
        font-size: 24px !important;
    }
    .answer-area .tit{
        font-size: 16px;
        margin-bottom: 12px;
    }
    .fi-dw-wrap>a{
        font-size: 14px;
        padding: 12px 20px;
    }
    .fi-dw-wrap>a::before{
        width: 20px;
        height: 20px;
    }
    .nd-con .bottom-btn-wrap .xl-btn{
        padding: 0 20px;
    }
    .dt-item .gray-box{
        padding: 20px 16px;
    }
    .sub-tit>span{
        font-size: 14px;
    }
    .box-btn .btn-img>img{
        display: none;
    }
    .box-btn .btn-img{
        height: auto;
    }
    .sfp-body .tit-wrap>.tit{
        font-size: 24px;
    }
    .sfp-body .tit-wrap>span{
        font-size: 14px;
    }
    .sf-after .sfp-head{
        padding: 16px;
    }
    .sf-after .sfp-body{
        padding: 24px 16px;
    }
    .faq-con{
        flex-direction: column;
    }
    .g-menu{
        display: flex;
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
        border-bottom: 1px solid #ddd;
        margin-bottom: 32px;
    }
    .g-menu>.g-menu-item{
        margin-bottom: 0;
        padding: 16px;
        border-radius: 0;
        height: auto;
        background: #fff !important;
    }
    .g-menu>.g-menu-item.on{
        border-bottom: 3px solid var(--point-color);
    }
    .guide_area h1{
        font-size: 24px;
        margin-top: 24px;
    }
    .guide_area h2{
        font-size: 18px;
        margin-top: 24px;
    }
    
    .sub-tab-area .sub-tab {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .sub-visual .sub-tit{
    	align-self: flex-start;
    	padding-top:10px;
    }
    
    .sub-visual .visual-img{
    	align-self: flex-start;
    }
    
}
@media(max-width:425px){
    .sf-fixed .sf-after{
        width: 100%;
        border-radius: 16px 16px 0 0;
    }
    .sf-after.on{
        bottom: 0;
    }    
    .sub-visual{
        height: 80px !important;
        min-height: 120px;
        padding-bottom: 22px;
    }
    .sub-visual .visual-img{
        height: 80px !important;
    } 
    .sub-visual .visual-img>img{        
        right: 0 !important;
    }    
    .sub-tab-area {
        padding: 24px 16px 4px 0;
    }
    
    .inr-nav {
    	padding-top: 10px;
	}
	
	.sub-container {padding: 0 12px 0 8px;}
	.sub-visual .sub-tit {padding-left: 5px;}
}

@media(max-width:375px){
    .sub-visual{
        height: 66px !important;
        min-height: 100px;
    }
    .sub-visual .visual-img{
        display:none;
    }    
    .sub-container {padding: 0 6px 0 4px;}
}

/*  AI 추천 버튼 - 20260202   */
.ai-btn {background: var(--point-color) !important; color: #FFF !important;     display: flex; gap: 5px;}
.ai-btn span {color:#FFF; font-size:18px;}

.ai-btn.on {
    background: var(--bk) !important;
    color: #FFF !important;
    display: flex;
    gap: 5px;
}

.ai-recd{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    /* [기본 배경색] 너무 연하지 않은, 적당히 형태가 보이는 블루 */
    background-color: #E8F2FF; 
    color: #2B6CB0; /* 텍스트 및 아이콘 색상 */
    
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    
    /* 부드러운 전환 */
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.ai-recd span{
	font-weight: 500;
    color: var(--point-color);
}

.ai-recd:hover {
    background-color: #D9E9FF; /* 기존보다 훨씬 연하게 조정 */
    /* 미세하게 버튼이 강조되는 느낌을 주려면 아래 옵션 사용 */
    transform: translateY(-1px);
}

.ai-recd:active {
    background-color: #CADAFF;
    transform: translateY(0);
}

.ai-recd .ai-recd-star {
    display: block;
}