#header{
    position: fixed;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    z-index: -9999;
    opacity: 0;
    overflow: hidden;
}
.small_txt{
    font-size: 1.8rem;
    color: #CCC;
    font-weight: 400;
}
.pc_only{
    display: block;
}
.mob_only{
    display: none;
}

.quick{
    position: fixed;
    right: 0;
    z-index: 9989;
    bottom: 180px;
    width: 80px;
}
.quick>a{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.quick>a.contact{
    background-color: #FEB247;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 23px 10px;
}
.quick>a.top{
    background-color: #0064F0;
    color: #FFF;
    height: 80px;
}
@media screen and (max-width: 1024px){
    .quick{bottom: 0px;}
}
@media screen and (max-width: 768px){
    .quick{width: 60px;}
    .quick>a.contact{padding: 15px 5px;}
    .quick>a.contact img{width: 20px;}
    .quick>a.top{height: 60px;}
}
@media screen and (max-width: 500px){
    .quick{width: 50px;}
    .quick>a.contact{padding: 12px 2px;}
    .quick>a.contact img{width: 15px;}
    .quick>a.top{height: 50px;}
    .quick>a.top img{width: 19px;}
}








/* sec01 */
#main{
    position: relative;
    padding-top: 70px;
    background-color: #051C2C;
}
#main h1{
    display: block;
    width: 200px;
    margin: 0 auto;
}
#main h1 img{
    width: 100%;
}

#main .top_wrap{
    margin: 70px 0;
    position: relative;
    text-align: center;
}
#main .top_wrap p.en{
    font-size: 3.2rem;
    font-weight: 600;
    color: #FFF;
    opacity: 0.4;
    margin-bottom: 74px;
    font-family: 'Noto Serif KR';
    font-style: italic;
    opacity: 0.4 !important;
}
#main .top_wrap .tit_wrap h2{
    font-size: 8.8rem;
    font-weight: 700;
    color: #FFF;
    position: relative;
    line-height: 1.2;
}
#main .top_wrap .tit_wrap h2 span.wh{
    position: relative;
    z-index: 2;
    display: inline-block; /* 안전하게 */
    background: linear-gradient(to right, #999 0%, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
  
    color: transparent;                /* Firefox 등 */
    -webkit-text-fill-color: transparent; /* Safari/Chrome 계열 */
}
#main .top_wrap .tit_wrap h2 span.wh_rtl{
    position: relative;
    z-index: 2;
    display: inline-block; /* 안전하게 */
    background: linear-gradient(to left, #999 0%, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
  
    color: transparent;                /* Firefox 등 */
    -webkit-text-fill-color: transparent; /* Safari/Chrome 계열 */
}
#main .top_wrap .tit_wrap h2 span.yellow .mamablock{
    font-family: "mamablock-210", sans-serif;
    font-weight: 400;
    font-size: 14rem;
}
#main .top_wrap .tit_wrap h2 span.yellow .mamablock .dot{
    position: relative;
}
#main .top_wrap .tit_wrap h2 span.yellow .mamablock .dot::before{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
    background-color: #FEB247;
    border-radius: 50%;
    width: 16px;
    height: 16px;
}
#main .top_wrap .tit_wrap p.txt01{
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #FFF;
    margin: 20px 0;
    word-break: keep-all;
}
#main .top_wrap .tit_wrap p.txt02{
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.4;
    color: #FFF;
    word-break: keep-all;
}

/* ===== Scroll indicator ===== */

#main .top_wrap .scroll_wrap{
    position: relative;
    display: flex;
    justify-content: center;
    margin: 70px 0;
  }
  
  #main .top_wrap .scroll_wrap .scroll_item{
    position: relative;
  
    width: 30px;
    height: 58px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.5);
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 6px;
  
    /* 참고 소스의 floating */
    animation: floating20 3s ease-in-out infinite;
    will-change: transform;
  }
  
  /* 참고 소스의 i -> 너의 span.icon */
  #main .top_wrap .scroll_wrap .scroll_item > span.icon{
    display: flex;
    align-items: center;
    justify-content: center;
  
    /* 참고 소스의 opacity 애니메이션 */
    animation: opacity50 3s ease-in-out infinite;
    will-change: opacity;
  }
  
  /* 참고 소스와 동일한 딜레이 */
  #main .top_wrap .scroll_wrap .scroll_item > span.icon:nth-child(1){
    animation-delay: 0s;
  }
  #main .top_wrap .scroll_wrap .scroll_item > span.icon:nth-child(2){
    animation-delay: 0.2s;
  }
  #main .top_wrap .scroll_wrap .scroll_item > span.icon:nth-child(3){
    animation-delay: 0.4s;
  }
  
  /* 이미지가 baseline 때문에 흔들리지 않게 */
  #main .top_wrap .scroll_wrap .scroll_item > span.icon img{
    display: block;
    width: auto;
  }
  /* ===== keyframes (참고 소스 그대로) ===== */
  
  @keyframes floating20 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(20px); }
    100% { transform: translateY(0); }
  }
  
  @keyframes opacity50 {
    0%   { opacity: 1; }
    50%  { opacity: 0.5; }
    100% { opacity: 1; }
  }

  #main .img_wrap{
    position: relative;
    width: 100%;
  }

  #main .img_wrap img{
    width: 100%;
  }



@media screen and (max-width: 1920px){
    #main{padding-top: 2.778vw;}
    #main .top_wrap{margin: 3.646vw 0;}
    #main .top_wrap p.en{font-size: 1.667vw; margin-bottom: 3.854vw;}
    #main .top_wrap .tit_wrap h2{font-size: 4.583vw;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock{font-size: 7.292vw;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock .dot::before{width: 0.833vw; height: 0.833vw; top: -1.250vw;}
    #main .top_wrap .tit_wrap p.txt01{font-size: 2.500vw;}
    #main .top_wrap .tit_wrap p.txt02{font-size: 1.354vw;}
    #main .top_wrap .scroll_wrap{margin: 3.646vw 0;}
}
@media screen and (max-width: 1430px){
    #main .top_wrap{width: 96%; margin-left: auto !important; margin-right: auto !important;}
}
@media screen and (max-width: 1280px){
    #main .top_wrap .tit_wrap h2{display: flex; align-items: center; justify-content: center; gap: 20px;}
    #main .top_wrap .tit_wrap h2 span.wh{display: inline-block; width: fit-content;}
    #main .top_wrap .tit_wrap h2 span.wh_rtl{display: inline-block; width: fit-content;}
}
@media screen and (max-width: 1024px){
    #main{padding-top: 60px;}
    #main .top_wrap{margin: 60px 0;}
    #main .top_wrap p.en{font-size: 3.2rem; margin-bottom: 64px;}
    #main .top_wrap .tit_wrap h2{flex-direction: column; gap: 20px; font-size: 8rem;}
    #main .top_wrap .tit_wrap h2 span.wh{background: linear-gradient(to right, #999 0%, #fff 25%, #FFF 75%, #999 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
    #main .top_wrap .tit_wrap h2 span.wh_rtl{background: linear-gradient(to right, #999 0%, #fff 25%, #FFF 75%, #999 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock{font-size: 13rem;}
    #main .top_wrap .tit_wrap p.txt01{font-size: 4rem; margin-top: 80px;}
    #main .top_wrap .tit_wrap p.txt01 br.mob_only{display: block;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock .dot::before{width: 16px; height: 16px; top: -24px;}
    #main .top_wrap .tit_wrap p.txt02{font-size: 2.4rem;}
    #main .top_wrap .tit_wrap p.txt02 br.mob_only{display: block;}
}
@media screen and (max-width: 768px){
    #main{padding-top: 40px;}
    #main h1{width: 150px;}
    #main .top_wrap{margin: 50px 0; width: 90%;}
    #main .top_wrap p.en{font-size: 2.4rem; margin-bottom: 50px;}
    #main .top_wrap .tit_wrap h2{font-size: 5rem;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock{font-size: 8rem;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock .dot::before{width: 10px; height: 10px; top: -18px;}
    #main .top_wrap .tit_wrap p.txt01{font-size: 3rem; margin-top: 60px;}
    #main .top_wrap .tit_wrap p.txt02{font-size: 2rem;}
    #main .top_wrap .scroll_wrap{margin: 50px 0;}
}
@media screen and (max-width: 500px){
    #main{padding-top: 20px;}
    #main h1{width: 120px;}
    #main .top_wrap{margin: 40px 0;}
    #main .top_wrap p.en{font-size: 2rem; margin-bottom: 40px;}
    #main .top_wrap .tit_wrap h2{font-size: 3.6rem;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock{font-size: 6rem;}
    #main .top_wrap .tit_wrap h2 span.yellow .mamablock .dot::before{width: 6px; height: 6px; top: -10px;}
    #main .top_wrap .tit_wrap p.txt01{font-size: 2.4rem; margin-top: 40px;}
    #main .top_wrap .tit_wrap p.txt02{font-size: 1.8rem;}
    #main .top_wrap .scroll_wrap{margin: 40px 0;}
}
@media screen and (max-width: 450px){
    #main .top_wrap .tit_wrap p.txt01 br.mob_only{display: none;}
    #main .top_wrap .tit_wrap p.txt02 br.mob_only{display: none;}
}







