@charset "utf-8";

@font-face {
    font-family: 'Gmarket Sans';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansLight.woff2') format('woff2'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansLight.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansLight.otf') format('opentype'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Gmarket Sans';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansMedium.woff2') format('woff2'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansMedium.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansMedium.otf') format('opentype'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansMedium.ttf') format('truetype');
}

@font-face {
    font-family: 'Gmarket Sans';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansBold.woff2') format('woff2'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansBold.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansBold.otf') format('opentype'),
    url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSansBold.ttf') format('truetype');
}

/*  */
.block {
    display: block;
}

.d-flex {
    display: flex;
}

.f-between {
    justify-content: space-between;
}

.f-a-center {
    align-items: center;
}

.t-center {
    text-align: center;
}

/* 모바일 기본: 한 줄 꽉 */
.col-6 {
    grid-column: span 12
}

/* 넓어지면 2열 */
@media (min-width: 720px) {
    .col-6 {
        grid-column: span 6
    }
}

/*  */

/* 원형 구체 만들기 - 시작 */
:root {
    --wiz-bg: #f7f8fa;
    --wiz-card: #fff;
    --wiz-text: #111;
    --wiz-muted: #6b7280;
    --wiz-brand: #2563eb;
    --wiz-brand-weak: #dbeafe;
    --wiz-border: #e5e7eb;
    --wiz-danger: #ef4444;
    --w-bg: #fff;
    --btn-bg: #eff4fc;
    --ccc-border: #ccc;
    --ddd-border: #ddd;
    --eee-border: #eee;
    --b-shadow: 8px 8px 32px -21px rgba(0, 0, 0, 1);


    /* 그라디언트 원형 구체 */
    --orbsize: 25vh; /* 크기 */
    --orbblur: 20px; /* 가장자리 번짐 */
    /* 그라디언트 초점(퍼센트) – JS가 실시간으로 업데이트 */
    --p1x: 34%;
    --p1y: 28%;
    --p2x: 52%;
    --p2y: 52%;
    --p3x: 46%;
    --p3y: 78%;
}

.color-1 {
    color: #006cff;
}

