main {
    overflow: hidden;
}
.sub_page .hero-header {
    margin-bottom: calc(var(--sec-gap) / 2);
}

.sec-title {
    font-size: var(--t4);
}

/* contact_sec */
.contact_sec .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact_sec .sec-header {
    position: sticky;
    top: var(--header);
    height: fit-content;
}

.contact_sec .sec-title {
    margin-bottom: var(--con-gap);
}
.contact_sec .sec-content {
    min-width: 0;
}
.contact_sec address ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact_sec address p,
.contact_sec address a {
    font-size: var(--d1);
}

.contact_sec address p.bold {
    font-size: var(--t6);
    color: var(--ft-main);
    font-weight: var(--semi-bold);
    margin-bottom: 14px;
}

.form_item {
    margin-bottom: var(--con-gap);
}

.form_title {
    display: block;
    font-size: var(--t6);
    color: var(--ft-main);
    font-weight: var(--semi-bold);
    margin-bottom: 20px;
}

.input_name {
    font-size: var(--d1);
    transition: color .4s ease;
}

.checkbox_group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.checkbox_btn {
    padding: 30px;
    border-radius: var(--border-radius);
    background: var(--gray-100);
    justify-content: center;
    transition: background .4s ease;
    text-align: center;
}

.checkbox_btn:has(input:checked) {
    background: var(--point);
}

.checkbox_btn:has(input:checked) .input_name {
    color: white;
}

.input_box:not(.file_box) {
    padding: 20px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-300);
}

.input_textarea {
    height: 200px;
}

.input_text,
.input_textarea {
    font-size: var(--ft18) !important;
}



.file_box {
    position: relative;
    width: 100%;
}

.input_file {
    display: none;
}

.file_label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--gray-100);
    cursor: pointer;
    transition: 0.2s;
    padding: 10px;
    padding-left: 30px;
}

.file_label:hover {
    border-color: var(--point);
    background-color: #f0f8ff;
}

.file_label_text {
    font-size: var(--ft18);
    color: var(--ft-sub);
}

.file_label_btn {
    background: var(--gray-500);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: var(--ft16);
}
.file_label:hover .file_label_btn {
    background: var(--point);
}
.file_list {
    margin-top: 8px;
    list-style: none;
    padding-left: 0;
}

.file_list li {
    font-size: 14px;
    color: var(--ft-sub);
    margin-bottom: 4px;
    padding: 10px 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
}

.file_list li .remove {
    width: 12px;
    height: 12px;
    display: inline-block;
    cursor: pointer;
    color: var(--gray-400);
    margin-left: auto;
    flex-shrink: 0;
    background: url('/images/icon/close.svg') no-repeat center / contain;
}

.form_agree .check_btn {
    cursor: pointer;
}
.agree_link {
    width: fit-content;
    margin-left: 10px;
    text-decoration: underline;
}

#formSend {
    border: 0;
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 20px;
}
#formSend .btn-text {
    font-size: var(--ft20);
    width: 100%;
}
#formSend .btn-icon {
    flex-shrink: 0;
}

/* process_sec */
.process_sec {
    padding-bottom: var(--sec-gap);
}
.process_sec .sec-header {
    margin-bottom: var(--con-gap);
}
.process_sec .sec-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-wrap {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 150px;
    justify-content: center;
}
.process {
    width: 340px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;    
}
.process-list {
    display: flex;
    position: relative;
    width: 100%;
}
.process-list .process {
    transition: transform .8s ease, opacity .8s ease;
    margin-right: -20px;
}


.process-list .process:nth-child(2) {
    transform: translateX(-80%);
    
}
.process-list .process:nth-child(3) {
    transform: translateX(-160%);
}

.process_sec.active .process-list .process {
    transform: translateX(0);
    opacity: 1;
}
.process-list .process:last-child::before {
    position: absolute;
    right: 0;
    content: '';
    display: block;
    top: 50%;
    transform: translate(100%, -50%);
    width: 100px;
    height: 1px;
    background: var(--gray-300);
}
.process-list .process:last-child::after {
    position: absolute;
    right: -90px;
    content: '';
    display: block;
    top: 50%;
    transform: translate(100%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--gray-300);
    mask: url('/images/icon/right_arrow_fill.svg') no-repeat right / contain;
}


.process-icon {
    width: 80px;
    height: 80px;
}
.process-title {
    font-size: var(--t7);
    font-weight: var(--semi-bold);
}

.process-last {
    flex-shrink: 0;
    background: var(--primary);
    opacity: 0;
    transform: translateX(-30%);
    color: white;
}

.process_sec.active .process-last {
    transition: transform .6s ease, opacity .6s ease;
    transition-delay: .4s;
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 0 20px 20px #0a2c764c, 0 0 40px 40px #3399ff2b;
    animation: shadow 2s infinite linear;
}
@keyframes shadow {
    0%,100% {
        box-shadow: 0 0 20px 10px #0a2c764c, 0 0 40px 40px #3399ff2b;
    }
    50% {
        box-shadow: 0 0 10px 5px #0a2c7600, 0 0 15px 15px #3399ff00;
    }
}

/* value_sec */

.value_sec .sec-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.value-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2 / 1;
}
.value-gauge {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-area .value-bg {
    width: 78%;
    display: block;
    height: auto;
    position: absolute;
    bottom: 0;
}

.value-area .needle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 2.3%;
    /* 34px */
    aspect-ratio: 1 / 6.88;
    /* 234px */
    background: #003E8C;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
    border-radius: 3px;
        background: url('/images/needle.svg') no-repeat center / contain;
}