/* sec02 */
#about{
    position: relative;
    padding: 200px 0;
    width: 100%;
    background-color: #051C2C;
}

#about .b1{
    text-align: center;
    position: relative;
}
#about .b1 p{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: #FFF;
    opacity: 0.5;
    font-family: 'Noto Serif KR';
    overflow: hidden;
}
#about .b1 p .slide-up-wrapper{
    display: inline-block;
}
#about .b1 p.txt02{
    font-style: italic;
    font-size: 15rem;
    font-weight: 600;
    margin-top: 80px;
}

#about .b2{
    position: relative;
    margin-top: -195px;
    z-index: 2;
}
#about .b2 .img_wrap{
    position: relative;
    margin: 0 auto;
    width: 360px;
    height: 520px;
    border-radius: 360px;
    overflow: hidden;
    margin-bottom: 95px;
}
#about .b2 .img_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
#about .b2 .txt_wrap{
    text-align: center;
}
#about .b2 .txt_wrap h2{
    font-size: 6.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: #FFF;
    margin-bottom: 20px;
    word-break: keep-all;
}
#about .b2 .txt_wrap h2 span.mint{
    font-family: "mamablock-210", sans-serif;
    font-weight: 400;
    font-size: 10rem ;
    position: relative;
}
#about .b2 .txt_wrap h2 span.mint::before{
    content: '';
    display: block;
    position: absolute;
    width: 480px;
    height: 32px;
    background: url('/_img/main/sec02_underline.png') no-repeat center / cover;
    bottom: -32px;
    left: -10px;
}
#about .b2 .txt_wrap h2 span.mint::after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 98px;
    background: url('/_img/main/sec02_star.png') no-repeat center / cover;
    bottom: -90px;
    right: -60px;
}
#about .b2 .txt_wrap p{
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-top: 75px;
    word-break: keep-all;
}
#about .b2 .txt_wrap p>span.bold{
    font-weight: 700;
    color: #FFF;
}
@media screen and (max-width: 1920px){
    #about .b1 p{font-size: 3.125vw}
    #about .b1 p.txt02{font-size: 7.813vw;}
}
@media screen and (max-width: 1280px){
    #about .b1 p{font-size: 5rem;}
}
@media screen and (max-width: 1024px){
    #about .b2 .txt_wrap{width: 96%; margin: 0 auto; position: relative;}
    #about .b2 .txt_wrap h2{font-size: 4.4rem;}
    #about .b2 .txt_wrap h2 span.mint{font-size: 8rem;}
    #about .b2 .txt_wrap h2 span.mint::before{width: 365px; height: 24px;}
    #about .b2 .txt_wrap h2 span.mint::after{width: 80px; height: 78px; bottom: -80px;}
    #about .b2 .txt_wrap p{font-size: 2.4rem;}
}

@media screen and (max-width: 768px){
    #about{padding: 140px 0;}
    #about .b1 p{font-size: 4rem;}
    #about .b1 p.txt02{ margin-top: 60px;}
    #about .b2{margin-top: -150px;}
    #about .b2 .img_wrap{width: 280px; height: 400px; margin-bottom: 60px;}
    #about .b2 .txt_wrap h2{font-size: 3.6rem;}
    #about .b2 .txt_wrap h2 span.mint{font-size: 6rem;}
    #about .b2 .txt_wrap h2 span.mint::before{width: 280px; height: 18px; bottom: -24px;}
    #about .b2 .txt_wrap h2 span.mint::after{width: 60px; height: 58px; bottom: -60px; right: -40px;}
    #about .b2 .txt_wrap p{font-size: 2rem;}
}
@media screen and (max-width: 500px){
    #about{padding: 100px 0;}
    #about .b1 p{font-size: 3rem;}
    #about .b1 p.txt02{margin-top: 40px;}
    #about .b2{margin-top: -100px;}
    #about .b2 .img_wrap{width: 220px; height: 320px; margin-bottom: 40px;}
    #about .b2 .txt_wrap h2{font-size: 2.5rem;}
    #about .b2 .txt_wrap h2 span.mint{font-size: 4rem;}
    #about .b2 .txt_wrap h2 span.mint::before{width: 220px; height: 14px; bottom: -18px;}
    #about .b2 .txt_wrap h2 span.mint::after{width: 50px; height: 48px; bottom: -50px; right: -30px;}
    #about .b2 .txt_wrap p{font-size: 1.8rem;}
}











/* sec03 */
#solution{
    position: relative;
    padding-top: 200px;
    width: 100%;
    background-color: #FFF;
}
#solution>.tit_wrap{
    margin-bottom: 100px;
    text-align: center;
}
#solution>.tit_wrap p{
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin-bottom: 20px;
}
#solution>.tit_wrap h2{
    font-size: 10rem;
    font-weight: 900;
    line-height: 1.4;
    overflow: hidden;
}
#solution>.tit_wrap h2 .slide-up-wrapper,
#solution>.tit_wrap p .slide-up-wrapper{
    display: inline-block;
}

#solution .solution_list{
    display: flex;
    justify-content: center;
    gap: 13px;
}
#solution .solution_list>li{
    position: relative;
    width: calc(25% - 9.75px);
    text-align: center;
    color: #FFF;
    padding: 79px 10px;
    border-radius: 20px;
    height: fit-content;
}
#solution .solution_list>li.solution_item01{
    background-color: #051C2C;
}
#solution .solution_list>li.solution_item02{
    background-color: #174C71;
}
#solution .solution_list>li.solution_item03{
    background-color: #FEB247;
}
#solution .solution_list>li.solution_item04{
    background-color: #0064F0;
}
#solution .solution_list>li:nth-child(2n){
    margin-top: 60px;
}
#solution .solution_list>li .icon_wrap{
    margin: 0 auto;
    width: 120px;
    height: 120px;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
#solution .solution_list>li .txt_wrap h3{
    font-family: 'poppins';
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 10px;
}
#solution .solution_list>li .txt_wrap p{
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
}
#solution .marquee_wrap{
    margin-top: 200px;
    position: relative;
    width: 100%;
    overflow: hidden;
}
#solution .marquee_wrap .marquee_item{
    display: flex;
    white-space: nowrap;
    will-change: transform;
}
#solution .marquee_wrap .marquee_item>p{
    font-size: 14.4rem;
    font-weight: 700;
    line-height: 0.8em;
    color: #f5f5f5;
    font-family: 'Noto Serif KR';
    white-space: nowrap;
    padding-right: 100px;
    flex-shrink: 0;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 1280px){
    #solution .solution_list{gap: 20px; flex-wrap: wrap;}
    #solution .solution_list>li{width: calc(50% - 10px);}
}