body {
    background: var(--wiz-bg);
    color: var(--wiz-text);
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.orb {
    margin: 3vh auto 0;
    width: var(--orbsize);
    height: var(--orbsize);
    border-radius: 70%;
    /* 색 레이어 3종: 초록빛-하늘, 코어 블루, 하단 마젠타.
       초점 위치를 CSS 변수로 받아 JS가 부드럽게 이동시킴 */
    background: radial-gradient(circle at var(--p1x) var(--p1y),
    #79d2ff 0%, rgba(121, 210, 255, .9) 25%, rgba(121, 210, 255, 0) 55%),
    radial-gradient(circle at var(--p2x) var(--p2y),
            #2432ff 0%, #1a22b4 55%, rgba(26, 34, 180, 0) 80%),
    radial-gradient(circle at var(--p3x) var(--p3y),
            #ff5fe9 0%, rgba(255, 95, 233, .45) 35%, rgba(255, 95, 233, 0) 70%);
    filter: url(#wobble) blur(var(--orbblur));
    box-shadow: 0 12px 40px rgba(64, 72, 255, .18);
    /* 숨쉬기 + 아주 미세한 기울기(더 ‘살아있는’ 느낌) */
    animation: breathe 7s ease-in-out infinite;
    will-change: transform, filter, background-position;
}

@keyframes breathe {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.03) rotate(0.8deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* 접근성: 테스트 단계에선 항상 움직이도록. 필요한 경우 reduce-motion 대응 가능 */
/* 원형 구체 만들기 - 끝 */

/* 공통 화살표 - 시작 */
.back_history {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transform: rotate(180deg);
}

.back_history::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(173, 216, 255, 0.3); /* 옅은 하늘색 */
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: 0;
}

.back_history:hover::before {
    transform: scale(1);
}

.back_history .arrow {
    width: 20px;
    height: 20px;
    z-index: 1; /* 배경보다 위 */
}

/* 공통 화살표 - 끝 */

.ai-inner-page {
    width: 100%;
    min-width: 299px;
    min-height: 100vh;
    height: 100%;
    padding: 20px;
    max-width: 997px;
    margin: auto;
    box-sizing: border-box;
}

.ai-inner-page .company_logo {
    width: 80px;
    margin-bottom: 1vh;
}

.ai-inner-page .company_logo img {
    width: 100%;
}

.ai-inner-page-title {
    font-family: 'Gmarket Sans';
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px 5px;
    text-align: center;
    border: 1px solid skyblue;
    margin: 10px auto 30px;
    margin: 0 auto 2vh;
    border-radius: 30px;
}

.ai-intro-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 0;
}

.slogan--main {
    text-align: center;
    margin: 5vh 0 0;
    font-size: 26px;
    line-height: 40px;
    font-weight: 700;
}

.slogan--main .point_ {
    font-weight: 800;
}

.slogan--main .point_.job,
.slogan--main .point_.startup {
    color: #263a91;
}

.slogan--main .point_.unite {
    position: relative;
}

.slogan--main .point_.unite:after {
    position: absolute;
    content: '';
    top: -5px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #111;
    transform: translateX(-50%);
}

/* 래퍼 */
.shortcut-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 2vh 0;
    width: 100%;
}

/* 카드 버튼 공통 */
.shortcut-card {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    padding: 4vh 20px;
    text-align: center;
    text-decoration: none;
    color: #222;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

/* hover 효과 */
.shortcut-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    filter: brightness(1.03);
}

/* active → 눌린 듯 */
.shortcut-card:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) inset;
}

/* 선택된 탭 (active 상태 표시) */
.shortcut-card.is-active {
    border: 2px solid #696CFF;
    background: linear-gradient(135deg, #e6ebff, #dfe3ff);
    color: #222;
}

/* 큰 글자 (타이틀) */
.shortcut-title {
    display: block;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 작은 글자 (서브텍스트) */
.shortcut-sub {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

/* 취업 버튼 → 블루/보라 그라데이션 */
.shortcut-card--job {
    background: linear-gradient(135deg, #f0f5ff, #e6ecff);
}

/* 창업 버튼 → 하늘/연보라 그라데이션 */
.shortcut-card--startup {
    background: linear-gradient(135deg, #fdfdff, #f1f4ff);
}


.ai-inner-page.commonPage {
    background-image: url('/public/assets/img/ai/intro/ai-inner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    max-width: 997px;

    max-width: 1280px;
    margin: auto;
}

.ai-inner-page.commonPage .d-flex {
    padding: 0;
}

.guide-title {
    font-size: 15px;
    padding-right: 10px;
}

.gj-logo {
    width: 80px;
    padding-top: 5px;
    opacity: 0.7;
}

.job-guide-list-title {
    padding: 25px 20px;
    box-sizing: border-box;
}

.job-guide-list-title .main-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 5px;
}

.job-guide-list-title .sub-title {
    font-size: 18px;
}

/* .guide-wrap .card { border: 1px solid var(--wiz-border); } */
.btn.primary {
    background: var(--wiz-brand);
}

/* Tabs */
.guide-wrap .tabs {
    display: flex;
    gap: 2px;
    background: var(--w-bg);
    border-bottom: 1px solid var(--wiz-border);
    position: sticky;
    top: 0;
    z-index: 5;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.guide-wrap .tab-link {
    flex: 1 1 0;
    text-align: center;
    /* padding: 14px 10px; */
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    color: #949393;
    font-size: 16px;
    height: 60px;
    line-height: 65px;
}

.guide-wrap .tab-link[aria-selected="true"] {
    color: var(--wiz-brand);
    border-bottom: 3px solid var(--wiz-brand);
    font-weight: 800;
}

.guide-wrap .tab-link[aria-disabled="true"] {
    opacity: .6;
    cursor: not-allowed;
}

/* Panels */
.guide-wrap .panel {
    display: none;
    padding: 24px;
    background: var(--w-bg);
    min-height: 55vh;
    /* overflow: auto; */
}

.guide-wrap .panel-3 {
    padding: 0;
}

.guide-wrap .panel.active {
    display: block;
}

.guide-wrap .panel h2 {
    margin: 0 0 12px;
    font-size: 20px
}

.common_head_title {
    text-align: center;
    padding: 10px;
    border: 1px solid var(--btn-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: var(--btn-bg);
}

.sub {
    color: var(--wiz-muted);
    font-size: 14px;
}

.sub-des-text {
    color: #0190ff;
    font-weight: 500;
    margin: 0 0 10px 7px;
    display: block;
    font-size: 13px;
}

/* Form */
/* form { display: grid; gap: 16px; } */
.form- {
    display: grid;
    gap: 16px;
}

.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.col-6 {
    grid-column: span 6
}

.col-12 {
    grid-column: span 12
}

.label {
    display: block;
    font-weight: 500;
    margin: 2px 0 10px;
    font-size: 16px;
}

.select,
.input {
    width: 100%;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    background: var(--w-bg);
    padding: 10px 8px;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;
}

.textarea {
    width: 100%;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    background: var(--w-bg);
    padding: 10px;
    resize: none;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;

    /* resize: vertical; */
    min-height: auto;
    font-family: "Pretendard Variable";
}

.input:focus,
.textarea:focus,
.select:focus {
    outline: none;
    border-color: var(--wiz-brand);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

.textarea::placeholder {
    color: #eee;
}

.sec-line {
    display: flex;
    align-items: center;
}

.sec-label {
    display: block;
    font-weight: 500;
    margin: 0;
    margin-right: 10px;
    font-size: 13px;
    color: #666;
    width: 55px;
    text-align: right;
}

.sec-input {
    width: 70%;
    border: 0;
    font-size: 15px;
    background: var(--w-bg);
    padding: 5px;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;
    font-family: "Pretendard Variable";
}

.total-th-title {
    display: block;
    font-weight: 500;
    margin: 2px 5px 7px;
    font-size: 14px;
}

.th-label {
    display: block;
    font-weight: 500;
    margin: 0;
    font-size: 13px;
    color: #666;
    width: 100%;
    text-align: center;
    margin-right: 10px;
    width: 30%;
    white-space: nowrap;
}

.th-input {
    width: 100%;
    text-align: center;
    font-size: 15px;
    background: var(--w-bg);
    padding: 5px;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;
    font-family: "Pretendard Variable";
    border: 1px solid var(--ddd-border);
    border-radius: 1px;
    border: 0;
    border-bottom: 1px solid #ddd;
}

.th-total-wrap {
    display: grid;
    gap: 12px;
    align-items: end;
    margin-bottom: 12px;
    border: 0;
    border-radius: 10px;
    padding: 10px;
}

.ai-inner-page.commonPage .d-flex.th-total-wrap {
    padding: 0 5px;
}

.hint {
    color: var(--wiz-muted);
    font-size: 12px;
}

.plus.icon-btn {
    color: #0190ff;
    font-weight: 500;
    font-size: 20px;
    background: aliceblue;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    transition: all .3s;
}

.plus.icon-btn:hover {
    filter: brightness(0.95);
}

.ai-inner-page.commonPage .section-head .d-flex {
    padding: 0;
    gap: 3px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 하단 버튼 Bar */
.guide-wrap .actions {
    /* position: sticky; */
    z-index: 5;
    /* bottom: 0; */
    /* bottom: -100px; */
    /* background: linear-gradient(180deg, rgba(255,255,255,.6), #fff 30%); */
    border-top: 1px solid var(--wiz-border);
    height: 100px;
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
    background: var(--btn-bg);
}

.guide-wrap .actions .btn {
    appearance: none;
    border: 1px solid var(--wiz-border);
    background: var(--w-bg);
    color: #111;
    height: 50px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 40%;
    max-width: 200px;
    font-size: 16px;
}

.guide-wrap .actions .btn:hover {
    background: #f8fafc;
}

.guide-wrap .actions .btn.primary {
    background: var(--wiz-brand);
    background: linear-gradient(to bottom right, #09bbfe 0%, #09bbfe 0%, #5a42ec 90%, #5a42ec 100%);

    border-color: var(--wiz-brand);
    color: #fff;
    transition: all .3s;
}

.guide-wrap .actions .btn.primary:hover {
    filter: brightness(0.9);
}

.guide-wrap .actions .btn.ghost {
    background: #f5f5f5;
    border: 1px solid #b1d2ff;
    transition: all .3s;
}

.guide-wrap .actions .btn.ghost:hover {
    background: var(--w-bg);
}

/* 글자 숨김 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Small */
@media all and (max-width: 720px) {
    .col-6 {
        grid-column: span 12
    }

    .tabs {
        flex-wrap: wrap
    }
}

.qual-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    align-items: end;

    border: 0;
    border-radius: 10px;
    padding: 10px 0;
}

input::placeholder,
textarea::placeholder {
    color: #ddd;
}

/* .qual-grid input[type="date"] { min-height: 44px } */
.qual-grid .sec-input {
    width: auto;
}

.qual-grid input[type="date"]::placeholder {
    color: #ddd;
}

.qual-btn-wrap {
    display: flex;
    gap: 10px;
    height: 40px;
}

.qualList-submit {
    width: 100%;
    border: 1px solid #aaa;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}

.qualList-submit:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.qualList-add {
    border: 1px solid #aaa;
    color: #555;
    background: var(--w-bg);
    font-size: 15px;
    width: 100%;
    transition: all .3s;
    cursor: pointer;
}

.qualList-add:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.qualList-remove {
    border: 1px solid #ff00002e;
    color: #ff0000;
    background: var(--w-bg);
    font-size: 15px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

.qualList-remove:hover {
    background: #fef2f2;
    border-color: #fecaca;
}

.expList-btn-wrap {
}

.expList-btn-wrap .expList-btn {
    margin: 10px 0;
    display: flex;
    gap: 10px;
    height: 40px;
    transition: all .3s;
}

.expList-btn-wrap .expList-btn .expList-submit {
    width: 100%;
    border: 1px solid #aaa;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: all .3s;
}

.expList-btn-wrap .expList-btn .expList-submit:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.expList-btn-wrap .expList-btn .expList-edit {
    border: 1px solid #aaa;
    color: #555;
    background: var(--w-bg);
    font-size: 16px;
    width: 100%;
    /* height: 44px; */
    cursor: pointer;
    transition: all .3s;
}

.expList-btn-wrap .expList-btn .expList-edit:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.expList-btn-wrap .expList-btn .expList-delete {
    border: 1px solid #ff00002e;
    color: #ff0000;
    background: var(--w-bg);
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: all .3s;
}

.expList-btn-wrap .expList-btn .expList-delete:hover {
    background: #fef2f2;
    border-color: #fecaca;
}

/* === 이력사항 세트 레이아웃 (qual-grid와 유사) === */
.exp-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    align-items: end;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background: var(--w-bg);
}

.exp-remove {
    border: 1px solid var(--ddd-border);
    background: var(--w-bg);
    padding: 10px 14px;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
}

.exp-remove:hover {
    background: #fef2f2;
    border-color: #fecaca;
}

#expList .grid {
    border: 0;
    border-radius: 10px;
    padding: 20px 0 0;
}

#expList .grid:nth-child(n+2) {
    padding-top: 30px;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}

.tab-grid-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 3vh 0 1vh;
}

.tab-grid-sub-title {
    text-align: right;
    font-size: 14px;
    margin-bottom: 20px;
}

.company_search_wrap {
    position: relative;
}

.company_search_wrap:after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 0;
    transform: translate(-50%, -50%);
    display: block;
    width: 19px;
    height: 20px;

    background-image: url('/public/assets/img/ai/icon/search-2.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.search_result_wrap {
    /* min-height: 200px; */
    overflow: auto;
}

.search_result_wrap .blank_text {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 기업 tab box */
.search_result_box .company-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    position: sticky;
}

.search_result_box .tab-btn {
    position: relative;
    border: none;
    background: none;
    padding: 8px 12px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.search_result_box .tab-btn.active {
    color: #3366ff;
    font-weight: 600;
}

.search_result_box .tab-btn.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px; /* 버튼 아래 살짝 띄워서 */
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3366ff;
}

.search_result_box .company-list {
    display: none;
}

.search_result_box .company-list.active {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* max-height: 140px;
    overflow: auto; */
}

.search_result_box .job-chip {
    padding: 0 12px;
    height: 35px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 15px;
    line-height: 32px;
    cursor: pointer;
}

.search_result_box .job-chip:hover {
    background: #eee;
}

.search_result_box .job-chip:focus {
    /* background: #237bff; */
    /* color: #fff; */
    background: #eff4fc;
    border: 1px solid #237bff;
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
}

/* 채용 카드 */
.guide-wrap .panel-3 .part-1 {
    padding: 24px;
}

.guide-wrap .panel-3 .part-2 {
    padding: 24px;
    background-color: var(--wiz-bg);
}

.guide-wrap .panel-3 .part-2 .tab-grid-title {
    padding-bottom: 2vh;
}

.job-card {
    border: 1px solid var(--wiz-border);
    border-radius: 12px;
    background: #fff;
    padding: 0;
    margin: 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.job-card_head {
    padding: 10px;
}

.job-card.is-selected {
    outline: 3px solid #388cff;
}

.job-card.is-selected .job-select {
    color: #388cff;
}

.job-title {
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.35;
}

.job-badge {
    margin-left: 6px;
    color: #666;
    font-size: 12px;
    font-weight: 600;
}

.job-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.job-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 12px;
    padding: 4px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f8fafc;
}

.job-card_foot {
    display: flex;
    justify-content: center;
}

.job-select {
    display: block;
    background: #eff4fc;
    color: #006aff;
    color: #999;
    padding: 10px 0;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.job-select:hover {
    filter: brightness(.98);
}

.jobCards-wrap {
    /* max-height: 200px; */
    overflow: auto;
}

.ai-inner-page.commonPage .d-flex.job-tags-wrap {
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px 0 10px;
}

/* 자기소개서 페이지 */
.intro-wrapper {
    background: var(--w-bg);
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
}

.solo-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 5vh 0 3.5vh;
    position: relative;
}

.solo-title:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #9dd9f9;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.result_pannel {
    padding: 0 20px;
}

.result_pannel .fixed_box {
    background-color: #eff4fc;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.overall_self_intro {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #111;
    word-break: keep-all;
    padding-bottom: 10px;
}

.support_field {
    font-size: 15px;
    color: #0190ff;
    word-break: keep-all;
}

/* 탭 전체 */
/* .tab_pannel { height: 50vh; overflow: auto; } */
.tab_pannel .tab-wrap {
    margin-top: 15px;
}

/* 탭 버튼 */
.tab_pannel .tabs {
    cursor: pointer;
    font-size: 15px;
    height: auto;
    line-height: initial;
    transition: all 0.25s ease;
    padding: 15px 0;
    position: relative; /* ::after 위치 기준 */
}

.tab_pannel .tabs li {
    cursor: pointer;
    font-size: 16px;
    height: auto;
    line-height: initial;
    transition: all 0.25s ease;
    padding: 15px 0;
    position: relative;
}

.tab_pannel .tabs li:after {
    content: "";
    position: absolute;
    bottom: -6px; /* 글자 아래쪽 위치 */
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #006cff; /* 포인트 컬러 */
    border-radius: 50%;
}

.tab_pannel.tabs li:hover {
    background: #e9f3fb;
}

.tab_pannel .tabs li.current {
    color: #006cff;
    font-weight: 700;
}

/* 기본상태: 동그라미 없음 */
.tab_pannel .tabs li::after {
    content: none;
}

.tab_pannel .tabs li.current::after {
    content: "";
    position: absolute;
    bottom: 0; /* 텍스트 아래 위치 */
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #006cff; /* 포인트 색상 */
    border-radius: 50%;
}


/* 탭 컨텐츠 */
.tab_pannel .tab-content {
    display: none;
    /* padding: 25px 15px; */
    padding-top: 25px;
    border: 1px solid #ddd;
    border-radius: 0 8px 8px 8px;
    background: #fff;
    overflow: hidden;
}

.tab_pannel .tab-content.current {
    display: block;
}

/* 내부 타이틀 & 설명 */
.tab_pannel .tab-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1270a7;
}

.tab_pannel .tab-desc {
    font-size: 16px;
    line-height: 20px;
    color: #666;
    margin-bottom: 15px;
    padding: 0 15px;
}

/* 리스트 */
.tab_pannel .job-list {
    list-style: disc;
    padding: 13px 0 15px 30px;
    color: #333;
    background-color: #eff4fc;
    border-radius: 10px;
    margin: 0 20px;
}

.tab_pannel .job-list li {
    margin-bottom: 8px;
}

.tab_pannel .job-card {
    margin: 20px;
}

.tab_pannel .job-card {
    margin-top: 0;
    margin-bottom: 0;
}

.tab_pannel .col-12:first-child .job-card {
    margin-top: 20px;
}

.tab_pannel .col-12:last-child .job-card {
    margin-bottom: 30px;
}

.tab_pannel .job-list2 {
    list-style: disc;
    padding: 13px 10px 15px;
    color: #333;
    background-color: #eff4fc;
    border-radius: 10px;
    margin: 20px;
}

.tab_pannel .job-list2 li {
    margin-bottom: 8px;
}

.tab_pannel .job-list2 .main-li {
    flex-wrap: wrap;
    font-weight: 500;
    padding: 0;
    align-items: flex-end;
    justify-content: space-between;
    padding: 15px 0;
}

.tab_pannel .job-list2 .main-li .title-text {
    font-size: 22px;
}

.tab_pannel .job-list2 .main-li .small-text {
    color: #777;
    font-weight: 400;
    font-size: 13px;
}

.tab_pannel .job-list2 .box-- {
    padding: 20px 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #fff;
}

.tab_pannel .job-list2 .box-- .line- {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tab_pannel .job-list2 .box-- .line-:last-child {
    margin-bottom: 0;
}

.tab_pannel .job-list2 .box-- .line- .first {
    color: #777;
}

.tab_pannel .job-list2 .box-- .line- .last {
    font-weight: 500;
    color: #666;
}

/* 선택된 카드 강조 */
/* .tab_pannel .job-card.is-selected {
	border: 3px solid #388cff;
	border-radius: 8px;
} */

.tab_pannel .job-list li:last-child {
    margin-bottom: 0;
}

/* 삭제 예정 */
.tab_pannel .tab-content .tab-desc {
    word-break: keep-all;
}

.tab-content .grid {
    grid-template-columns: initial;
}

.tab-content .grid .box-- {
    margin-bottom: 0;
}

/* 스크롤 커스텀 */
.jobCards-wrap::-webkit-scrollbar,
.company-list::-webkit-scrollbar {
    width: 5px; /* 스크롤바의 너비 */
}

.jobCards-wrap::-webkit-scrollbar-thumb,
.company-list::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #388cff; /* 스크롤바의 색상 */

    border-radius: 10px;
}

.jobCards-wrap::-webkit-scrollbar-track,
.company-list::-webkit-scrollbar-track {
    /* background: rgba(33, 122, 244, .1); */
    /*스크롤바 뒷 배경 색상*/
    background: #ddd;
}

/* tab -> 스크롤로 변경된 부분 */
.ai-common_wrap {
    padding-top: 25px;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    /* margin: 0 20px; */
}

.ai-common_wrap .desc {
    font-size: 16px;
    line-height: 20px;
    color: #666;
    margin-bottom: 15px;
    padding: 0 15px;
    word-break: keep-all;
}

.ai-common_wrap .job-list {
    list-style: disc;
    padding: 13px 0 15px 30px;
    color: #333;
    background-color: #eff4fc;
    border-radius: 10px;
    margin: 0 20px;
}

.ai-common_wrap .job-list li {
    margin-bottom: 8px;
}

.ai-common_wrap .job-card {
    margin: 20px;
}

.ai-common_wrap .job-card {
    margin-top: 0;
    margin-bottom: 0;
}

.ai-common_wrap .col-12:first-child .job-card {
    margin-top: 20px;
}

.ai-common_wrap .col-12:last-child .job-card {
    margin-bottom: 20px;
}

.ai-common_wrap .job-list2 {
    list-style: disc;
    padding: 13px 10px 15px;
    color: #333;
    background-color: #eff4fc;
    border-radius: 10px;
    margin: 10px 20px 20px;
}

.ai-common_wrap .job-list2 li {
    margin-bottom: 8px;
}

.ai-common_wrap .job-list2 .main-li {
    flex-wrap: wrap;
    font-weight: 500;
    padding: 0;
    align-items: flex-end;
    justify-content: space-between;
    padding: 15px 0;
}

.ai-common_wrap .job-list2 .main-li .title-text {
    font-size: 22px;
}

.ai-common_wrap .job-list2 .main-li .small-text {
    color: #777;
    font-weight: 400;
    font-size: 13px;
}

.ai-common_wrap .job-list2 .box-- {
    padding: 20px 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #fff;
}

.ai-common_wrap .job-list2 .box-- .line- {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ai-common_wrap .job-list2 .box-- .line-:last-child {
    margin-bottom: 0;
}

.ai-common_wrap .job-list2 .box-- .line- .first {
    color: #777;
}

.ai-common_wrap .job-list2 .box-- .line- .last {
    font-weight: 500;
    color: #666;
}

.ai-common_wrap .job-list li:last-child {
    margin-bottom: 0;
}

.ai-common_wrap .tab-content .tab-desc {
    word-break: keep-all;
}

.ai-common_wrap .grid {
    grid-template-columns: initial;
}

.ai-common_wrap .grid .box-- {
    margin-bottom: 0;
}

.ai-common_wrap .actions {
    z-index: 5;
    border-top: 1px solid var(--wiz-border);
    height: 100px;
    display: flex;
    gap: 15px;
    margin-top: 2vh;
    justify-content: center;
    align-items: center;
    background: var(--btn-bg);
}

.guide-wrap {
    position: relative;
}

.guide-wrap .actions .btn {
    line-height: 17px;
}

/* 아이콘 바로가기 */
.quick-icon-menu-wrap {
    position: fixed;
    top: 80%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-50%); /* 세로 중앙정렬 보정(선택) */
}

.quick-icon-menu-wrap a {
    /* 크기 변수 */
    --collapsed: 50px; /* 아이콘만 보이는 기본 너비 */
    --expanded: 200px; /* 펼쳤을 때 너비 (텍스트 길이에 맞게 조절) */

    /* 레이아웃 */
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;

    /* 오른쪽 고정 & 왼쪽으로만 펼치기 */
    width: var(--collapsed);
    margin-left: auto; /* 오른쪽에 붙이고, 확장 시 왼쪽으로만 늘어남 */
    overflow: hidden;

    /* 스타일(네가 쓰던 값 반영) */
    padding: 9px;
    border-radius: 30px;
    border: 1px solid #ccc;
    /* background-image: linear-gradient(135deg, #fff1eb 0%, #ace0f9 100%); */
    background-color: #fff;
    text-decoration: none;

    /* 애니메이션 */
    transition: width .35s ease;
    will-change: width;
    background-color: #ffca00;
    background-color: #fff;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, .1);
}

/* hover된 a만 확장 */
.quick-icon-menu-wrap a:hover,
.quick-icon-menu-wrap a:focus-visible {
    width: var(--expanded);
}

.quick-icon-menu-wrap a img {
    height: 30px;
    object-fit: contain;
    flex-shrink: 0; /* 아이콘 크기 고정 */
}

/* 텍스트: 기본 숨김 */
.quick-icon-menu-wrap .icon-T {
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .28s ease, transform .28s ease;
}

/* hover된 a의 텍스트만 나타남 */
.quick-icon-menu-wrap a:hover .icon-T,
.quick-icon-menu-wrap a:focus-visible .icon-T {
    opacity: 1;
    transform: translateX(0);
    font-weight: 600;

    color: #006cff;
}

/* 이력사항 수정부분 */
.existing-info-wrap {
    padding: 20px;
}

.dv_career_form {
    padding: 30px 20px;
    border-top: 3px dotted #ddd;
}

.existing-info-wrap .upper-existing-info {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.upper-existing-info .my-info {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

.info-add-btn {
    text-align: right;
}

.info-add-btn span {
    text-decoration: underline;
    color: #2563eb;
    font-size: 15px;
    cursor: pointer;
}

.info-add-btn span:hover {
    font-weight: 700;
}

.existing-info {
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #0190ff;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 10px;
    background: var(--w-bg);
    border-top: 2px solid #000;
}

.existing-info .value {
    margin: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    display: block;
    color: #111;
}

.existing-info .name {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    display: block;
    color: #666;
}

.existing-info .company,
.existing-info .career,
.existing-info .period-em-wrap {
    margin-bottom: 20px;
}

.existing-info .period-em-wrap .period-title {
    font-size: 15px;
    font-weight: 400;
}

.existing-info .period-em-wrap .period-line {
    color: #111;
    font-size: 16px;
    margin-left: 3px;
}

.career-explanation {
    margin-top: 10px;
    font-size: 15px;
    color: #555;
}

.certification {
    padding: 20px;
    background: #f9f9f9;
    margin: 15px 0;
}

.certification_name {
    font-size: 15px;
}

.certification .value {
    font-weight: 700;
    font-size: 18px;
}

.certification .main-name {
    font-weight: 600;
    font-size: 18px;
}

.issue_date {
    font-size: 14px;
    color: #555;
}

.issuing_organization {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.upper_certification {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.certification_add {
    text-align: right;
}

.certification_add span {
    text-decoration: underline;
    color: #2563eb;
    font-size: 15px;
    cursor: pointer;
}

.certification_add:hover span {
    font-weight: 700;
}

.certification input {
    border: 0;
}

.existing-info button {
    width: 100%;
    height: 50px;
}

/* .existing-info .plus.icon-btn { background: var(--w-bg); font-size: 17px;} */

.existing-info-btn {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.existing-info-btn .edit-btn {
    border: 1px solid #0190ff;
    color: #0190ff;
    height: 45px;
    line-height: 43px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 18px;
    transition: all .3s;
}

.existing-info-btn .edit-btn:hover {
    background: #f5f5f5;
    font-weight: 600;
}

.existing-info-btn .delete-btn {
    border: 1px solid #ccc;
    color: #999;
    background-color: #f9f9f9;
    font-size: 15px;
    margin: 5px 0 10px;
    height: 45px;
    border-radius: 50px;
    margin: 25px auto 15px;
    width: 100%;
    min-width: 150px;
    transition: all .3s;
}

.existing-info-btn .delete-btn:hover {
    color: #bbb;
    background-color: #eee;
    font-weight: 600;
}

.certi-con-box {
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    margin: 15px 0 7px;
    border: 1px solid #e9e9e9;
}

.certi-con-box li {
    margin-bottom: 12px;
    text-align: center;
}

.certi-con-box li:last-child {
    margin-bottom: 0;
}

.certi-con-box li span {
    display: inline-block;
}

.certi-con-box li .first {
    width: 30%;
}

.certi-con-box li .last {
    width: 60%;
}

.certi-info-btn {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.certi-info-btn .edit-btn {
    border: 1px solid #0190ff;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    background-color: #0190ff;
    cursor: pointer;
    border-radius: 20px;
    transition: all .3s;
    width: 95%;
    margin: auto;
}

.certi-info-btn .edit-btn:hover {
    background-color: #0079d7;
    color: #fff;
    font-weight: 700;
    border: 1px solid #ddd;
}

.certi-info-btn .delete-btn {
    color: #ffa7a7;
    color: #aaa;
    font-size: 15px;
    margin: 0;
    text-align: right;
    border: 1px solid #e9e9e9;
    padding: 10px;
    width: 93%;
    margin: auto;
    background-color: #e9e9e9;
    border-radius: 7px;
    text-align: center;
}

.certi-info-btn .delete-btn:hover {
    color: #ff0000;
    font-weight: 600;
}

/* 보유자격사항 추가(목록) */
.certification_list_add {
    padding: 15px;
    border: 1px solid #ddd;
    margin: 20px;
    border-radius: 5px;
}


/* (선택) 모션 최소화 사용자 배려 */
@media (prefers-reduced-motion: reduce) {
    .quick-icon-menu-wrap a,
    .quick-icon-menu-wrap .icon-T {
        transition: none;
    }
}

/* 화면 넓어지면 다열 */
@media (min-width: 768px) {
    /* 회사 | 직무 | 시작 | 종료 | 삭제 */
    .exp-grid {
        grid-template-columns: 1fr 1fr 180px 180px 50px;
        align-items: end;
    }
}

@media screen and (min-width: 475px) {
    .ai-inner-page .company_logo {
        width: 100px;
    }
}

@media all and (min-width: 578px) {
    /* ai 소개서 - 시작 */
    .ai-inner-page-title {
        font-size: 18px;
    }

    .slogan--main {
        margin-bottom: 0;
        font-size: 33px;
        line-height: 53px;
    }

    .shortcut-title {
        font-size: 24px;
        line-height: 28px;
    }

    /*ai 소개서 - 끝 */
    .info-add-btn span {
        font-size: 17px;
    }

    .sub {
        font-size: 18px;
        font-weight: 500;
    }

    .common_head_title {
        padding: 15px;
        margin-bottom: 50px;
    }

    .label {
        font-size: 18px;
        margin: 4px 7px 10px;
    }

    .select, .input {
        font-size: 18px;
        padding: 15px;
    }

    .textarea {
        font-size: 18px;
        padding: 15px;
    }

    .guide-wrap .panel {
        padding: 45px 24px;
    }

    .guide-wrap .panel-3 {
        padding: 0;
    }

    .guide-wrap .panel-3 .part-1 {
        padding: 45px 24px;
    }

    .guide-wrap .panel-3 .part-2 {
        padding: 45px 24px;
    }

    .job-guide-list-title .main-title {
        padding-bottom: 10px;
    }

    .job-guide-list-title .main-title {
        font-size: 28px;
    }

    .job-guide-list-title .sub-title {
        font-size: 20px;
    }

    .guide-wrap .tab-link[aria-selected="true"] {
        font-weight: 900;
        font-size: 20px;
    }

    .guide-wrap .tab-link {
        font-size: 18px;
    }

    .th-total-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .qual-grid {
        padding: 20px;
    }

    .sec-label {
        width: 65px;
        font-size: 16px;
    }

    .sec-input {
        padding: 15px 10px;
        font-size: 17px;
    }

    .guide-wrap .actions .btn {
        font-size: 18px;
        line-height: 20px;
    }

    .section-head {
        margin-top: 12px;
    }

    .th-label {
        font-size: 16px;
    }

    .th-input {
        font-size: 17px;
    }

    .tab-grid-title {
        font-size: 22px;
    }

    .qual-remove {
        font-size: 18px;
    }

    .section-head.add .plus.icon-btn {
        font-size: 20px;
        height: 55px;
    }

    .section-head.add {
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .search_result_box .tab-btn {
        font-size: 18px;
    }

    .search_result_box .job-chip {
        font-size: 17px;
    }

    .search_result_box .company-list {
        padding: 10px 0;
    }

    .company_search_wrap:after {
        bottom: 5px;
    }

    .tab-grid-sub-title {
        font-size: 16px;
    }

    .job-card_head {
        padding: 25px 20px;
    }

    .job-title {
        font-size: 19px;
    }

    .job-meta {
        font-size: 16px;
    }

    .job-tag, .job-badge {
        font-size: 14px;
    }

    .job-select {
        height: 50px;
        font-size: 17px;
        color: #fff;
        background-color: #0190ff;
    }

    .tab_pannel .tabs li {
        font-size: 18px;
    }

    .solo-title {
        font-size: 22px;
    }

    .overall_self_intro {
        font-size: 20px;
    }

    .support_field {
        font-size: 16px;
    }

    .result_pannel .fixed_box {
        padding: 25px 20px;
    }

    .ai-common_wrap .job-list2 .main-li .title-text {
        font-size: 24px;
        font-weight: 600;
    }

    .ai-common_wrap .job-list2 .main-li .small-text {
        font-size: 15px;
    }

    .ai-common_wrap .job-list2 .box-- {
        padding: 20px;
    }

    .ai-common_wrap .job-list2 .box-- .line- .first {
        font-size: 17px;
    }

    .ai-common_wrap .job-list2 .box-- .line- .last {
        font-size: 19px;
    }

    .job-guide-list-title {
        padding: 15px 25px;
    }

    .ai-common_wrap .desc {
        font-size: 18px;
        line-height: 22px;
    }

    .ai-common_wrap .job-list li {
        font-size: 17px;
    }

    .ai-common_wrap .actions .btn {
        font-size: 18px;
        line-height: 20px;
    }

    .solo-title {
        padding: 5vh 0 3.5vh;
    }

    .quick-icon-menu-wrap a {
        --collapsed: 70px;
    }

    .quick-icon-menu-wrap a img {
        height: 50px
    }

    .quick-icon-menu-wrap a:hover .icon-T {
        font-size: 17px;
    }

    .certification_name, .issue_date, .issuing_organization {
        font-size: 16px;
    }


    /* 자기소개 기본정보 */
    .existing-info-wrap {
        padding: 30px;
    }

    .existing-info {
        padding: 30px;
    }

    .existing-info .period-em-wrap .period-title,
    .existing-info .name {
        font-size: 16px;
    }

    .existing-info .value {
        font-size: 18px;
    }

    .existing-info-btn .delete-btn {
        font-size: 16px;
        margin: 30px auto 15px;
    }

    /* .existing-info-btn .delete-btn { width: 40%; max-width: 200px; font-size: 16px; } */
    .certification_add span {
        font-size: 17px;
    }

    .certification .main-name {
        font-size: 20px;
    }

    .certification {
        padding: 30px;
    }

    .upper_certification {
        margin-bottom: 20px;
    }

    .certi-con-box {
        padding: 20px;
        margin: 25px 0 15px;
    }

    .certi-con-box li .first {
        font-size: 16px;
    }

    .certi-con-box li .last {
        font-size: 17px;
    }

    .certi-info-btn .delete-btn {
        font-size: 16px;
    }

    /* .certi-info-btn .delete-btn { width: 25%; min-width: 150px; max-width: 200px; } */
    .dv_career_form {
        padding: 40px 25px;
    }

    .expList-btn-wrap .expList-btn {
        gap: 20px;
        height: 48px;
    }

    .qualList-remove,
    .expList-btn-wrap .expList-btn .expList-submit {
        font-size: 16px;
    }

    .existing-info .period-em-wrap .period-line {
        font-size: 18px;
    }

    .existing-info-wrap .upper-existing-info {
        margin-bottom: 20px;
    }
}

@media all and (min-width: 650px) {
    .hint {
        font-size: 14px;
        margin-left: 12px;
    }

    .sub-des-text {
        font-size: 14px;
        margin: 0 0 10px 12px;
    }

    .tab-grid-title {
        font-size: 24px;
    }

    .search_result_box .tab-btn {
        font-size: 19px;
    }

    .search_result_box .job-chip {
        font-size: 18px;
        padding: 0 17px;
        height: 37px;
    }

    .job-title {
        font-size: 20px;
    }

    .job-card_head {
        padding: 20px;
    }

    .job-select {
        font-size: 18px;
    }

    .certification .main-name, .upper-existing-info .my-info {
        font-size: 22px;
    }

    .certi-con-box {
        margin: 25px 5px 15px;
    }

    .certi-con-box li {
        margin-bottom: 15px;
    }

    .certi-con-box li .first {
        font-size: 17px;
    }

    .certi-con-box li .last {
        font-size: 18px;
    }

    .certi-info-btn .edit-btn {
        height: 45px;
        line-height: 45px;
        border-radius: 40px;
        font-size: 17px;
    }

    .expList-btn-wrap .expList-btn, .qual-btn-wrap {
        height: 45px;
    }

    .certi-info-btn .delete-btn {
        padding: 13px;
    }

    .guide-wrap .actions .btn {
        height: 55px;
        line-height: 55px;
    }

    /* 기본정보, 이력사항 - 시작 */
    .ai-inner-page.commonPage .d-flex {
        padding: 10px;
    }

    .guide-wrap .actions {
        gap: 20px;
    }

    /* 기본정보, 이력사항 - 끝 */
}

@media all and (min-width: 768px) {
    .ai-inner-page {
        width: 100%;
        padding: 20px 0;
    }

    .ai-inner-page .block {
        display: inline-block;
    }

    .ai-inner-page-title {
        font-size: 24px;
    }

    .orb {
        --orbsize: 30vh;
        margin: 3vh auto;
    }

    .slogan--main {
        font-size: 44px;
        line-height: 60px;
    }

    .slogan--main.point_ {
        font-weight: 900;
    }

    .slogan--main.point_unite:after {
        top: -8px;
        width: 10px;
        height: 10px;
    }

    .shortcut-wrap {
        width: 90%;
        gap: 40px;
    }

    .shortcut-sub {
        font-size: 20px;
    }

    .shortcut-title {
        font-size: 32px;
        line-height: 36px;
    }


    /* 화면이 넓어지면 4열로 확장 */
    /* .qual-grid { grid-template-columns: repeat(3, 1fr) 50px; } */
    .qual-grid {
        padding: 30px 10px;
    }

    .qual-remove {
        width: 100%;
        padding: 10px 5px;
        border: 0;
    }

    .sec-line {
        display: block;
    }

    .sec-label {
        text-align: center;
        margin-bottom: 10px;
        font-size: 18px;
        width: 70px
    }

    .th-label {
        margin-bottom: 10px;
        text-align: left;
        font-size: 17px;
    }

    .th-input {
        padding: 10px;
        text-align: left;
        height: 45px;
        font-size: 18px;
    }

    .ai-inner-page.commonPage .d-flex.th-total-wrap {
        padding: 20px;
    }

    .th-total-wrap {
        gap: 20px;
    }

    #expList .qual-remove {
        border: 1px solid #ff00002e;
        height: 55px;
        border-radius: 3px;
        font-size: 20px;
    }

    .hint {
        font-size: 16px;
    }

    .label {
        font-size: 18px;
    }

    .select, .input {
        font-size: 18px;
        height: 55px;
    }

    .grid {
        gap: 25px;
    }

    .sub-des-text {
        font-size: 16px;
    }

    .guide-wrap .actions .btn {
        font-size: 20px;
        height: 60px;
    }

    .sec-input {
        font-size: 18px;
        height: 55px;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .qual-grid .sec-input {
        width: 100%;
    }

    .textarea {
        font-size: 18px;
    }

    .job-title {
        font-size: 22px;
    }

    .job-meta {
        font-size: 18px;
    }

    .job-tag, .job-badge {
        font-size: 16px;
    }

    .result_pannel .fixed_box {
        padding: 35px 30px;
    }

    .overall_self_intro {
        font-size: 22px;
        line-height: 26px;
        padding-bottom: 15px;
    }

    .support_field {
        font-size: 17px;
    }

    .ai-common_wrap .job-list2 {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .ai-common_wrap .job-list2 .box-- {
        padding: 25px;
    }

    .ai-common_wrap .job-list2 .box-- .line- .first {
        font-size: 18px;
    }

    .ai-common_wrap .job-list2 .box-- .line- .last {
        font-size: 21px;
    }


    .ai-common_wrap .desc {
        font-size: 20px;
        line-height: 24px;
    }

    .ai-common_wrap .job-list li {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .ai-common_wrap .job-list li:last-child {
        margin-bottom: 0;
    }

    .job-guide-list-title {
        padding: 0 40px 20px;
    }


    .certification {
        padding: 30px;
    }

    .certi-info-btn .edit-btn {
        height: 50px;
        line-height: 50px;
    }

    .expList-btn-wrap {
        width: 95%;
        margin: auto;
    }

    .expList-btn-wrap .expList-btn, .qual-btn-wrap {
        height: 55px;
        line-height: 55px;
        gap: 20px;
    }

    .expList-btn-wrap .expList-btn .expList-submit,
    .expList-btn-wrap .expList-btn .expList-edit,
    .expList-btn-wrap .expList-btn .expList-delete,
    .qualList-submit,
    .qualList-remove,
    .qualList-add {
        font-size: 17px;
    }

    .existing-info-btn .edit-btn {
        height: 55px;
        line-height: 55px;
    }

    .qualList-submit, .qualList-remove {
        border-radius: 5px;
    }

    .qual-grid {
        gap: 40px;
    }

    .existing-info .company, .existing-info .career, .existing-info .period-em-wrap,
    .existing-info .company, .existing-info .career, .existing-info .period-em-wrap,
    .existing-info .period-em-wrap,
    .career-explanation {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .existing-info .name, .existing-info .value {
        margin-top: 0;
        text-align: left;
    }

    .existing-info .name {
        margin-right: 20px;
        width: 140px;
        text-align: left;
    }

    .certi-info-btn .delete-btn {
        padding: 15px;
        font-size: 17px;
    }

    .existing-info-btn .delete-btn {
        font-size: 17px;
        height: 55px;
    }

    .guide-wrap .actions {
        height: 130px;
    }

    .existing-info .name {
        font-size: 17px;
    }

    /* 기본정보, 이력사항 - 시작 */
    .ai-inner-page.commonPage .d-flex {
        padding: 20px 25px;
    }

    .guide-wrap .tab-link {
        height: 65px;
        line-height: 68px;
        font-size: 18px;
    }

    .guide-wrap .tab-link[aria-selected="true"] {
        font-size: 20px;
        line-height: 22px;
    }

    .guide-wrap .actions {
        gap: 25px;
    }

    /* 기본정보, 이력사항 - 끝 */
}

@media all and (min-width: 996px) {
    .guide-wrap {
        padding: 0 40px 20px;
    }
}

@media all and (min-width: 1080px) {
    .quick-icon-menu-wrap {
        width: 978px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