/* .value-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.value-item {
    width: calc(100% / 5 - 10px);
    text-align: center;
}

.value-title {
    font-weight: 600;
    color: #1f3d77;
    margin-bottom: 10px;
}

.value-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
} */
.value-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.value-item {
    position: absolute;
    width: 20%;
    text-align: center;
    transform-origin: center bottom;
}

.value-title {
    font-weight: var(--semi-bold);
    font-size: var(--t7);
    margin-bottom: 14px;
}

.value-desc {
    color: var(--ft-sub);
    font-size: var(--d2);
}
.value-item:nth-child(1){
    color: var(--primary-200);
    text-align: right;
    left: 0;
    bottom: 15%;
}
.value-item:nth-child(2){
    color: var(--primary-300);
    text-align: right;
    left: 10%;
    bottom: 45%;
}
.value-item:nth-child(3){
    color: var(--primary-400);
    left: 50%;
    top: 24%;
    transform: translateX(-50%);
}
.value-item:nth-child(4){
    color: var(--primary-500);
    text-align: left;
    right: 10%;
    bottom: 45%;
}
.value-item:nth-child(5){
    color: var(--primary-600);
    text-align: left;
    right: 0;
    bottom: 15%;
}


/* end_sec */
.end_sec {
    margin-top: var(--sec-gap);
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: var(--con-gap);
}
.end_sec .inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
}
.end_sec .sec-title {
    font-size: var(--t5);
    margin-bottom: 40px;
}
.end_sec .sec-subtitle {
    font-size: var(--d1);
    margin-top: 0;
}
.end_sec .sec-content {
    flex-shrink: 0;
}
@media screen and (max-width: 1500px) {
    /* recruit */
    .process-wrap {
        gap: 100px;
    }
    .process {
        width: 280px;
        gap: 30px;
    }
    .process-icon {
        width: 70px;
        height: 70px;
    }
    .process-list .process:last-child::before {
        width: 50px;
    }
    .process-list .process:last-child::after {
        right: -40px;
    }
}
@media screen and (max-width: 1300px) {
    .value-item {
        width: 252px;
    }
}
@media screen and (max-width: 1200px) {
    /* recruit */
    .process-wrap {
        gap: 100px;
        width: 100%;
    }
    .process {
        width: 100%;
        gap: 20px;
    }
    .process-icon {
        width: 54px;
        height: 54px;
    }
    .value_sec .sec-header {
        margin-bottom: calc(var(--sec-gap) / 2);
    }
    .value-area {
        flex-direction: column;
    }
   
    .value-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--con-gap) 40px;
        margin-top: 0;
    }
    .value-item {
        width: 100%;
        position: static;
        text-align: center !important;
    }
    .value-item:nth-child(3) {
        transform: unset;
    }
    .value-item:nth-child(5) {
        grid-column: 3;
    }
    .value-gauge {
        margin-top: calc(var(--con-gap) * -1);
    }
    .value-area .value-bg {
        width: 100%;
    }
}
@media screen and (max-width: 960px) {
    /* contact */
    .checkbox_btn {
        padding: 20px;
    }
    .input_box:not(.file_box) {
        padding: 16px 24px;
    }

    /* recruit */
    .process-wrap {
        gap: 80px;
        width: 100%;
    }
     .process-list .process:last-child::before {
        width: 40px;
    }
    .process-list .process:last-child::after {
        right: -30px;
    }
    .process-list .process {
        margin-right: -10px;
    }
}
@media screen and (max-width: 730px) {
    .contact_sec .inner {
        grid-template-columns: 1fr;
    }
    .contact_sec .sec-header {
        position: static;
        margin-bottom: var(--con-gap);
        padding-bottom: var(--con-gap);
        border-bottom: 1px solid var(--gray-200);
    }
    .contact_sec address ul {
        gap: 10px;
    }
    .contact_sec address ul > li {
        display: grid;
        grid-template-columns: 1fr 3fr;
    }
    .contact_sec address p.bold {
        margin-bottom: 0;
    }
    #formSend {
        padding: 14px;
    }
    .checkbox_group {
        grid-template-columns: 1fr 1fr;
    }

    /* recruit */
    .process {
        gap: 14px;
    }
    .process-wrap {
        gap: 0;
    }
    .process-list .process:last-child::before,
    .process-list .process:last-child::after {
        content: none;
    }
    .process-icon {
        width: 40px;
        height: 40px;
    }
    .end_sec {
        padding: 40px;
    }
    .end_sec .sec-title {
        margin-bottom: 30px;
    }
    .end_sec .inner {
        flex-direction: column;
        align-items: start;
    }
}
@media screen and (max-width: 600px) {
    .process-list .process {
        margin-right: 0;
    }
    .process-wrap {
        grid-template-columns: 1fr;
    }
    .process-list {
        gap: 10px;
        margin-bottom: 10px; 
    }
    
    .process {
        aspect-ratio: unset;
        padding: 24px;
        border-radius: var(--border-radius);
    }
    
    .process-icon {
        width: 40px;
        height: 40px;
    }
    .process_sec.active .process-last {
        box-shadow: unset;
        animation: none;
    }
     .process-last {
          flex-direction: row;
        gap: 30px;
     }

    .value-list {
        grid-template-columns: 1fr;
    }
    .value-item:nth-child(5) {
        grid-column: unset;
    }
    .end_sec {
        padding: 30px;
        margin-top: calc(var(--sec-gap) / 2);
    }
    .end_sec .sec-title {
        margin-bottom: 20px;
    }
    .value-gauge {
        display: none;
    }
}