@media screen and (max-width: 1024px){
    #solution>.tit_wrap h2{font-size: 8rem;}
}
@media screen and (max-width: 768px){
    #solution{padding-top: 140px;}
    #solution>.tit_wrap{margin-bottom: 60px;}
    #solution>.tit_wrap p{font-size: 2.6rem;}
    #solution>.tit_wrap h2{font-size: 6rem;}
    #solution .solution_list>li .icon_wrap{width: 100px; height: 100px; margin-bottom: 20px;}
    #solution .solution_list>li .icon_wrap img{ width: 50%;}
    #solution .solution_list>li .txt_wrap h3{font-size: 3rem;}
    #solution .solution_list>li .txt_wrap p{font-size: 2rem;}
    #solution .marquee_wrap .marquee_item>p{font-size: 12rem;}
    #solution .marquee_wrap{margin-top: 140px;}
}
@media screen and (max-width: 500px){
    #solution{padding-top: 100px;}
    #solution>.tit_wrap{margin-bottom: 40px;}
    #solution>.tit_wrap p{font-size: 2.2rem; margin-bottom: 10px;}
    #solution>.tit_wrap h2{font-size: 4rem;}
    #solution .solution_list>li{width: 100%; padding: 30px 10px;}
    #solution .solution_list>li:nth-child(2n){margin-top: 0;}
    #solution .solution_list>li .icon_wrap{width: 80px; height: 80px;}
    #solution .solution_list>li .icon_wrap img{ width: 50%;}
    #solution .solution_list>li .txt_wrap h3{font-size: 2.6rem;}
    #solution .solution_list>li .txt_wrap p{font-size: 1.8rem;}
    #solution .marquee_wrap{margin-top: 100px;}
    #solution .marquee_wrap .marquee_item>p{font-size: 10rem;}
}



















/* sec04 */
#difference{
    position: relative;
    padding: 180px 0;
    width: 100%;
    background-color: #f5f5f5;
}
#difference .tit_wrap{
    text-align: center;   
}
#difference .tit_wrap h2{
    font-size: 6.4rem;
    color: #000;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    overflow: hidden;
    word-break: keep-all;
}
#difference .tit_wrap h2 .slide-up-wrapper{
    display: inline-block;
}
#difference .tit_wrap h2>span.yellow{
    font-size: 10rem;
    font-weight: 900;
    line-height: 1.4;
}
#difference .tit_wrap p{
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    word-break: keep-all;
}
#difference .tit_wrap p>span.bold{
    font-weight: 700;
    color: #174C71;
}
#difference  .con_wrap{
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}
#difference  .con_wrap .bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: calc(100% - 68px);
    display: inline-block;
    aspect-ratio: 1 / 1;
    width: auto;
}
#difference .con_wrap .bg img{
    width: 100%;
}
#difference .con_wrap .txt_wrap{
    position: absolute;
    inset: 0;            /* top/right/bottom/left: 0 */
    z-index: 2;
    text-align: center;
    pointer-events: none;
}
#difference .con_wrap .txt_wrap>div{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;          /* 초기 숨김(깜빡임 방지) */
    will-change: transform, opacity;
}
#difference .con_wrap .txt_wrap h3{
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    word-break: keep-all;
}
#difference .con_wrap .txt_wrap h3>span.pink{
    font-size: 8rem;
    font-weight: 700;
}
#difference .con_wrap .txt_wrap p{
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    word-break: keep-all;
}
@media screen and (max-width: 1430px){
}
@media screen and (max-width: 1280px){
}
@media screen and (max-width: 1024px){
    #difference{padding: 140px 0;}
    #difference .tit_wrap h2{font-size: 5.4rem;}
    #difference .tit_wrap h2>span.yellow{font-size: 8rem;}
    #difference .tit_wrap p{font-size: 2.4rem;}
    #difference .con_wrap .bg{width: 80%; height: auto;}
    #difference .con_wrap .txt_wrap h3{font-size: 4.6rem;}
    #difference .con_wrap .txt_wrap h3>span.pink{font-size: 6.8rem;}
    #difference .con_wrap .txt_wrap p{font-size: 2.2rem;}
}
@media screen and (max-width: 768px){
    #difference{padding: 100px 0;}
    #difference .tit_wrap h2{font-size: 4rem;}
    #difference .tit_wrap h2>span.yellow{font-size: 6rem;}
    #difference .tit_wrap p{font-size: 2rem;}
    #difference .con_wrap .txt_wrap h3{font-size: 3.6rem; margin-bottom: 20px;}
    #difference .con_wrap .txt_wrap h3>span.pink{font-size: 5.2rem;}
    #difference .con_wrap .txt_wrap p{font-size: 1.8rem;}
    #difference .con_wrap .txt_wrap p br.mob_only{display: block;}
}
@media screen and (max-width: 500px){
    #difference{padding: 80px 0;}
    #difference .tit_wrap h2{font-size: 3rem;}
    #difference .tit_wrap h2>span.yellow{font-size: 4.4rem;}
    #difference .tit_wrap p{font-size: 1.8rem;}
    #difference .con_wrap .txt_wrap h3{font-size: 2.8rem;}
    #difference .con_wrap .txt_wrap h3>span.pink{font-size: 4rem;}
    #difference .con_wrap .txt_wrap p{font-size: 1.8rem;}

    #difference .con_wrap .txt_wrap p br.mob_only{display: none;}
}









/* 전문 인력 섹션 */
#profess{
    background-color: #051C2C;
    color: #FFF;
    padding-top: 150px;
    box-sizing: border-box;
}
/* 서브04 더타임즈 공통 */
#profess .con_wrap p{
  font-size: 1.8rem;
  color: #ddd;
  line-height: 1.6;
  font-weight: 400;
}

#profess .con_wrap .profile_list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#profess .con_wrap .profile_list li{
  height: 530px;
  position: relative;
  cursor: pointer;
}
#profess .con_wrap .profile_list li:not(:nth-of-type(4n+1)){
  border-left: 1px solid #112736;
}
#profess .con_wrap .profile_list li:not(:first-child){
  border-bottom: 1px solid #112736;
}
#profess .con_wrap .profile_list li:not(:nth-of-type(-n+4)){
  border-top: 1px solid #112736;
}
#profess .con_wrap .profile_list li .title_wrap span{
  font-size: 1.8rem;
  text-decoration: underline;
  margin-bottom: 10px;
}
#profess .con_wrap .profile_list li .plus_box{
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: #000000;
  border: none;
}
#profess .con_wrap .profile_list li .pf_wrap{
  height: 100%;
  padding: 50px 40px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-color: #011522;
}
#profess .con_wrap .profile_list li:nth-of-type(1) .pf_wrap{ background-image: url('/_img/main/sub_profess_img01.png'); }
#profess .con_wrap .profile_list li:nth-of-type(2) .pf_wrap{ background-image: url('/_img/main/sub_profess_img03.png'); }
#profess .con_wrap .profile_list li:nth-of-type(3) .pf_wrap{ background-image: url('/_img/main/sub_profess_img02.png'); }
#profess .con_wrap .profile_list li:nth-of-type(4) .pf_wrap{ background-image: url('/_img/main/sub_profess_img04.png'); }
#profess .con_wrap .profile_list li:nth-of-type(5) .pf_wrap{ background-image: url('/_img/main/sub_profess_img05.png'); }
#profess .con_wrap .profile_list li:nth-of-type(6) .pf_wrap{ background-image: url('/_img/main/sub_profess_img06.png'); }
#profess .con_wrap .profile_list li:nth-of-type(7) .pf_wrap{ background-image: url('/_img/main/sub_profess_img07.png'); }
#profess .con_wrap .profile_list li:nth-of-type(8) .pf_wrap{ background-image: url('/_img/main/sub_profess_img08.png'); }
#profess .con_wrap .profile_list li:nth-of-type(9) .pf_wrap{ background-image: url('/_img/main/sub_profess_img09.png'); }
#profess .con_wrap .profile_list li:nth-of-type(10) .pf_wrap{ background-image: url('/_img/main/sub_profess_img11.png'); }
#profess .con_wrap .profile_list li:nth-of-type(11) .pf_wrap{ background-image: url('/_img/main/sub_profess_img12.png'); }
#profess .con_wrap .profile_list li:nth-of-type(12) .pf_wrap{ background-image: url('/_img/main/sub_profess_img13.png'); }

#profess .con_wrap .profile_list li .pf_wrap .plus_box:focus{
  outline: none;
}
#profess .con_wrap .profile_list li .pf_wrap .plus_box .title_wrap{
  margin-bottom: 10px;
}
#profess .con_wrap .profile_list li .pf_wrap .title_wrap div{
  margin-bottom: 40px;
}
#profess .con_wrap .profile_list li .pf_wrap .title_wrap div span{
  display: block;
  margin-bottom: 10px;
}
#profess .con_wrap .profile_list h3{
  font-size: 4rem;
  font-weight: 700;
}
#profess .con_wrap .profile_list li .pf_overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0064F0;
  padding: 30px 40px;
  opacity: 0;
  transition: 0.5s;
}
#profess .con_wrap .profile_list li:hover .pf_overlay{
  opacity: 1;
}
#profess .con_wrap .profile_list li .pf_overlay>*:not(:last-of-type){
  margin-bottom: 30px;
}
#profess .con_wrap .profile_list li .pf_overlay .title_wrap h3{
  margin-bottom: 10px;
}
#profess .con_wrap .profile_list li .pf_overlay .title_wrap h3 span{
  font-weight: 400;
  margin-left: 10px;
}
#profess .con_wrap .profile_list li .pf_overlay .txt_wrap h4{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 7px;
}
@media screen and (max-width: 1200px){
  #profess .con_wrap .profile_list{grid-template-columns: repeat(3, 1fr);}
  #profess .con_wrap .profile_list li:not(:nth-of-type(4n+1)),
  #profess .con_wrap .profile_list li:not(:nth-of-type(-n+4)){
    border-left: none;
  }
  #profess .con_wrap .profile_list li:not(:nth-of-type(3n+1)){
    border-left: 1px solid #112736;
  }
  #profess .con_wrap .profile_list li:not(:nth-of-type(-n+3)){
    border-top: 1px solid #112736;
  }
}
@media screen and (max-width: 900px){
  #profess .con_wrap .profile_list{grid-template-columns: repeat(2, 1fr);}
  #profess .con_wrap .profile_list li:not(:nth-of-type(3n+1)),
  #profess .con_wrap .profile_list li:not(:nth-of-type(-n+3)){
    border-left: none;
  }
  #profess .con_wrap .profile_list li:not(:nth-of-type(2n+1)){
    border-left: 1px solid #112736;
  }
  #profess .con_wrap .profile_list li:not(:nth-of-type(-n+2)){
    border-top: 1px solid #112736;
  }
}
@media screen and (max-width: 768px){
    #profess{padding-top: 100px;}
}
@media screen and (max-width: 630px){
  #profess .con_wrap .profile_list{grid-template-columns: repeat(1, 1fr);}
  #profess .con_wrap .profile_list li:not(:nth-of-type(2n+1)),
  #profess .con_wrap .profile_list li:not(:nth-of-type(-n+2)){border-left: none;}
  #profess .con_wrap .profile_list li:not(:first-child){border-top: 1px solid #112736;}
}
@media screen and (max-width: 500px){
    #profess{padding-top: 80px;}
  #profess .con_wrap .profile_list h3{font-size: 2.4rem;}
  #profess .con_wrap .profile_list li{height: 400px;}
  #profess .con_wrap .profile_list li .pf_wrap,
  #profess .con_wrap .profile_list li .pf_overlay{padding: 20px;}
  #profess .con_wrap .profile_list li .pf_wrap{background-size: auto 260px;}
  #profess .con_wrap .profile_list li .plus_box{width: 40px; height: 40px;}
  #profess .con_wrap .profile_list li .plus_box img{width: 15px;}
  #profess .con_wrap .profile_list li .pf_wrap .title_wrap div{margin-bottom: 20px;}
  #profess .con_wrap .profile_list li .pf_overlay>*:not(:last-of-type){margin-bottom: 20px;}
}






















/* sec05 */
#service{
    position: relative;
    padding-top: 180px;
    padding-bottom: 160px;
    width: 100%;
    overflow: hidden;
    background-color: #051C2C;
    z-index: 2;
    height: auto;
    overflow: visible;
}
#service>.inner>.tit_wrap{
    margin-bottom: 60px;
}
#service>.inner>.tit_wrap h2{
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #FFF;
    margin-bottom: 20px;
    overflow: hidden;
}
#service>.inner>.tit_wrap h2 .slide-up-wrapper,
#service>.inner>.tit_wrap p.small_txt .slide-up-wrapper{
    display: inline-block;
}


#service .con_wrap{
    position: relative;
    overflow: hidden;
}
#service .con_wrap>ul{
    display: flex;
    gap: 40px;
    width: max-content;
    margin: 0; padding: 0;
    list-style: none;
    padding-top: 60px;
}
#service .con_wrap>ul>li.list_item01{
    background: url('/_img/main/sec05_bg01.jpg') no-repeat center / cover;
}
#service .con_wrap>ul>li.list_item02{
    background: url('/_img/main/sec05_bg02.jpg') no-repeat center / cover;
}
#service .con_wrap>ul>li.list_item03{
    background: url('/_img/main/sec05_bg03.jpg') no-repeat center / cover;
}
#service .con_wrap>ul>li.list_item04{
    background: url('/_img/main/sec05_bg04.jpg') no-repeat center / cover;
}
#service .con_wrap>ul>li.list_item05{
    background: url('/_img/main/sec05_bg05.jpg') no-repeat center / cover;
}

#service .con_wrap>ul>li{
    width: 1200px;
    height: 700px;
    position: relative;
    border-radius: 20px;
    will-change: transform;
    /*transition: transform 0.3s ease-in-out;*/
    transition: box-shadow 0.3s ease-in-out; /* 딱 shadow만 */
    box-shadow: none;
}
#service .con_wrap > ul > li.is-center {
    box-shadow: 0 30px 40px rgba(0,0,0,0.3);
  }
#service .con_wrap>ul>li .txt_wrap{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 100px);
    z-index: 2;
}
#service .con_wrap>ul>li .txt_wrap p.en{
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFF;
    opacity: 0.6;
    margin-bottom: 15px;
}
#service .con_wrap>ul>li .txt_wrap h3{
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #FFF;
    margin-bottom: 30px;
}
#service .con_wrap>ul>li .txt_wrap>ul>li{
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.02em;
    word-break: keep-all;
}
#service .con_wrap>ul>li .txt_wrap>ul>li>span{
    display: inline-block;
}
@media screen and (max-width: 1800px){
    #service .con_wrap>ul>li{width: 1000px; height: 580px;}
    #service .con_wrap>ul>li .txt_wrap h3{font-size: 4.2rem;}
    #service .con_wrap>ul>li .txt_wrap>ul>li{font-size: 2.2rem;}
}
@media screen and (max-width: 1700px){
    #service .con_wrap>ul>li{width: 900px; height: 520px;}
    #service .con_wrap>ul>li .txt_wrap{bottom: 40px; width: calc(100% - 80px);}
    #service .con_wrap>ul>li .txt_wrap h3{font-size: 3.8rem;}
    #service .con_wrap>ul>li .txt_wrap>ul>li{font-size: 2rem;}
}
@media screen and (max-width: 1430px){
}
@media screen and (max-width: 1280px){
    #service{padding-top: 140px; padding-bottom: 120px;}
    #service .con_wrap>ul{gap: 30px; padding-top: 40px;}
    #service .con_wrap>ul>li{width: 800px; height: 480px;}
    #service .con_wrap>ul>li .txt_wrap{bottom: 35px; width: calc(100% - 60px);}
    #service .con_wrap>ul>li .txt_wrap p.en{font-size: 1.8rem; margin-bottom: 12px;}
    #service .con_wrap>ul>li .txt_wrap h3{font-size: 3.4rem; margin-bottom: 25px;}
    #service .con_wrap>ul>li .txt_wrap>ul>li{font-size: 1.8rem;}
}
@media screen and (max-width: 1024px){
    #service{padding-top: 120px; padding-bottom: 100px;}
    #service>.inner>.tit_wrap{margin-bottom: 50px;}
    #service>.inner>.tit_wrap h2{font-size: 6.5rem;}
    #service .con_wrap>ul{gap: 25px; padding-top: 0;}
    #service .con_wrap>ul>li{width: 700px; height: 500px}
    #service .con_wrap>ul>li .txt_wrap{bottom: 30px; width: calc(100% - 50px);}
    #service .con_wrap>ul>li .txt_wrap p.en{margin-bottom: 10px;}
    #service .con_wrap>ul>li .txt_wrap h3{font-size: 3rem; margin-bottom: 20px;}
}
@media screen and (max-width: 768px){
    #service{padding-top: 100px; padding-bottom: 80px;}
    #service>.inner>.tit_wrap{margin-bottom: 40px;}
    #service>.inner>.tit_wrap h2{font-size: 5rem;}
    #service .con_wrap>ul{gap: 20px;}
    #service .con_wrap>ul>li{width: 600px; border-radius: 15px; overflow: hidden;}
    #service .con_wrap>ul>li::after{content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1;}
    #service .con_wrap>ul>li .txt_wrap{bottom: unset; width: calc(100% - 40px); top: 40px;}
    #service .con_wrap>ul>li .txt_wrap p.en{margin-bottom: 8px;}
    #service .con_wrap>ul>li .txt_wrap h3{font-size: 2.6rem; margin-bottom: 18px;}
    #service .con_wrap>ul>li .txt_wrap>ul>li{display: flex;flex-direction: column; margin-bottom: 10px;}
    #service .con_wrap>ul>li .txt_wrap>ul>li:last-child{margin-bottom: 0;}
    #service .con_wrap>ul>li .txt_wrap>ul>li .pc_only{display: none;}
    #service .con_wrap>ul>li .txt_wrap>ul>li>span:first-child{font-weight: 600;}
}
@media screen and (max-width: 500px){
    #service{padding-top: 80px; padding-bottom: 60px;}
    #service>.inner>.tit_wrap{margin-bottom: 30px;}
    #service>.inner>.tit_wrap h2{font-size: 3.6rem;}
    #service .con_wrap>ul{gap: 15px;}
    #service .con_wrap>ul>li{width: 400px; border-radius: 12px; height: 600px;}
    #service .con_wrap>ul>li .txt_wrap{bottom: 20px; width: calc(100% - 30px);}
    #service .con_wrap>ul>li .txt_wrap p.en{margin-bottom: 6px;}
    #service .con_wrap>ul>li .txt_wrap h3{font-size: 2.2rem; margin-bottom: 15px;}
}
@media screen and (max-width: 400px){
    #service .con_wrap>ul>li{width: 300px;}
}











/* sec06 */
#why{
    position: relative;
    background-color: #051C2C;
    padding: 160px 0;
}
#why .tit_wrap{
    display: flex;
    align-items: flex-end;
    column-gap: 20px;
    margin-bottom: 60px;
}
#why .tit_wrap h2{
    font-size: 9rem;
    font-weight: 700;
    color: #FFF;
    font-family: 'Noto Serif KR';
    line-height: 1;
    overflow: hidden;
}
#why .tit_wrap h2 .slide-up-wrapper,
#why .tit_wrap p.small_txt .slide-up-wrapper{
    display: inline-block;
}

#why .reason_list{
    border-top: 1px solid #666;
}
#why .reason_list>li{
    display: flex;
    justify-content: right;
    padding: 40px 20px;
    border-bottom: 1px solid #666;
    align-items: center;
    gap: 20px;
    position: relative;
}
#why .reason_list>li .num{
    position: absolute;
    bottom: 40px;
    left: 20px;
}
#why .reason_list>li .txt_wrap{
    text-align: right;
}
#why .reason_list>li .txt_wrap h2{
    color: #FFF;
    font-size: 4.8rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;
    word-break: keep-all;
}
#why .reason_list>li .txt_wrap p{
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.4;
    color: #DDD;
    word-break: keep-all;
}
#why .reason_list>li .txt_wrap p>span.mint{
    font-size: 28px;
    font-weight: 700;
}
#why .reason_list>li .img_wrap{
    width: 360px;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
}
#why .reason_list>li .img_wrap img{
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1430px){
}
@media screen and (max-width: 1280px){
}
@media screen and (max-width: 1024px){
    #why{padding: 120px 0; padding-top: 60px;}
    #why .tit_wrap h2{font-size: 7.5rem;}
    #why .reason_list>li{padding: 30px 15px; gap: 15px;}
    #why .reason_list>li .num{bottom: 30px; left: 15px;}
    #why .reason_list>li .txt_wrap h2{font-size: 4rem;}
    #why .reason_list>li .txt_wrap p{font-size: 2rem;}
    #why .reason_list>li .txt_wrap p>span.mint{font-size: 24px;}
    #why .reason_list>li .img_wrap{width: 300px; height: 200px;}
}
@media screen and (max-width: 768px){
    #why{padding: 100px 0; padding-top: 40px;}
    #why .tit_wrap{flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 40px;}
    #why .tit_wrap h2{font-size: 5.5rem; line-height: 1.2;}
    #why .reason_list>li{flex-direction: column; align-items: flex-start; padding: 30px 15px; gap: 20px;}
    #why .reason_list>li .num{left: unset; right: 20px; bottom: unset; top: 20px;}
    #why .reason_list>li .num img{height: 100px;}
    #why .reason_list>li .txt_wrap{text-align: left; width: 100%;}
    #why .reason_list>li .txt_wrap h2{font-size: 3.2rem;}
    #why .reason_list>li .txt_wrap p{font-size: 1.8rem;}
    #why .reason_list>li .txt_wrap p>span.mint{font-size: 20px;}
    #why .reason_list>li .img_wrap{width: 100%; height: 200px;}
}
@media screen and (max-width: 500px){
    #why{padding: 80px 0; padding-top: 20px;}
    #why .tit_wrap{margin-bottom: 30px;}
    #why .tit_wrap h2{font-size: 4rem;}
    #why .reason_list>li{padding: 25px 10px; gap: 15px;}
    #why .reason_list>li .num img{height: 80px;}
    #why .reason_list>li .txt_wrap h2{font-size: 2.6rem;}
    #why .reason_list>li .txt_wrap p{font-size: 1.8rem;}
    #why .reason_list>li .txt_wrap p>span.mint{font-size: 18px;}
    #why .reason_list>li .img_wrap{height: 160px;}
}





/* sec07 */
#benefits{
    position: relative;
    padding-top: 180px;
    padding-bottom: 160px;
    width: 100%;
    background: url('/_img/main/sec07_bg.jpg') no-repeat center / cover;
    overflow: hidden;
}
#benefits .flex_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% + 150px);
    position: relative;
    left: -75px;
    overflow: hidden;
}
#benefits .img_wrap{
    display: flex;
    gap: 20px;
    position: relative;
    margin-top: 50px;
}
#benefits .img_wrap>div{
    width: 300px;
    height: 620px;
    border-radius: 20px;
    overflow: hidden;
}
#benefits .img_wrap>div:nth-child(2){
    margin-top: -50px;
}
#benefits .img_wrap>div>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

#benefits .txt_wrap .tit_wrap h2{
    font-size: 6rem;
    color: #000;
    line-height: 1.2;
    font-weight: 900;
    overflow: hidden;
}
#benefits .txt_wrap .tit_wrap h2 .slide-up-wrapper{
    display: inline-block;
}
#benefits .txt_wrap .tit_wrap p{
    font-size: 2.8rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-top: 20px;
    word-break: keep-all;
}
#benefits .txt_wrap .tit_wrap p>span.pink{
    font-size: 4rem;
    font-weight: 900;
}
#benefits .txt_wrap .info_wrap{
    margin-top: 40px;
}
#benefits .txt_wrap .info_wrap h3{
    font-size: 2.4rem;
    color: #000;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
    word-break: keep-all;
}
#benefits .txt_wrap .info_wrap p{
    font-size: 2.2rem;
    font-weight: 500;
    color: #000;
    opacity: 0.8;
    line-height: 1.6;
    word-break: keep-all;
}
@media screen and (max-width: 1920px){
    #benefits{padding-top: 9.375vw; padding-bottom: 8.333vw;}
    #benefits .flex_wrap{width: calc(100% + 7.813vw); left: -3.906vw;}
    #benefits .img_wrap{margin-top: 2.604vw; gap: 1.042vw;}
    #benefits .img_wrap>div{width: 15.625vw; height: 32.292vw;}
    #benefits .txt_wrap .tit_wrap h2{font-size: 3.125vw;}
    #benefits .txt_wrap .tit_wrap p{font-size: 1.458vw;}
    #benefits .txt_wrap .tit_wrap p>span.pink{font-size: 2.083vw;}
    #benefits .txt_wrap .info_wrap h3{font-size: 1.250vw;}
    #benefits .txt_wrap .info_wrap p{font-size: 1.146vw;}


}
@media screen and (max-width: 1430px){
}
@media screen and (max-width: 1280px){
}
@media screen and (max-width: 1024px){
    #benefits{padding-top: 170px; padding-bottom: 150px;}
    #benefits .flex_wrap{width: 100%; left: 0; flex-direction: column; gap: 40px; align-items: center; width: 96%; margin: 0 auto;}
    #benefits .txt_wrap{order: 1;width: 100%; text-align: center;}
    #benefits .img_wrap.left{order: 2; gap: 10px;}
    #benefits .img_wrap.left>div.img_bx04.mob_only{display: block;}
    #benefits .img_wrap.right{display: none;}
    #benefits .img_wrap.left>div{order: 2; width: calc(25% - 7.5px);height: 500px; margin-top: 0;}
    #benefits .flex_wrap{display: flex; flex-wrap: wrap;}
    #benefits .flex_wrap::after{ content: '';order: 2;display: flex; width: 100%;justify-content: center;gap: 20px;flex-wrap: wrap;}
    #benefits .txt_wrap .tit_wrap h2{font-size: 5rem;}
    #benefits .txt_wrap .tit_wrap p{font-size: 2.4rem;}
    #benefits .txt_wrap .tit_wrap p>span.pink{font-size: 3.4rem;}
    #benefits .txt_wrap .info_wrap{margin-top: 30px;}
    #benefits .txt_wrap .info_wrap h3{font-size: 2.2rem;}
    #benefits .txt_wrap .info_wrap p{font-size: 2rem;}
}
@media screen and (max-width: 768px){
    #benefits{padding-top: 100px; padding-bottom: 80px;}
    #benefits .flex_wrap{gap: 30px;}
    #benefits .img_wrap.left>div{ height: 300px;}
    #benefits .txt_wrap .tit_wrap h2{font-size: 4rem;}
    #benefits .txt_wrap .tit_wrap p{font-size: 2rem;}
    #benefits .txt_wrap .tit_wrap p>span.pink{font-size: 2.8rem;}
    #benefits .txt_wrap .info_wrap{margin-top: 30px;}
    #benefits .txt_wrap .info_wrap h3{font-size: 2rem;}
    #benefits .txt_wrap .info_wrap p{font-size: 1.8rem;}
}
@media screen and (max-width: 500px){
    #benefits{padding-top: 80px; padding-bottom: 60px;}
    #benefits .flex_wrap{gap: 25px;}
    #benefits .img_wrap.left>div{height: 250px; border-radius: 10px;}
    #benefits .txt_wrap .tit_wrap h2{font-size: 3rem;}
    #benefits .txt_wrap .tit_wrap p{font-size: 1.8rem;}
    #benefits .txt_wrap .tit_wrap p br.mob_only{display: block;}
    #benefits .txt_wrap .tit_wrap p>span.pink{font-size: 2.4rem;}
    #benefits .txt_wrap .info_wrap{margin-top: 25px;}
    #benefits .txt_wrap .info_wrap h3{font-size: 1.8rem;}
    #benefits .txt_wrap .info_wrap h3 br{display: block;}
    #benefits .txt_wrap .info_wrap p{font-size: 1.8rem;}
    #benefits .txt_wrap .info_wrap p br{display: none;}
}





/* sec08 */
#exit{
    position: relative;
    padding-top: 200px;
    padding-bottom: 60px;
    width: 100%;
    background-color: #051C2C;
}
#exit .tit_wrap{
    text-align: center;
}
#exit .tit_wrap p.small_txt{
    margin-bottom: 30px;
    line-height: 1.4;
    overflow: hidden;
}
#exit .tit_wrap p.small_txt > span{
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}
#exit .tit_wrap h2{
    color: #FFF;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.4;
    opacity: 1;
    overflow: hidden;
    word-break: keep-all;
}
#exit .tit_wrap h2 > span{
    transform: none;
    opacity: 1;
    background: none;
    color: inherit;
    -webkit-text-fill-color: currentColor;
  }
/* 한 줄씩 채우기 대상 */
#exit .tit_wrap h2 .line{
    --fill: 0%;
  
    display: inline-block;
  
    /* 처음엔 0.2 정도로 흐리게(= unfilled), 채워지면 흰색(= filled) */
    background-image: linear-gradient(
      90deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) var(--fill),
      rgba(255,255,255,0.2) var(--fill),
      rgba(255,255,255,0.2) 100%
    );
    background-repeat: no-repeat;
  
    -webkit-background-clip: text;
    background-clip: text;
  
    color: transparent;
    -webkit-text-fill-color: transparent;
  
    will-change: background-image;
  }
/* yellow: 채우기 효과 적용 */
#exit .tit_wrap h2 .yellow{
    --fill: 0%;
    
    display: inline-block;
    
    /* 처음엔 0.2 정도로 흐리게(= unfilled), 채워지면 노란색(= filled) */
    background-image: linear-gradient(
      90deg,
      rgba(254,178,71,1) 0%,
      rgba(254,178,71,1) var(--fill),
      rgba(254,178,71,0.2) var(--fill),
      rgba(254,178,71,0.2) 100%
    );
    background-repeat: no-repeat;
    
    -webkit-background-clip: text;
    background-clip: text;
    
    color: transparent;
    -webkit-text-fill-color: transparent;
    
    will-change: background-image;
  }
@media screen and (max-width: 1430px){
}
@media screen and (max-width: 1280px){
}
@media screen and (max-width: 1024px){
    #exit .tit_wrap h2{font-size: 5rem;}
}
@media screen and (max-width: 768px){
    #exit{padding-top: 140px; padding-bottom: 40px;}
    #exit .tit_wrap p.small_txt{margin-bottom: 20px;}
    #exit .tit_wrap h2{font-size: 3rem;}
}
@media screen and (max-width: 500px){
    #exit{padding-top: 100px; padding-bottom: 30px;}
    #exit .tit_wrap p.small_txt{margin-bottom: 15px;}
    #exit .tit_wrap p.small_txt br.mob_only{display: block;}
    #exit .tit_wrap h2{font-size: 2.2rem;}
}












/* sec09 */
#contact{
    position: relative;
    background-color: #051C2C;
}
#contact .bg_wrap{
    width: 100%;
    position: relative;
}
#contact .bg_wrap img{
    width: 100%;
}
#contact .wrap1400{
    text-align: center;
    padding-bottom: 160px;
    margin-top: -100px;
}
#contact .tit_wrap h2{
    color: #FFF;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    word-break: keep-all;
}
#contact .tit_wrap h2 span.mint{
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 2;
}
#contact .tit_wrap h2 span.mint::before{
    content: '';
    display: block;
    position: absolute;
    width: 120px;
    height: 118px;
    background: url('/_img/main/sec09_star.png') no-repeat center / cover;
    top: -95px;
    right: -40px;
    z-index: 1;
}
#contact .txt_wrap{
    margin: 80px 0;
}
#contact .txt_wrap p.txt01{
    font-size: 2.8rem;
    font-weight: 500;
    color: #FFF;
    line-height: 1.4;
    word-break: keep-all;
}
#contact .txt_wrap p.txt01>span.yellow{
    font-size: 4rem;
    font-weight: 700;
}
#contact .txt_wrap p.txt02{
    font-size: 2.0rem;
    font-weight: 500;
    color: #FFF;
    line-height: 1.4;
    opacity: 0.8;
    margin-top: 10px;
    word-break: keep-all;
}
#contact .contact_btn{
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 10px;
    padding-left: 60px;
    column-gap: 20px;
    background-color: #0064F0;
    border-radius: 100px;
    width: fit-content;
    position: relative;
    margin: 0 auto;
}
#contact .contact_btn>span{
    color: #FFF;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}
#contact .contact_btn>.circle{
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact .contact_btn>.circle>i{
    color: #0064F0;
    font-size: 4.8rem;
    position: relative;
    transform: rotate(-45deg);
}
@media screen and (max-width: 1430px){
}
@media screen and (max-width: 1280px){
}
@media screen and (max-width: 1024px){
    #contact .tit_wrap h2{font-size: 7rem; flex-direction: column; gap: 10px;}
    #contact .tit_wrap h2 span.mint{font-size: 10rem;}
    #contact .tit_wrap h2 span.mint::before{width: 100px; height: 98px; top: -40px; right: -80px;}
}
@media screen and (max-width: 768px){
    #contact .wrap1400{padding-bottom: 100px; margin-top: -80px;}
    #contact .tit_wrap h2{font-size: 5rem; }
    #contact .tit_wrap h2 span.mint{font-size: 7rem;}
    #contact .tit_wrap h2 span.mint::before{width: 80px; height: 78px; top: 0px; right: -70px;}
    #contact .txt_wrap{margin: 60px 0;}
    #contact .txt_wrap p.txt01{font-size: 2.4rem;}
    #contact .txt_wrap p.txt01>span.yellow{font-size: 3.2rem;}
    #contact .txt_wrap p.txt01 br.mob_only{display: block;}
    #contact .txt_wrap p.txt02{font-size: 1.8rem;}
    #contact .contact_btn{padding: 8px; padding-left: 40px; column-gap: 15px;}
    #contact .contact_btn>span{font-size: 2.2rem;}
    #contact .contact_btn>.circle{width: 60px; height: 60px;}
    #contact .contact_btn>.circle>i{font-size: 3.6rem;}

}
@media screen and (max-width: 500px){
    #contact .wrap1400{padding-bottom: 80px; margin-top: -60px;}
    #contact .tit_wrap h2{font-size: 3.6rem; gap: 8px;}
    #contact .tit_wrap h2 span.mint{font-size: 5rem;}
    #contact .tit_wrap h2 span.mint::before{width: 60px; height: 58px; right: -50px;}
    #contact .txt_wrap{margin: 40px 0;}
    #contact .txt_wrap p.txt01{font-size: 2rem;}
    #contact .txt_wrap p.txt01>span.yellow{font-size: 2.6rem;}
    #contact .txt_wrap p.txt02{font-size: 1.8rem;}
    #contact .txt_wrap p.txt02 br.mob_only{display: block;}
    #contact .contact_btn{padding: 6px; padding-left: 30px; column-gap: 12px; border-radius: 80px;}
    #contact .contact_btn>span{font-size: 1.8rem;}
    #contact .contact_btn>.circle{width: 50px; height: 50px;}
    #contact .contact_btn>.circle>i{font-size: 3rem;}
}








/* popup */
.popup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9990;
    display: none;
    overflow: hidden;
}
.popup.privacy{
    z-index: 9991;
    display: none;
}
.popup .popup_inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 30px;
    padding-bottom: 40px;
    overflow-y: auto;
}
.popup .popup_inner .mb-10{
    margin-bottom: 10px;
}
.popup .popup_inner .mb-40{
    margin-bottom: 40px;
}
.popup .pop_tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #CCC;
}
.popup .pop_tit h2{
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    display: block;
    width: calc(100% - 60px);
    word-break: keep-all;
}
.popup .pop_tit .btn_close{
    appearance: none;
    border: none;
    background: none;
    display: flex;
    column-gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    cursor: pointer;
}
.popup .pop_content .pop_cont_top{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.popup .pop_content .pop_cont_top .txt{
    font-size: 2.2rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    word-break: keep-all;
}
.popup .pop_content .pop_cont_top .gray{
    font-size: 16px;
    font-weight: 400;
    color: #444;
    line-height: 1.4;
}

.popup .pop_content .pop_cont_top .gray{
    font-size: 14px;
}
.popup .pop_content .flex_wrap{
    display: flex;
    justify-content: space-between;
}
.popup .pop_content .flex_wrap>dl.form_item{
    width: calc(50% - 10px);
}

.popup .pop_content dl.form_item>dt{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
    margin-bottom: 10px;
    word-break: keep-all;
}
.popup .pop_content dl.form_item>dt span.red{
    color: #ff0000;
}
.popup .pop_content dl.form_item>dd>input,
.popup .pop_content dl.form_item>dd>textarea,
.popup .pop_content dl.form_item>dd>select{
    border: 1px solid #DDD;
    border-radius: 6px;
    padding: 0 20px;
    height: 52px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    line-height: 1.4;
}
.popup .pop_content dl.form_item>dd>input::placeholder{
    color: #999;
}
.popup .pop_content dl.form_item>dd>textarea{
    padding: 14px 20px;
    resize: none;
}
.popup .pop_content dl.form_item>dd>select{
    appearance: none;
    background: none;
    background:url(../_img/main/select_arrow.png)no-repeat;
    background-position: right 20px center;
    background-size: 14px 8px;
    color: #999;
}
.popup .pop_content dl.form_item>dd>select>option{
    color: #000;
}
.popup .pop_content dl.form_item>dd>select>option:first-child{
    display: none;
}

.popup .pop_content dl.form_item>dd.radio_list{
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: space-between;
}
.popup .pop_content dl.form_item>dd.radio_list>div.radio_wrap{
    width: calc(50% - 10px);
}
.popup .pop_content dl.form_item>dd.radio_list>div.radio_wrap>label{
    width: 100%;
    border: 1px solid #DDD;
    border-radius: 6px;
    display: flex;
    box-sizing: border-box;
    padding: 14px 20px;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    word-break: keep-all;
}
.popup .pop_content input[type="radio"],
.popup .pop_content input[type="checkbox"]{
    appearance: none;
    border-radius: 6px;
    border: 1px solid #CCC;
    transition: background-color, border-color 0.3s ease-in-out;
    width: 28px;
    height: 28px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.popup .pop_content input[type="radio"]::after,
.popup .pop_content input[type="checkbox"]::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 9px;
    background: url(../_img/main/form_check_icon.png) no-repeat center / cover;
    transition: background 0.3s ease-in-out
}
.popup .pop_content input[type="radio"]:checked,
.popup .pop_content input[type="checkbox"]:checked{
    background-color: #174C71;
    border-color: #174C71;
}
.popup .pop_content input[type="radio"]:checked::after,
.popup .pop_content input[type="checkbox"]:checked::after{
    background: url(../_img/main/form_check_icon_active.png) no-repeat center / cover;
}

.popup .pop_content .agree_wrap{
    border-top: 0.5px solid #CCC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.popup .pop_content .agree_wrap .agree_item{
    display: flex;
    column-gap: 10px;
    align-items: center;
    cursor: pointer;
    
}
.popup .pop_content .agree_wrap .agree_item>label{
    font-size: 15px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
}
.popup .pop_content .agree_wrap .agree_item>input{
    cursor: pointer;
}
.popup .pop_content .agree_wrap .agree_more_btn{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    appearance: none;
    background: none;
    border: none;
    cursor: pointer;
}
.popup .pop_content .btn_wrap{
    display: flex;
    justify-content: center;
    gap: 6px;
}
.popup .pop_content .btn_wrap>button{
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 700;
    appearance: none;
    border: none;
    cursor: pointer;
}
.popup .pop_content .btn_wrap>button.gray{
    background-color: #222;
    color: #FFF;
}
.popup .pop_content .btn_wrap>button.blue{
    background-color: #0064F0;
    color: #FFF;
}


.popup.privacy .pop_content .block_area{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}
.popup.privacy .pop_content .block_area:last-child{
    margin-bottom: 0;
}
.popup.privacy .pop_content .block_area p,
.popup.privacy .pop_content .block_area li{
    color: #666;
    line-height: 1.4;
}

.popup.privacy .pop_content .block_area>ul,
.popup.privacy .pop_content .block_area>ol{
    margin-top: 10px;
    box-sizing: border-box;
}
.popup.privacy .pop_content .block_area>ul>li>ul,
.popup.privacy .pop_content .block_area>ol>li>ol,
.popup.privacy .pop_content .block_area>ul>li>ol,
.popup.privacy .pop_content .block_area>ol>li>ul{
    padding-left: 15px;
    box-sizing: border-box;
}
.popup.privacy .pop_content .block_area table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: center;
    font-size: 16px;
    margin: 10px 0;
}
.popup.privacy .pop_content .block_area table th{
    color: #000;
    background-color: #F5F5F5;
    padding: 10px 20px;
    font-weight: 600;
    border: 1px solid #DDD;
}
.popup.privacy .pop_content .block_area table td{
    padding: 10px 20px;
    border: 1px solid #DDD;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
}

/* popup 반응형 */
@media screen and (max-width: 1024px){
    .popup .popup_inner{width: 96%;padding: 25px;padding-bottom: 35px;}
    .popup .pop_tit h2{font-size: 22px;}
    .popup .pop_tit .btn_close{font-size: 16px;}
    .popup .pop_content dl.form_item>dt{font-size: 17px;}
    .popup .pop_content dl.form_item>dd>input,
    .popup .pop_content dl.form_item>dd>textarea,
    .popup .pop_content dl.form_item>dd>select{font-size: 15px;padding: 0 18px;height: 50px;}
    .popup .pop_content dl.form_item>dd.radio_list>div.radio_wrap>label{font-size: 16px;padding: 12px 18px;}
}

@media screen and (max-width: 768px){
    .popup .popup_inner{width: 90%;margin: 50px auto;padding: 20px;padding-bottom: 30px;border-radius: 15px;}
    .popup .popup_inner .mb-40{margin-bottom: 30px;}
    .popup .pop_tit{padding-bottom: 20px;}
    .popup .pop_tit h2{font-size: 20px;}
    .popup .pop_tit .btn_close{font-size: 15px;column-gap: 8px;}
    .popup .pop_content .pop_cont_top{flex-direction: column;align-items: flex-start;gap: 10px;}
    .popup .pop_content .pop_cont_top .txt{font-size: 1.8rem;}
    .popup .pop_content .pop_cont_top .gray{font-size: 13px;}
    .popup .pop_content .flex_wrap{flex-wrap: wrap;gap: 20px;}
    .popup .pop_content .flex_wrap>dl.form_item{width: 100%;}
    .popup .pop_content dl.form_item>dt{font-size: 16px;margin-bottom: 8px;}
    .popup .pop_content dl.form_item>dd>input,
    .popup .pop_content dl.form_item>dd>textarea,
    .popup .pop_content dl.form_item>dd>select{font-size: 14px;padding: 0 15px;height: 48px;}
    .popup .pop_content dl.form_item>dd>textarea{padding: 12px 15px;}
    .popup .pop_content dl.form_item>dd.radio_list{flex-direction: column;gap: 10px;}
    .popup .pop_content dl.form_item>dd.radio_list>div.radio_wrap{width: 100%;}
    .popup .pop_content dl.form_item>dd.radio_list>div.radio_wrap>label{font-size: 15px;padding: 12px 15px;}
    .popup .pop_content .agree_wrap{flex-direction: column;gap: 15px;align-items: flex-start;}
    .popup .pop_content .btn_wrap{flex-direction: column;gap: 10px;}
    .popup .pop_content .btn_wrap>button{width: 100%;padding: 14px 30px;font-size: 1.8rem;}
    .popup.privacy .pop_content .block_area{font-size: 14px;}
    .popup.privacy .pop_content .block_area table{font-size: 13px;}
    .popup.privacy .pop_content .block_area table th,
    .popup.privacy .pop_content .block_area table td{padding: 8px 12px;font-size: 13px;}
}

@media screen and (max-width: 500px){
    .popup .popup_inner{width: 95%;margin: 30px auto;padding: 15px;padding-bottom: 25px;border-radius: 12px;}
    .popup .popup_inner .mb-40{margin-bottom: 25px;}
    .popup .pop_tit{padding-bottom: 15px;}
    .popup .pop_tit h2{font-size: 18px;}
    .popup .pop_tit .btn_close{font-size: 14px;column-gap: 6px;}
    .popup .pop_content .pop_cont_top .txt{font-size: 1.6rem;}
    .popup .pop_content .pop_cont_top .gray{font-size: 12px;}
    .popup .pop_content dl.form_item>dt{font-size: 15px;margin-bottom: 6px;}
    .popup .pop_content dl.form_item>dd>input,
    .popup .pop_content dl.form_item>dd>textarea,
    .popup .pop_content dl.form_item>dd>select{font-size: 13px;padding: 0 12px;height: 44px;}
    .popup .pop_content dl.form_item>dd>textarea{padding: 10px 12px;}
    .popup .pop_content dl.form_item>dd.radio_list>div.radio_wrap>label{font-size: 14px;padding: 10px 12px;}
    .popup .pop_content .btn_wrap>button{padding: 12px 25px;font-size: 1.6rem;}
    .popup.privacy .pop_content .block_area{font-size: 13px;}
    .popup.privacy .pop_content .block_area table{font-size: 12px;}
    .popup.privacy .pop_content .block_area table th,
    .popup.privacy .pop_content .block_area table td{padding: 6px 8px;font-size: 12px;}
}

















#footer{
    background-color: #121212;
    padding: 20px 0;
}
#footer .copy{
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'poppins';
}
